Skip to content

Instantly share code, notes, and snippets.

@rmminusrslash
Created October 24, 2022 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmminusrslash/3df4ce506477b358202937c24e47aaa4 to your computer and use it in GitHub Desktop.
Save rmminusrslash/3df4ce506477b358202937c24e47aaa4 to your computer and use it in GitHub Desktop.
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