-
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 pod phase counter metric #13272
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
July 1, 2024 07:42
6084e25
to
a5f5cb4
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
July 1, 2024 07:42
6729538
to
432d8fc
Compare
agilgur5
changed the title
feat: new pod phase counter metric
🪧 [DNM] feat: new pod phase counter metric
Jul 1, 2024
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
2 times, most recently
from
July 5, 2024 10:27
49a3c4d
to
8c74273
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
July 5, 2024 10:28
432d8fc
to
4096782
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
July 8, 2024 10:06
8c74273
to
f8c31f7
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
July 8, 2024 10:06
4096782
to
14a762e
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
July 9, 2024 14:27
f8c31f7
to
fc9b88e
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
July 9, 2024 14:27
14a762e
to
9cf9291
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
July 12, 2024 08:48
fc9b88e
to
06a6583
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
July 12, 2024 08:49
9cf9291
to
55742dd
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
August 12, 2024 11:13
06a6583
to
457c8ec
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
August 12, 2024 11:13
55742dd
to
bbd57a4
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
August 12, 2024 11:20
457c8ec
to
705be42
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
August 12, 2024 11:20
bbd57a4
to
62717f1
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
August 14, 2024 10:41
705be42
to
dc3469a
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
August 14, 2024 10:41
62717f1
to
914bffe
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
August 15, 2024 08:04
dc3469a
to
e825f72
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
August 15, 2024 08:04
914bffe
to
ed07b58
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
August 15, 2024 14:06
e825f72
to
8f3216d
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
August 15, 2024 14:06
ed07b58
to
b09c0d2
Compare
Joibel
force-pushed
the
opentelemetry-k8sduration
branch
from
August 16, 2024 09:08
8f3216d
to
e18eac6
Compare
Joibel
force-pushed
the
opentelemetry-podphase
branch
2 times, most recently
from
August 16, 2024 09:23
4765408
to
e90ca47
Compare
Joibel
changed the title
🪧 [DNM] feat: new pod phase counter metric
feat: new pod phase counter metric
Aug 16, 2024
isubasinghe
approved these changes
Aug 19, 2024
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 This is a new metric counting how many pods have gone into each pod phase as observed by the controller. This is like pods_gauge, but as a counter rather than a gauge. The gauge is useful at telling you what is happening right now in the cluster, but is not useful for long term statistics such as "How many pods has workflows run" because it may never report some pods at all. This counter can answer that question. 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]>
Joibel
force-pushed
the
opentelemetry-podphase
branch
from
August 19, 2024 07:38
d379834
to
454b5a8
Compare
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
From #12589
This is a new metric counting how many pods have gone into each pod phase as observed by the controller.
This is like pods_gauge, but as a counter rather than a gauge.
The gauge is useful at telling you what is happening right now in the cluster, but is not useful for long term statistics such as "How many pods has workflows run" because it may never report some pods at all. This counter can answer that question.
Note to reviewers: this is now a standalone commit