File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
buildSrc/src/main/groovy/com/google/firebase/gradle/plugins/ci/metrics Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ class StackdriverMetrics implements Metrics {
63
63
TagKey .create ("repo_name" ),
64
64
TagKey .create ("pull_number" ),
65
65
TagKey .create ("job_name" ),
66
- TagKey .create ("build_id" ));
66
+ TagKey .create ("build_id" ),
67
+ TagKey .create ("job_type" ));
67
68
68
69
StackdriverMetrics (Gradle gradle , Logger logger ) {
69
70
this .logger = logger ;
@@ -83,7 +84,7 @@ class StackdriverMetrics implements Metrics {
83
84
Stats .getViewManager ()
84
85
.registerView (
85
86
View .create (
86
- View .Name .create ("fireci/success " ),
87
+ View .Name .create ("fireci/tasksuccess " ),
87
88
"Indicated success or failure." ,
88
89
M_SUCCESS ,
89
90
Aggregation .LastValue .create (),
Original file line number Diff line number Diff line change 48
48
tags .TagKey ("pull_number" ),
49
49
tags .TagKey ("job_name" ),
50
50
tags .TagKey ("build_id" ),
51
+ tags .TagKey ("job_type" ),
51
52
]
52
53
53
54
_METRICS_ENABLED = False
You can’t perform that action at this time.
0 commit comments