mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Merge pull request #2055 from prometheus/utilization
Add Chunk.Utilization() methods
This commit is contained in:
commit
2844a8c7b5
|
@ -273,6 +273,7 @@ type Chunk interface {
|
||||||
Unmarshal(io.Reader) error
|
Unmarshal(io.Reader) error
|
||||||
UnmarshalFromBuf([]byte) error
|
UnmarshalFromBuf([]byte) error
|
||||||
Encoding() Encoding
|
Encoding() Encoding
|
||||||
|
Utilization() float64
|
||||||
}
|
}
|
||||||
|
|
||||||
// Iterator enables efficient access to the content of a chunk. It is
|
// Iterator enables efficient access to the content of a chunk. It is
|
||||||
|
|
|
@ -267,6 +267,11 @@ func (c *deltaEncodedChunk) UnmarshalFromBuf(buf []byte) error {
|
||||||
// encoding implements chunk.
|
// encoding implements chunk.
|
||||||
func (c deltaEncodedChunk) Encoding() Encoding { return Delta }
|
func (c deltaEncodedChunk) Encoding() Encoding { return Delta }
|
||||||
|
|
||||||
|
// Utilization implements chunk.
|
||||||
|
func (c deltaEncodedChunk) Utilization() float64 {
|
||||||
|
return float64(len(c)) / float64(cap(c))
|
||||||
|
}
|
||||||
|
|
||||||
func (c deltaEncodedChunk) timeBytes() deltaBytes {
|
func (c deltaEncodedChunk) timeBytes() deltaBytes {
|
||||||
return deltaBytes(c[deltaHeaderTimeBytesOffset])
|
return deltaBytes(c[deltaHeaderTimeBytesOffset])
|
||||||
}
|
}
|
||||||
|
|
|
@ -277,6 +277,11 @@ func (c *doubleDeltaEncodedChunk) UnmarshalFromBuf(buf []byte) error {
|
||||||
// encoding implements chunk.
|
// encoding implements chunk.
|
||||||
func (c doubleDeltaEncodedChunk) Encoding() Encoding { return DoubleDelta }
|
func (c doubleDeltaEncodedChunk) Encoding() Encoding { return DoubleDelta }
|
||||||
|
|
||||||
|
// Utilization implements chunk.
|
||||||
|
func (c doubleDeltaEncodedChunk) Utilization() float64 {
|
||||||
|
return float64(len(c)) / float64(cap(c))
|
||||||
|
}
|
||||||
|
|
||||||
func (c doubleDeltaEncodedChunk) baseTime() model.Time {
|
func (c doubleDeltaEncodedChunk) baseTime() model.Time {
|
||||||
return model.Time(
|
return model.Time(
|
||||||
binary.LittleEndian.Uint64(
|
binary.LittleEndian.Uint64(
|
||||||
|
|
|
@ -322,6 +322,12 @@ func (c varbitChunk) UnmarshalFromBuf(buf []byte) error {
|
||||||
// encoding implements chunk.
|
// encoding implements chunk.
|
||||||
func (c varbitChunk) Encoding() Encoding { return Varbit }
|
func (c varbitChunk) Encoding() Encoding { return Varbit }
|
||||||
|
|
||||||
|
// Utilization implements chunk.
|
||||||
|
func (c varbitChunk) Utilization() float64 {
|
||||||
|
// 15 bytes is the length of the chunk footer.
|
||||||
|
return math.Min(float64(c.nextSampleOffset()/8+15)/float64(cap(c)), 1)
|
||||||
|
}
|
||||||
|
|
||||||
// FirstTime implements chunk.
|
// FirstTime implements chunk.
|
||||||
func (c varbitChunk) FirstTime() model.Time {
|
func (c varbitChunk) FirstTime() model.Time {
|
||||||
return model.Time(
|
return model.Time(
|
||||||
|
|
Loading…
Reference in a new issue