-
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.
40883: demo: Add telemetry about usage of new demo features. r=jordanlewis a=rohany This PR adds telemetry for some of the new features added to cockroach demo (nodes, with-load, localities, geo-partitioned-replicas). It isn't straight forward how to test this, as there seems to be a race between the background thread that flushes telemetry and actually querying for the counter's values on startup. Work towards #228. Release justification: Low risk monitoring improvement. Release note: None Co-authored-by: Rohan Yadav <rohany@cockroachlabs.com>
- Loading branch information
Showing
3 changed files
with
71 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2019 The Cockroach Authors. | ||
// | ||
// Use of this software is governed by the Business Source License | ||
// included in the file licenses/BSL.txt. | ||
// | ||
// As of the Change Date specified in that file, in accordance with | ||
// the Business Source License, use of this software will be governed | ||
// by the Apache License, Version 2.0, included in the file | ||
// licenses/APL.txt. | ||
|
||
package cli | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/cockroachdb/cockroach/pkg/server/telemetry" | ||
) | ||
|
||
// demoTelemetry corresponds to different sources of telemetry we are recording from cockroach demo. | ||
type demoTelemetry int | ||
|
||
const ( | ||
_ demoTelemetry = iota | ||
// nodes represents when cockroach demo is started with multiple nodes. | ||
nodes | ||
// demoLocality represents when cockroach demo is started with user defined localities. | ||
demoLocality | ||
// withLoad represents when cockroach demo is used with a background workload | ||
withLoad | ||
// geoPartitionedReplicas is used when cockroach demo is started with the geo-partitioned-replicas topology. | ||
geoPartitionedReplicas | ||
) | ||
|
||
var demoTelemetryMap = map[demoTelemetry]string{ | ||
nodes: "nodes", | ||
demoLocality: "demo-locality", | ||
withLoad: "withload", | ||
geoPartitionedReplicas: "geo-partitioned-replicas", | ||
} | ||
|
||
var demoTelemetryCounters map[demoTelemetry]telemetry.Counter | ||
|
||
func init() { | ||
demoTelemetryCounters = make(map[demoTelemetry]telemetry.Counter) | ||
for ty, s := range demoTelemetryMap { | ||
demoTelemetryCounters[ty] = telemetry.GetCounterOnce(fmt.Sprintf("cli.demo.%s", s)) | ||
} | ||
} | ||
|
||
func incrementDemoCounter(d demoTelemetry) { | ||
telemetry.Inc(demoTelemetryCounters[d]) | ||
} |
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