Understanding Prometheus Histograms | Motivation and Concepts, Instrumentation, Querying in PromQL

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

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

  • @cars0n27
    @cars0n27 Месяц назад +1

    Hi, just want to say that i chanced upon using prometheus while trying to conduct a load test. This is really interesting tool!
    I deployed a postgres exporter to expose certain metrics from my postgres instance. Encountered some issues as there wasnt too many tutorials about how to do this in azure managed prometheus. But nonetheless managed to figure it out.
    I watched most of your video in one ago just afew hours ago, and these are really useful knowledge, including those tips in grafana.
    thank you!

  • @winfle
    @winfle Месяц назад +1

    Super nice explanation!

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

    Great video! How do I display histograms in Grafana?

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

      Good question, I'll make a quick follow-up video about using heatmaps in Grafana soon!

  • @yogeshsy7382
    @yogeshsy7382 2 месяца назад +1

    Histogram from the horse's mouth ❤, understood and luved it ! Thank you! Any code examples of enabling this for Python and Java?

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

      Thanks! You can find Python examples at prometheus.github.io/client_python/instrumenting/histogram/ and Java at prometheus.github.io/client_java/getting-started/metric-types/#histogram

  • @e-researcher
    @e-researcher 3 месяца назад +1

    Amazing

  • @yogeshsy7382
    @yogeshsy7382 2 месяца назад +1

    Great playlist, however it would be helpful if you can fix the order of the playlist from getting started to more advance topic like histogram and counter rates, etc

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

      Thanks for the suggestion, I reordered the videos a bit. They're not really meant to be building on each other in any particular order or curriculum, so not sure if the new order is that much better :)

  • @muhammaddaffaambiya5394
    @muhammaddaffaambiya5394 Месяц назад

    Hi bro, how to backup and restore Prometheus Data ?

    • @PromLabs
      @PromLabs  Месяц назад

      You can use the snapshot API (prometheus.io/docs/prometheus/latest/querying/api/#snapshot) to create a snapshot of the entire TSDB that can be copied / backed-up to somewhere else. Just drop it back in place as Prometheus' data directory when you want to restore it. Triggering a snapshot via the API requires the admin API to be enabled via the "--web.enable-admin-api" command line flag.