[monitoring] Pass config-managed key-value tags to monitoring listeners.#3153
Open
copybara-service[bot] wants to merge 1 commit intomainfrom
Open
[monitoring] Pass config-managed key-value tags to monitoring listeners.#3153copybara-service[bot] wants to merge 1 commit intomainfrom
copybara-service[bot] wants to merge 1 commit intomainfrom
Conversation
JAX monitoring listeners currently receive only arguments that events pass. However, we want to be able to tag monitoring data along with durations and counters. For example, if users want to collect data across jobs or tests, we want to be able to record metadata for post-processing (e.g., job attributes, test parameters). NOTE: Added `jax.monitoring_tags` to the public API so it's available to users as a context manager. However, other monitoring APIs are undocumented, so added to the `UNDOCUMENTED_APIS` list. PiperOrigin-RevId: 882140161
This file contains hidden or 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
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.
[monitoring] Pass config-managed key-value tags to monitoring listeners.
JAX monitoring listeners currently receive only arguments that events pass. However, we want to be able to tag monitoring data along with durations and counters. For example, if users want to collect data across jobs or tests, we want to be able to record metadata for post-processing (e.g., job attributes, test parameters).
NOTE: Added
jax.monitoring_tagsto the public API so it's available to users as a context manager. However, other monitoring APIs are undocumented, so added to theUNDOCUMENTED_APISlist.