Skip to content

Commit

Permalink
client: clarify that fragment stats are over uncompressed bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraettinger committed Feb 14, 2022
1 parent e7c18c1 commit a21a5b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions broker/client/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ var (
}, []string{"journal", "codec"})
readFragmentBytes = promauto.NewCounterVec(prometheus.CounterOpts{
Name: "gazette_read_fragment_bytes_total",
Help: "Total number of journal fragment bytes read, excluding discarded bytes.",
Help: "Total number of uncompressed journal fragment bytes read, excluding discarded bytes.",
}, []string{"journal", "codec"})
discardFragmentBytes = promauto.NewCounterVec(prometheus.CounterOpts{
Name: "gazette_discard_fragment_bytes_total",
Help: "Total number of journal fragment bytes discarded while seeking to desired offset.",
Help: "Total number of uncompressed journal fragment bytes discarded while seeking to desired offset.",
}, []string{"journal", "codec"})
)

0 comments on commit a21a5b8

Please sign in to comment.