mirror of
https://github.com/prometheus/prometheus
synced 2025-03-11 07:59:57 +00:00
Convert trailing float64s.
This commit is contained in:
parent
cbcaef0018
commit
422003da8e
@ -40,7 +40,7 @@ type (
|
||||
|
||||
sample struct {
|
||||
time time.Time
|
||||
value float64
|
||||
value model.SampleValue
|
||||
}
|
||||
|
||||
sampleGroup struct {
|
||||
@ -90,7 +90,7 @@ func (s sampleGroup) Get() (key, value coding.Encoder) {
|
||||
for _, value := range s.values {
|
||||
series.Value = append(series.Value, &dto.SampleValueSeries_Value{
|
||||
Timestamp: proto.Int64(value.time.Unix()),
|
||||
Value: proto.Float64(value.value),
|
||||
Value: value.value.ToDTO(),
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ func GetValueAtTimeTests(persistenceMaker func() (MetricPersistence, test.Closer
|
||||
month time.Month
|
||||
day int
|
||||
hour int
|
||||
value float64
|
||||
value model.SampleValue
|
||||
}
|
||||
|
||||
type input struct {
|
||||
@ -358,7 +358,7 @@ func GetBoundaryValuesTests(persistenceMaker func() (MetricPersistence, test.Clo
|
||||
month time.Month
|
||||
day int
|
||||
hour int
|
||||
value float64
|
||||
value model.SampleValue
|
||||
}
|
||||
|
||||
type input struct {
|
||||
@ -672,7 +672,7 @@ func GetRangeValuesTests(persistenceMaker func() (MetricPersistence, test.Closer
|
||||
month time.Month
|
||||
day int
|
||||
hour int
|
||||
value float64
|
||||
value model.SampleValue
|
||||
}
|
||||
|
||||
type input struct {
|
||||
|
Loading…
Reference in New Issue
Block a user