Skip to content

Commit

Permalink
Merge pull request #3 from PhilippHeuer/fix/execution-metric-tag-order
Browse files Browse the repository at this point in the history
fix: order labels and values the same way in execution metrics
  • Loading branch information
phsmith authored Nov 3, 2020
2 parents 0fe0e35 + 7a3187b commit 490af45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rundeck_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ def get_project_executions(self, project: dict):

metrics.add_metric(
[
project_name,
project_execution.get('job', {}).get('id', 'None'),
project_execution.get('job', {}).get('name', 'None'),
project_name,
status
],
value
Expand Down

0 comments on commit 490af45

Please sign in to comment.