Created
October 24, 2022 08:48
-
-
Save rmminusrslash/3df4ce506477b358202937c24e47aaa4 to your computer and use it in GitHub Desktop.
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
from prometheus_client import Histogram | |
h = Histogram('request_latency_seconds', 'Description of histogram') | |
h.observe(4.7) # Observe 4.7 (seconds in this case) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment