Understanding Prometheus Metric Types | Meaning and Usage (Gauge, Counter, Summary, Histogram)

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024

Комментарии • 21

  • @ankitshah8369
    @ankitshah8369 5 месяцев назад +13

    The Prometheus CO-FOUNDER is out here explaining these concepts, and doing them so well. What a legend! Easiest sub ever. Thanks Julius!!!

  • @abdussamisehaam2523
    @abdussamisehaam2523 3 месяца назад +2

    hey julius... your way of explaining is super simple and on-point. the way you speak steadily and clearly..it made the concepts so easy to understand. keep bringing more videos on grafana and prometheus.

  • @user-mn8hm2fe1v
    @user-mn8hm2fe1v Год назад +3

    We recently started using it in our production, thank you so much for your work and for these videos. Hope to see them more 🙏

  • @VishalSharma-rl1ko
    @VishalSharma-rl1ko Год назад +7

    Thanks for this video.
    Would like to know more about native histogram.

    • @PromLabs
      @PromLabs  Год назад

      Thanks! Yes, I'll definitely make a video about those at some point! In the meantime, maybe these videos from PromCon EU 2022 are interesting: ruclips.net/video/AcmABV6NCYk/видео.html and ruclips.net/video/fikCqhlUOmQ/видео.html

  • @cokegen
    @cokegen Год назад +1

    Thanks a ton ! I'm re-watching this and a couple more of your videos till the "dust settles" ...

  • @manumonti_
    @manumonti_ Год назад +1

    Thanks! This video covers just what I wanted to know

  • @denar5022
    @denar5022 10 месяцев назад +2

    Thank you very much for the amazing videos! Very informative

  • @user-bc2vi4lo1z
    @user-bc2vi4lo1z 11 месяцев назад +1

    It might set the context better for a first time watcher, if instrumentation is mentioned briefly.

  • @metalmasterlp
    @metalmasterlp Год назад +2

    Amazing explanation, thanks for sharing

  • @joshuabrard1061
    @joshuabrard1061 Год назад +1

    Thanks for the video!

  • @Jam-ht2ky
    @Jam-ht2ky Год назад +1

    🙏🙏🙏🙏🙏 thank you soo much

  • @JackReacher1
    @JackReacher1 3 месяца назад +1

    thanks for the video but the subscriber button has a very different kind of inc() method it substracts one if you are already subscribed :)

    • @PromLabs
      @PromLabs  3 месяца назад

      Haha yes, this is very dangerous 🤣

  • @catex5452
    @catex5452 4 месяца назад

    I have a datetime value I want to track with metrics and prometheus. What would be the ideal metric type for that job?

    • @PromLabs
      @PromLabs  3 месяца назад

      A common pattern in Prometheus is to store Unix timestamps in gauge metrics. Then you can use the time() function (e.g. "time() - my_timestamp_seconds") to calculate how old the timestamp is. Example: demo.promlens.com/?l=e2HGvJ2PJgl

  • @sriyushanyanshunamana4651
    @sriyushanyanshunamana4651 7 месяцев назад

    when I am trying to create datasource using local prometheus url in grafana its throwing an error "ReadObject: expect { or , or } or n, but found #, error found in #1 byte of ...|# HELP jmx_|..., bigger context ...|# HELP jmx_config_reload_success_total Number of ti|... - There was an error returned querying the Prometheus API." how to resolve this .Any body help me

    • @PromLabs
      @PromLabs  6 месяцев назад

      It sounds like you are inputting the URL of a Prometheus /metrics endpoint (perhaps of the JMX exporter), not the URL to a Prometheus monitoring server.

  • @vipinmanakkattel9241
    @vipinmanakkattel9241 3 месяца назад

    How to enable authentication in prometheus

    • @PromLabs
      @PromLabs  3 месяца назад

      There's several ways, but take a look at prometheus.io/docs/guides/basic-auth/ and prometheus.io/docs/prometheus/latest/configuration/https/ for a start.