2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-06-03 08:07:03 -07:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package stats
|
|
|
|
|
|
|
|
// QueryTiming identifies the code area or functionality in which time is spent
|
|
|
|
// during a query.
|
|
|
|
type QueryTiming int
|
|
|
|
|
|
|
|
// Query timings.
|
|
|
|
const (
|
|
|
|
TotalEvalTime QueryTiming = iota
|
|
|
|
ResultSortTime
|
2016-07-11 11:27:25 -07:00
|
|
|
QueryPreparationTime
|
2013-06-03 08:07:03 -07:00
|
|
|
InnerEvalTime
|
|
|
|
ResultAppendTime
|
2015-04-30 15:49:19 -07:00
|
|
|
ExecQueueTime
|
2017-02-08 03:58:40 -08:00
|
|
|
ExecTotalTime
|
2013-06-03 08:07:03 -07:00
|
|
|
)
|
|
|
|
|
2016-02-09 18:47:00 -08:00
|
|
|
// Return a string representation of a QueryTiming identifier.
|
2013-06-03 08:07:03 -07:00
|
|
|
func (s QueryTiming) String() string {
|
|
|
|
switch s {
|
|
|
|
case TotalEvalTime:
|
|
|
|
return "Total eval time"
|
|
|
|
case ResultSortTime:
|
|
|
|
return "Result sorting time"
|
2016-07-11 11:27:25 -07:00
|
|
|
case QueryPreparationTime:
|
|
|
|
return "Query preparation time"
|
2013-06-03 08:07:03 -07:00
|
|
|
case InnerEvalTime:
|
|
|
|
return "Inner eval time"
|
|
|
|
case ResultAppendTime:
|
|
|
|
return "Result append time"
|
2015-04-30 15:49:19 -07:00
|
|
|
case ExecQueueTime:
|
|
|
|
return "Exec queue wait time"
|
2017-02-08 03:58:40 -08:00
|
|
|
case ExecTotalTime:
|
|
|
|
return "Exec total time"
|
2013-06-03 08:07:03 -07:00
|
|
|
default:
|
|
|
|
return "Unknown query timing"
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 03:58:40 -08:00
|
|
|
|
|
|
|
// QueryStats with all query timers mapped to durations.
|
|
|
|
type QueryStats struct {
|
|
|
|
TotalEvalTime float64 `json:"totalEvalTime"`
|
|
|
|
ResultSortTime float64 `json:"resultSortTime"`
|
|
|
|
QueryPreparationTime float64 `json:"queryPreparationTime"`
|
|
|
|
InnerEvalTime float64 `json:"innerEvalTime"`
|
|
|
|
ResultAppendTime float64 `json:"resultAppendTime"`
|
|
|
|
ExecQueueTime float64 `json:"execQueueTime"`
|
|
|
|
ExecTotalTime float64 `json:"execTotalTime"`
|
|
|
|
}
|
|
|
|
|
2017-11-16 07:30:48 -08:00
|
|
|
// NewQueryStats makes a QueryStats struct with all QueryTimings found in the
|
2017-02-08 03:58:40 -08:00
|
|
|
// given TimerGroup.
|
2017-11-16 07:30:48 -08:00
|
|
|
func NewQueryStats(tg *TimerGroup) *QueryStats {
|
2017-02-08 03:58:40 -08:00
|
|
|
var qs QueryStats
|
|
|
|
|
|
|
|
for s, timer := range tg.timers {
|
|
|
|
switch s {
|
|
|
|
case TotalEvalTime:
|
|
|
|
qs.TotalEvalTime = timer.Duration()
|
|
|
|
case ResultSortTime:
|
|
|
|
qs.ResultSortTime = timer.Duration()
|
|
|
|
case QueryPreparationTime:
|
|
|
|
qs.QueryPreparationTime = timer.Duration()
|
|
|
|
case InnerEvalTime:
|
|
|
|
qs.InnerEvalTime = timer.Duration()
|
|
|
|
case ResultAppendTime:
|
|
|
|
qs.ResultAppendTime = timer.Duration()
|
|
|
|
case ExecQueueTime:
|
|
|
|
qs.ExecQueueTime = timer.Duration()
|
|
|
|
case ExecTotalTime:
|
|
|
|
qs.ExecTotalTime = timer.Duration()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &qs
|
|
|
|
}
|