-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: propdefs perf + metrics (#24629)
- Loading branch information
1 parent
f23b3af
commit 04d32a6
Showing
7 changed files
with
176 additions
and
68 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,6 +1,14 @@ | ||
pub const UPDATES_ISSUED: &str = "prop_defs_issued_updates"; | ||
pub const BATCH_SKIPPED: &str = "prop_defs_batch_skipped"; | ||
pub const EVENTS_RECEIVED: &str = "prop_defs_events_received"; | ||
pub const EVENTS_SKIPPED: &str = "prop_defs_events_skipped"; | ||
pub const FORCED_SMALL_BATCH: &str = "prop_defs_forced_small_batch"; | ||
pub const SMALL_BATCH_SLEEP: &str = "prop_defs_small_batch_sleep"; | ||
pub const UPDATES_SEEN: &str = "prop_defs_seen_updates"; | ||
pub const WORKER_BLOCKED: &str = "prop_defs_worker_blocked"; | ||
pub const UPDATES_PER_EVENT: &str = "prop_defs_updates_per_event"; | ||
pub const UPDATES_FILTERED_BY_CACHE: &str = "prop_defs_filtered_by_cache"; | ||
pub const TRANSACTION_LIMIT_SATURATION: &str = "prop_defs_transaction_limit_saturation"; | ||
pub const EMPTY_EVENTS: &str = "prop_defs_empty_events"; | ||
pub const EVENT_PARSE_ERROR: &str = "prop_defs_event_parse_error"; | ||
pub const BATCH_ACQUIRE_TIME: &str = "prop_defs_batch_acquire_time_ms"; | ||
pub const PERMIT_WAIT_TIME: &str = "prop_defs_permit_wait_time_ms"; | ||
pub const UPDATE_ISSUE_TIME: &str = "prop_defs_update_issue_time_ms"; |