Skip to content

Commit b6c3308

Browse files
committed
Merge branch 'Ignore-incomplete-transfers'
2 parents 945316c + 130a60d commit b6c3308

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

graphite_writer.go

+19
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"html/template"
77
"path"
88
"slices"
9+
"strconv"
910
"strings"
1011

1112
"github.com/marpaia/graphite-golang"
@@ -57,6 +58,24 @@ func (g *GraphiteWriter) Write(p []byte) (n int, err error) {
5758
return len(p), nil
5859
}
5960
}
61+
62+
// Verify request and headers data
63+
// return is size is not equal to content-length header
64+
// (transfer aborted)
65+
r_size := j.Size
66+
_, ok := j.RespHeaders["Content-Length"]
67+
68+
if ok {
69+
h_size_s := j.RespHeaders["Content-Length"][0]
70+
h_size, err := strconv.Atoi(h_size_s)
71+
if err == nil {
72+
if r_size != int64(h_size) {
73+
g.GraphiteLog.logger.Info("Not logging. Transfer aborted", zap.Int64("size", r_size), zap.String("Content-Length", h_size_s))
74+
return len(p), nil
75+
}
76+
}
77+
}
78+
6079
sanitized := strings.Replace(j.Request.URI, ".", "_", -1)[1:]
6180
j.DirName = strings.Replace(path.Dir(sanitized), "/", ".", -1)
6281
j.FileName = strings.Replace(path.Base(sanitized), ".", "_", -1)

0 commit comments

Comments
 (0)