@@ -118,7 +118,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
118
118
prometheus .BuildFQName (
119
119
namespace ,
120
120
"" ,
121
- "deployment_count " ,
121
+ "total_deployment_count " ,
122
122
),
123
123
"The total deployment count of the production deployments." ,
124
124
[]string {"namespace" , "name" , "env" },
@@ -134,7 +134,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
134
134
prometheus .BuildFQName (
135
135
namespace ,
136
136
"" ,
137
- "rollback_count " ,
137
+ "total_rollback_count " ,
138
138
),
139
139
"The total rollback count of the production deployments." ,
140
140
[]string {"namespace" , "name" , "env" },
@@ -150,7 +150,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
150
150
prometheus .BuildFQName (
151
151
namespace ,
152
152
"" ,
153
- "line_additions " ,
153
+ "total_line_additions " ,
154
154
),
155
155
"The total added lines of the production deployments." ,
156
156
[]string {"namespace" , "name" , "env" },
@@ -166,7 +166,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
166
166
prometheus .BuildFQName (
167
167
namespace ,
168
168
"" ,
169
- "line_deletions " ,
169
+ "total_line_deletions " ,
170
170
),
171
171
"The total deleted lines of the production deployments." ,
172
172
[]string {"namespace" , "name" , "env" },
@@ -182,7 +182,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
182
182
prometheus .BuildFQName (
183
183
namespace ,
184
184
"" ,
185
- "line_changes " ,
185
+ "total_line_changes " ,
186
186
),
187
187
"The total changed lines of the production deployments." ,
188
188
[]string {"namespace" , "name" , "env" },
@@ -198,7 +198,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
198
198
prometheus .BuildFQName (
199
199
namespace ,
200
200
"" ,
201
- "lead_time_seconds " ,
201
+ "total_lead_time_seconds " ,
202
202
),
203
203
"The total amount of time it takes a commit to get into the production environments." ,
204
204
[]string {"namespace" , "name" , "env" },
@@ -214,7 +214,7 @@ func (c *collector) Collect(ch chan<- prometheus.Metric) {
214
214
prometheus .BuildFQName (
215
215
namespace ,
216
216
"" ,
217
- "commit_count " ,
217
+ "total_commit_count " ,
218
218
),
219
219
"The total commit count of production deployments." ,
220
220
[]string {"namespace" , "name" , "env" },
0 commit comments