-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: new cron workflow trigger counter metric #13274
Conversation
4daa3a0
to
fe4d153
Compare
c5d2f77
to
dc7479a
Compare
fe4d153
to
0401646
Compare
dc7479a
to
38143f4
Compare
0401646
to
34739c8
Compare
38143f4
to
481c236
Compare
34739c8
to
c2aa5eb
Compare
481c236
to
18bb3a9
Compare
c2aa5eb
to
a269114
Compare
18bb3a9
to
9def3b4
Compare
a269114
to
7980eec
Compare
9def3b4
to
aaf38bd
Compare
7980eec
to
406bb3a
Compare
aaf38bd
to
98775d8
Compare
406bb3a
to
214ee64
Compare
98775d8
to
a43524a
Compare
214ee64
to
e5ce65c
Compare
a43524a
to
45303a9
Compare
e5ce65c
to
69dfcca
Compare
45303a9
to
e2eecd2
Compare
69dfcca
to
d1a14c8
Compare
e2eecd2
to
8f68609
Compare
d1a14c8
to
f6fa6d5
Compare
8f68609
to
075816f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
From #12589. A new metric which counts how many times each cron workflow has triggered. A simple enough counter which can be checked against expectations for the cron. Note to reviewers: this is part of a stack of reviews for metrics changes. Please don't merge until the rest of the stack is also ready. Signed-off-by: Alan Clucas <[email protected]>
cf87ddc
to
780f611
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small docs misses below
@@ -201,6 +201,15 @@ Metrics for the [Four Golden Signals](https://sre.google/sre-book/monitoring-dis | |||
Some metric attributes may have high cardinality and are marked with ⚠️ to warn you. You may need to disable this metric or disable the attribute. | |||
<!-- titles should be the exact metric name for deep-linking, alphabetical ordered --> | |||
<!-- titles are without argo_workflows prefix --> | |||
#### `cronworkflows_triggered_total` | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
> v3.6 and after |
Version reference
@@ -201,6 +201,15 @@ Metrics for the [Four Golden Signals](https://sre.google/sre-book/monitoring-dis | |||
Some metric attributes may have high cardinality and are marked with ⚠️ to warn you. You may need to disable this metric or disable the attribute. | |||
<!-- titles should be the exact metric name for deep-linking, alphabetical ordered --> | |||
<!-- titles are without argo_workflows prefix --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd probably add a new line above and below this comment. A bit surprised markdownlint
didn't require that
From #12589.
A new metric which counts how many times each cron workflow has triggered. A simple enough counter which can be checked against expectations for the cron.
Note to reviewers: this is now a standalone commit