-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds metrics for counts of active DistSQL queries and flows, which will give some visibility into the status of long-running queries.
- Loading branch information
Showing
7 changed files
with
143 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// Copyright 2016 The Cockroach Authors. | ||
// | ||
// 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. | ||
// | ||
// Author: Andrew Dona-Couch ([email protected]) | ||
|
||
package distsqlrun | ||
|
||
import ( | ||
"github.com/cockroachdb/cockroach/pkg/util/metric" | ||
) | ||
|
||
// DistSQLMetrics contains pointers to the metrics for | ||
// monitoring DistSQL processing. | ||
type DistSQLMetrics struct { | ||
QueriesActive *metric.Gauge | ||
QueriesTotal *metric.Counter | ||
FlowsActive *metric.Gauge | ||
FlowsTotal *metric.Counter | ||
} | ||
|
||
// MetricStruct implements the metrics.Struct interface. | ||
func (DistSQLMetrics) MetricStruct() {} | ||
|
||
var _ metric.Struct = DistSQLMetrics{} | ||
|
||
// MakeDistSQLMetrics instantiates the metrics holder for DistSQL monitoring. | ||
func MakeDistSQLMetrics() DistSQLMetrics { | ||
metaQueriesActive := metric.Metadata{ | ||
Name: "sql.distsql.queries.active", | ||
Help: "Number of currently active DistSQL queries"} | ||
metaQueriesTotal := metric.Metadata{ | ||
Name: "sql.distsql.queries.total", | ||
Help: "Number of DistSQL queries executed"} | ||
metaFlowsActive := metric.Metadata{ | ||
Name: "sql.distsql.flows.active", | ||
Help: "Number of currently active DistSQL flows"} | ||
metaFlowsTotal := metric.Metadata{ | ||
Name: "sql.distsql.flows.total", | ||
Help: "Number of DistSQL flows executed"} | ||
|
||
return DistSQLMetrics{ | ||
QueriesActive: metric.NewGauge(metaQueriesActive), | ||
QueriesTotal: metric.NewCounter(metaQueriesTotal), | ||
FlowsActive: metric.NewGauge(metaFlowsActive), | ||
FlowsTotal: metric.NewCounter(metaFlowsTotal), | ||
} | ||
} | ||
|
||
// QueryStart registers the start of a new DistSQL query. | ||
func (m *DistSQLMetrics) QueryStart() { | ||
m.QueriesActive.Inc(1) | ||
m.QueriesTotal.Inc(1) | ||
} | ||
|
||
// QueryStop registers the end of a DistSQL query. | ||
func (m *DistSQLMetrics) QueryStop() { | ||
m.QueriesActive.Dec(1) | ||
} | ||
|
||
// FlowStart registers the start of a new DistSQL flow. | ||
func (m *DistSQLMetrics) FlowStart() { | ||
m.FlowsActive.Inc(1) | ||
m.FlowsTotal.Inc(1) | ||
} | ||
|
||
// FlowStop registers the end of a DistSQL flow. | ||
func (m *DistSQLMetrics) FlowStop() { | ||
m.FlowsActive.Dec(1) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters