This commit is contained in:
2025-06-22 17:57:49 +03:00
parent 84ed171fdf
commit c6897c5b76
22 changed files with 176 additions and 279 deletions

View File

@@ -94,11 +94,11 @@ type CumulativeMeasure struct {
}
type CumulativePeriod struct {
Period uint32
Since uint32
Until uint32
EndValue float64
Total float64
Period uint32
Start uint32
End uint32
StartValue float64
EndValue float64
}
type InstantMeasure struct {
@@ -108,8 +108,8 @@ type InstantMeasure struct {
type InstantPeriod struct {
Period uint32
Since uint32
Until uint32
Start uint32
End uint32
Min float64
Max float64
Avg float64