Browse Source

Comment styles

pull/2408/head
David Kaltschmidt 7 years ago
parent
commit
79caf5342e
  1. 4
      util/stats/query_stats.go
  2. 2
      util/stats/stats_test.go

4
util/stats/query_stats.go

@ -50,7 +50,7 @@ func (s QueryTiming) String() string {
} }
} }
// QueryTimings with all query timers mapped to durations. // queryTimings with all query timers mapped to durations.
type queryTimings struct { type queryTimings struct {
EvalTotalTime float64 `json:"evalTotalTime"` EvalTotalTime float64 `json:"evalTotalTime"`
ResultSortTime float64 `json:"resultSortTime"` ResultSortTime float64 `json:"resultSortTime"`
@ -61,7 +61,7 @@ type queryTimings struct {
ExecTotalTime float64 `json:"execTotalTime"` ExecTotalTime float64 `json:"execTotalTime"`
} }
// QueryStats currently only holding query timings // QueryStats currently only holding query timings.
type QueryStats struct { type QueryStats struct {
Timings queryTimings `json:"timings,omitempty"` Timings queryTimings `json:"timings,omitempty"`
} }

2
util/stats/stats_test.go

@ -1,4 +1,4 @@
// Copyright 2015 The Prometheus Authors // Copyright 2017 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License"); // Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. // you may not use this file except in compliance with the License.
// You may obtain a copy of the License at // You may obtain a copy of the License at

Loading…
Cancel
Save