Skip to content

Commit 1f2bc02

Browse files
feat: optional run_name label for all metrics
1 parent 937eb76 commit 1f2bc02

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

internal/run/main_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
var fakePrometheus FakePrometheus
1414

1515
const fakePrometheusNamespace = "test-namespace"
16+
const fakePrometheusRunName = "test-run-name"
1617

1718
func TestMain(m *testing.M) {
1819

@@ -29,6 +30,10 @@ func TestMain(m *testing.M) {
2930
if err != nil {
3031
log.Fatal(err)
3132
}
33+
err = os.Setenv("PROMETHEUS_RUN_NAME_LABEL", fakePrometheusRunName)
34+
if err != nil {
35+
log.Fatal(err)
36+
}
3237

3338
fakePrometheus.StartServer()
3439

internal/run/run_cmd_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ func TestSetupMetricsAreRecorded(t *testing.T) {
585585
there_is_a_metric_called("form3_loadtest_setup")
586586
}
587587

588-
func TestNamespaceLabel(t *testing.T) {
588+
func TestGroupedLabels(t *testing.T) {
589589
given, when, then := NewRunTestStage(t)
590590

591591
given.
@@ -596,7 +596,8 @@ func TestNamespaceLabel(t *testing.T) {
596596

597597
then.
598598
metrics_are_pushed_to_prometheus().and().
599-
all_exported_metrics_contain_label("namespace", fakePrometheusNamespace)
599+
all_exported_metrics_contain_label("namespace", fakePrometheusNamespace).and().
600+
all_exported_metrics_contain_label("run_name", fakePrometheusRunName)
600601
}
601602

602603
func TestFailureCounts(t *testing.T) {

internal/run/test_runner.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,14 @@ func NewRun(options options.RunOptions, t *api.Trigger) (*Run, error) {
4444
if prometheusUrl != "" {
4545
run.pusher = push.New(prometheusUrl, "f1-"+options.Scenario).Gatherer(prometheus.DefaultGatherer)
4646

47-
prometheusNamespace := os.Getenv("PROMETHEUS_NAMESPACE")
48-
if prometheusNamespace != "" {
49-
run.pusher = run.pusher.Grouping("namespace", prometheusNamespace)
47+
namespaceLabel := os.Getenv("PROMETHEUS_NAMESPACE")
48+
if namespaceLabel != "" {
49+
run.pusher = run.pusher.Grouping("namespace", namespaceLabel)
50+
}
51+
52+
runNameLabel := os.Getenv("PROMETHEUS_RUN_NAME_LABEL")
53+
if runNameLabel != "" {
54+
run.pusher = run.pusher.Grouping("run_name", runNameLabel)
5055
}
5156
}
5257
if run.Options.RegisterLogHookFunc == nil {

0 commit comments

Comments
 (0)