mirror of
https://github.com/prometheus/prometheus.git
synced 2025-08-07 14:47:11 +02:00
Fix typo in Appender.AppendHistogram() arg name
Signed-off-by: Oleg Zaytsev <mail@olegzaytsev.com>
This commit is contained in:
parent
5e21b3b2c6
commit
c810e7cae3
@ -94,7 +94,7 @@ type Appender interface {
|
|||||||
// The returned bool isRecoded can be used to distinguish between the new Chunk c being a completely new Chunk
|
// The returned bool isRecoded can be used to distinguish between the new Chunk c being a completely new Chunk
|
||||||
// or the current Chunk recoded to a new Chunk.
|
// or the current Chunk recoded to a new Chunk.
|
||||||
// The Appender app that can be used for the next append is always returned.
|
// The Appender app that can be used for the next append is always returned.
|
||||||
AppendHistogram(prev *HistogramAppender, t int64, h *histogram.Histogram, appendOny bool) (c Chunk, isRecoded bool, app Appender, err error)
|
AppendHistogram(prev *HistogramAppender, t int64, h *histogram.Histogram, appendOnly bool) (c Chunk, isRecoded bool, app Appender, err error)
|
||||||
AppendFloatHistogram(prev *FloatHistogramAppender, t int64, h *histogram.FloatHistogram, appendOnly bool) (c Chunk, isRecoded bool, app Appender, err error)
|
AppendFloatHistogram(prev *FloatHistogramAppender, t int64, h *histogram.FloatHistogram, appendOnly bool) (c Chunk, isRecoded bool, app Appender, err error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user