4127 links
739 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 1 / 2
25 results tagged prometheus x
  • Relabeler - The playground for Prometheus relabeling rules

    A playground for Prometheus relabeling rules

    September 4, 2024 02:40:09 PM GMT+02:00 * - permalink -
    QRCode
    - https://relabeler.promlabs.com/
    relabeling prometheus
  • Wins from Effective Kafka Monitoring at Adobe: Stability, Performance, and Cost Savings | by Alex Falca | Adobe Tech Blog
    December 29, 2022 09:05:24 AM GMT+01:00 * - permalink -
    QRCode
    - https://blog.developer.adobe.com/wins-from-effective-kafka-monitoring-at-adobe-stability-performance-and-cost-savings-a3ecb701ee5b
    jmx kafka monitoring prometheus
  • thumbnail
    Single Prometheus job for dozens of Blackbox exporters | by Hayk Davtyan | Geek Culture | Medium
    October 3, 2022 01:28:18 PM GMT+02:00 * - permalink -
    QRCode
    - https://medium.com/geekculture/single-prometheus-job-for-dozens-of-blackbox-exporters-2a7ba492d6c8
    prometheus monitoring blackbox
  • thumbnail
    What makes VictoriaMetrics the next leading choice for open-source monitoring | by Amit Karni | Everything Full Stack | May, 2022 | Medium
    May 24, 2022 10:55:11 AM GMT+02:00 * - permalink -
    QRCode
    - https://medium.com/everything-full-stack/what-makes-victoriametrics-the-new-de-facto-standard-choice-for-open-source-monitoring-5d2b66b6e292
    victoriametrics monitoring prometheus mimir
  • Awesome Prometheus alerts | Collection of alerting rules
    August 9, 2021 09:20:25 AM GMT+02:00 * - permalink -
    QRCode
    - https://awesome-prometheus-alerts.grep.to/
    alerting prometheus
  • thumbnail
    Kubernetes Monitoring with Prometheus, Ultimate Guide | Sysdig
    July 26, 2021 10:54:06 AM GMT+02:00 * - permalink -
    QRCode
    - https://sysdig.com/blog/kubernetes-monitoring-prometheus/
    monitoring prometheus kubernetes
  • thumbnail
    vfxGer/docker_eventer: A Docker container to notify about Docker events written in Python

    til --since et --until et le process.Popen.poll()

    January 3, 2020 05:17:06 PM GMT+01:00 * - permalink -
    QRCode
    - https://github.com/vfxGer/docker_eventer
    python docker event prometheus
  • thumbnail
    Delete Time Series from Prometheus 2.0
    July 12, 2018 05:05:20 PM GMT+02:00 * - permalink -
    QRCode
    - https://e-tel.eu/2017/12/03/delete-time-series-from-prometheus-2-0/
    prometheus delete query
  • thumbnail
    Prometheus: Apdex alerting – Tristan Colgate-McFarlane – Medium
    March 11, 2018 05:31:18 PM GMT+01:00 * - permalink -
    QRCode
    - https://medium.com/@tristan_96324/prometheus-apdex-alerting-d17a065e39d0
    adpex monitoring prometheus
  • thumbnail
    digitalocean/bind_exporter: Prometheus exporter for BIND

    statistics-channels {
    inet 127.0.0.1 port 8080 allow { 127.0.0.1; };
    };

    December 18, 2017 03:16:44 PM GMT+01:00 * - permalink -
    QRCode
    - https://github.com/digitalocean/bind_exporter
    bind bind9 prometheus
  • Volume Monitoring in Kubernetes with Prometheus – Argo Project
    October 23, 2017 10:06:55 AM GMT+02:00 * - permalink -
    QRCode
    - https://blog.argoproj.io/volume-monitoring-in-kubernetes-with-prometheus-3a185e4c4035
    kubernetes volume prometheus
  • Which are my biggest metrics? | Robust Perception
    March 3, 2017 05:46:40 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.robustperception.io/which-are-my-biggest-metrics/
    prometheus
  • Which targets have the most samples? | Robust Perception

    scrape_samples_scraped

    topk(20, sort_desc(scrape_samples_scraped)) le top 20 des metrics

    February 10, 2017 10:11:44 AM GMT+01:00 * - permalink -
    QRCode
    - https://www.robustperception.io/which-targets-have-the-most-samples/
    prometheus
  • Automatic check of expiration date of certificatesKoen Van Impe – vanimpe.eu
    #!/usr/bin/python
    #
    # Check Expiration Date of SSL certificates
    #
    # Koen Van Impe
    #
    # Uses the file ceds.checks as input ; one entry per line, format <host>:<port>
    #
    #  ceds.checks :            www.google.com:443
    #                           imap.mydomain.tld:993
    #                       
    
    from OpenSSL import SSL
    import socket, datetime
    import smtplib
    from email.mime.text import MIMEText
    
    servers_to_check = "ceds.checks"
    alert_days = 5
    mail_rcpt = "<>"
    mail_from = "<>"
    mail_server = "127.0.0.1"
    
    servers = open( servers_to_check, "r")
    cur_date = datetime.datetime.utcnow()
    response = ""
    cert_tested = 0
    
    for line in servers:
        host = line.strip().split(":")[0]
        port = line.strip().split(":")[1]
        try:
            context = SSL.Context(SSL.SSLv23_METHOD)
            sock = SSL.Connection(context, socket.socket(socket.AF_INET, socket.SOCK_STREAM))
    
            try:
                sock.connect( (str(host) , int(port)) )
                sock.send("\x00")       # Send empty to trigger response
                get_peer_cert=sock.get_peer_certificate()
                sock.close()
    
                exp_date =  datetime.datetime.strptime(get_peer_cert.get_notAfter(),'%Y%m%d%H%M%SZ')        
                days_to_expire = int((exp_date - cur_date).days)
                cert_tested = cert_tested + 1
    
                if days_to_expire < 0:
                    response = response + "\n %s : %s EXPIRED" % (host, port)
                elif alert_days > days_to_expire:
                    response = response + "\n %s : %s expires in %s dayes " % (host, port, days_to_expire)
                #else:
                    #response = response + "\n %s : %s OK" % (host,port)
            except:
                response = response + "\n Unable to connect to %s : %s " % (host, port)
        except SSL.Error,e:
            print e
    
    if response:
        response = response + "\n\nTotal certificates tested : %s \n" % cert_tested
        try:
            message = MIMEText( response )
            message["Subject"] = "Certificate check %s " % cur_date
            message["From"] = mail_from
            message["To"] = mail_rcpt
            smtpObj = smtplib.SMTP( mail_server )
            smtpObj.sendmail(mail_from, mail_rcpt, message.as_string())
            smtpObj.quit()
        except smtplib.SMTPException:
            print "Unable to send mail"

    en modifiant ça, je vias l'intégrer à mon prometheus. Merci l'open source :D

    October 12, 2016 05:25:15 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.vanimpe.eu/2014/04/28/automatic-check-expiration-date-certificates/
    prometheus ssl
  • thumbnail
    Storage | Prometheus

    Settings for high numbers of time series

    Prometheus can handle millions of time series. However, you have to adjust the storage settings to handle much more than 100,000 active time series. Essentially, you want to allow a certain number of chunks for each time series to be kept in RAM. The default value for the storage.local.memory-chunks flag (discussed above) is 1048576. Up to about 300,000 series, you still have three chunks available per series on average. For more series, you should increase the storage.local.memory-chunks value. Three times the number of series is a good first approximation. But keep the implication for memory usage (see above) in mind.

    If you have more active time series than configured memory chunks, Prometheus will inevitably run into a situation where it has to keep more chunks in memory than configured. If the number of chunks goes more than 10% above the configured limit, Prometheus will throttle ingestion of more samples (by skipping scrapes and rule evaluations) until the configured value is exceeded by less than 5%. Throttled ingestion is really bad for various reasons. You really do not want to be in that situation.

    October 7, 2016 05:44:35 PM GMT+02:00 * - permalink -
    QRCode
    - https://prometheus.io/docs/operating/storage/
    prometheus
  • thumbnail
    Monitorama PDX 2016 - Brian Brazil - Prometheus on Vimeo

    Prometheus talk @ monitorama

    September 18, 2016 01:02:56 PM GMT+02:00 * - permalink -
    QRCode
    - https://vimeo.com/173704322
    prometheus
  • thumbnail
    prometheus/client_python: Prometheus instrumentation library for Python applications
    September 9, 2016 02:20:47 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/prometheus/client_python
    prometheus python
  • thumbnail
    Hands on: Monitoring Kubernetes with Prometheus
    August 30, 2016 01:57:28 PM GMT+02:00 * - permalink -
    QRCode
    - https://coreos.com/blog/monitoring-kubernetes-with-prometheus.html
    prometheus coreos docker kubernetes
  • thumbnail
    docs/exporters.md at master · prometheus/docs

    une liste des exporters dispos sur prometheus

    July 29, 2016 03:27:01 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/prometheus/docs/blob/master/content/docs/instrumenting/exporters.md
    prometheus exporters
  • Prometheus Monitoring System - Spirula Systems
    July 28, 2016 03:27:24 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.spirulasystems.com/blog/2015/06/10/prometheus-monitoring-system/
    prometheus disk
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation