linzhengen / tech-notes

My tech notes write in github issues🧲
1 stars 0 forks source link

[20240112] Prometheus Metric Types #192

Open linzhengen opened 9 months ago

linzhengen commented 9 months ago

Metric Types

Counter

How many times did X happen Number can only increase

Example

Gauge

What is the current value of X Can go up or down

Example

Histogram

How long or how big something is Groups observations into configurable bucket size

Example

Summary

Similar to histograms(track how long or how big) How many observations fell below x Don’t have to define quantiles ahead of time

Example