mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-31 15:06:26 +00:00
wip
This commit is contained in:
parent
87183112f3
commit
42c49c37ff
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ func (smp *statsMaxProcessor) mergeState(sfp statsProcessor) {
|
|||
}
|
||||
|
||||
func (smp *statsMaxProcessor) finalizeStats() string {
|
||||
return strconv.FormatFloat(smp.max, 'g', -1, 64)
|
||||
return strconv.FormatFloat(smp.max, 'f', -1, 64)
|
||||
}
|
||||
|
||||
func parseStatsMax(lex *lexer) (*statsMax, error) {
|
||||
|
|
|
@ -86,7 +86,7 @@ func (smp *statsMinProcessor) mergeState(sfp statsProcessor) {
|
|||
}
|
||||
|
||||
func (smp *statsMinProcessor) finalizeStats() string {
|
||||
return strconv.FormatFloat(smp.min, 'g', -1, 64)
|
||||
return strconv.FormatFloat(smp.min, 'f', -1, 64)
|
||||
}
|
||||
|
||||
func parseStatsMin(lex *lexer) (*statsMin, error) {
|
||||
|
|
Loading…
Reference in a new issue