-
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.
chore: more error tracking metrics (#27276)
- Loading branch information
Showing
6 changed files
with
34 additions
and
11 deletions.
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
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,29 +1,33 @@ | ||
pub const ERRORS: &str = "cymbal_errors"; | ||
pub const EVENT_RECEIVED: &str = "cymbal_event_received"; | ||
pub const STACK_PROCESSED: &str = "cymbal_stack_track_processed"; | ||
pub const BASIC_FETCHES: &str = "cymbal_basic_fetches"; | ||
pub const EVENT_PROCESSED: &str = "cymbal_event_processed"; | ||
pub const SOURCEMAP_HEADER_FOUND: &str = "cymbal_sourcemap_header_found"; | ||
pub const SOURCEMAP_BODY_REF_FOUND: &str = "cymbal_sourcemap_body_ref_found"; | ||
pub const SOURCEMAP_NOT_FOUND: &str = "cymbal_sourcemap_not_found"; | ||
pub const SOURCEMAP_BODY_FETCHES: &str = "cymbal_sourcemap_body_fetches"; | ||
pub const STORE_CACHE_HITS: &str = "cymbal_store_cache_hits"; | ||
pub const STORE_CACHE_MISSES: &str = "cymbal_store_cache_misses"; | ||
pub const STORE_CACHED_BYTES: &str = "cymbal_store_cached_bytes"; | ||
pub const STORE_CACHE_SIZE: &str = "cymbal_store_cache_size"; | ||
pub const STORE_CACHE_EVICTIONS: &str = "cymbal_store_cache_evictions"; | ||
pub const STORE_CACHE_EVICTION_RUNS: &str = "cymbal_store_cache_eviction_runs"; | ||
pub const MAIN_LOOP_TIME: &str = "cymbal_main_loop_time"; | ||
pub const PER_FRAME_TIME: &str = "cymbal_per_frame_time"; | ||
pub const PER_STACK_TIME: &str = "cymbal_per_stack_time"; | ||
pub const PER_FRAME_GROUP_TIME: &str = "cymbal_per_frame_group_time"; | ||
pub const SYMBOL_SET_DB_FETCHES: &str = "cymbal_symbol_set_db_fetches"; | ||
pub const SYMBOL_SET_DB_HITS: &str = "cymbal_symbol_set_db_hits"; | ||
pub const SYMBOL_SET_DB_MISSES: &str = "cymbal_symbol_set_db_misses"; | ||
pub const SYMBOL_SET_SAVED: &str = "cymbal_symbol_set_saved"; | ||
pub const SAVED_SYMBOL_SET_LOADED: &str = "cymbal_saved_symbol_set_loaded"; | ||
pub const SAVED_SYMBOL_SET_ERROR_RETURNED: &str = "cymbal_saved_symbol_set_error_returned"; | ||
pub const SYMBOL_SET_FETCH_RETRY: &str = "cymbal_symbol_set_fetch_retry"; | ||
pub const FRAME_RESOLUTION: &str = "cymbal_frame_resolution"; | ||
pub const FRAME_RESOLVED: &str = "cymbal_frame_resolved"; | ||
pub const FRAME_CACHE_HITS: &str = "cymbal_frame_cache_hits"; | ||
pub const FRAME_CACHE_MISSES: &str = "cymbal_frame_cache_misses"; | ||
pub const FRAME_DB_HITS: &str = "cymbal_frame_db_hits"; | ||
pub const FRAME_NOT_RESOLVED: &str = "cymbal_frame_not_resolved"; | ||
pub const S3_FETCH: &str = "cymbal_s3_fetch"; | ||
pub const S3_PUT: &str = "cymbal_s3_put"; | ||
pub const SOURCEMAP_FETCH: &str = "cymbal_sourcemap_fetch"; | ||
pub const SAVE_SYMBOL_SET: &str = "cymbal_save_symbol_set"; | ||
pub const SOURCEMAP_PARSE: &str = "cymbal_sourcemap_parse"; | ||
pub const ISSUE_CREATED: &str = "cymbal_issue_created"; |
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