-
Notifications
You must be signed in to change notification settings - Fork 11
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
Created prometheus handler class #790
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
from shared.metrics import Counter, Histogram | ||
|
||
# Main Counter | ||
CHECKPOINTS_TOTAL_BEGUN = Counter( | ||
"worker_checkpoints_begun", | ||
"Total number of times a flow's first checkpoint was logged.", | ||
["flow"], | ||
) | ||
CHECKPOINTS_TOTAL_SUCCEEDED = Counter( | ||
"worker_checkpoints_succeeded", | ||
"Total number of times one of a flow's success checkpoints was logged.", | ||
["flow"], | ||
) | ||
CHECKPOINTS_TOTAL_FAILED = Counter( | ||
"worker_checkpoints_failed", | ||
"Total number of times one of a flow's failure checkpoints was logged.", | ||
["flow"], | ||
) | ||
CHECKPOINTS_TOTAL_ENDED = Counter( | ||
"worker_checkpoints_ended", | ||
"Total number of times one of a flow's terminal checkpoints (success or failure) was logged.", | ||
["flow"], | ||
) | ||
CHECKPOINTS_ERRORS = Counter( | ||
"worker_checkpoints_errors", | ||
"Total number of errors while trying to log checkpoints", | ||
["flow"], | ||
) | ||
CHECKPOINTS_EVENTS = Counter( | ||
"worker_checkpoints_events", | ||
"Total number of checkpoints logged.", | ||
["flow", "checkpoint"], | ||
) | ||
CHECKPOINTS_SUBFLOW_DURATION = Histogram( | ||
"worker_checkpoints_subflow_duration_seconds", | ||
"Duration of subflows in seconds.", | ||
["flow", "subflow"], | ||
buckets=[ | ||
0.05, | ||
0.1, | ||
0.5, | ||
1, | ||
2, | ||
5, | ||
10, | ||
30, | ||
60, | ||
120, | ||
180, | ||
300, | ||
600, | ||
900, | ||
1200, | ||
1800, | ||
2400, | ||
3600, | ||
], | ||
) | ||
|
||
|
||
class PrometheusCheckpointLoggerHandler: | ||
""" | ||
PrometheusCheckpointLoggerHandler is a class that is responsible for all | ||
Prometheus related logs. This checkpoint logic is responsible for logging | ||
metrics to any checkpoints we define. This class is made with the intent | ||
of extending different checkpoints for metrics for different needs. The | ||
methods in this class are mainly used by the CheckpointLogger class. | ||
""" | ||
|
||
def log_begun(self, flow: str): | ||
CHECKPOINTS_TOTAL_BEGUN.labels(flow=flow).inc() | ||
|
||
def log_failure(self, flow: str): | ||
CHECKPOINTS_TOTAL_FAILED.labels(flow=flow).inc() | ||
|
||
def log_success(self, flow: str): | ||
CHECKPOINTS_TOTAL_SUCCEEDED.labels(flow=flow).inc() | ||
|
||
def log_total_ended(self, flow: str): | ||
CHECKPOINTS_TOTAL_ENDED.labels(flow=flow).inc() | ||
|
||
def log_checkpoints(self, flow: str, checkpoint: str): | ||
CHECKPOINTS_EVENTS.labels(flow=flow, checkpoint=checkpoint).inc() | ||
|
||
def log_errors(self, flow: str): | ||
CHECKPOINTS_ERRORS.labels(flow=flow).inc() | ||
|
||
def log_subflow(self, flow: str, subflow: str, duration: int): | ||
CHECKPOINTS_SUBFLOW_DURATION.labels(flow=flow, subflow=subflow).observe( | ||
duration | ||
) | ||
|
||
|
||
PROMETHEUS_HANDLER = PrometheusCheckpointLoggerHandler() |
Oops, something went wrong.
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.
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 guess you can also use the opportunity to remove all these statsd metrics
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 have a followup PR incoming, I'll remove them in that one 👌