「Prometheus」memo

概要

サーバ、アプリの各種情報を収集、保存するソフトウェア。
要Agent(Exporter)。
Home Page
Git Hub

Home Pageより(Google翻訳)

測定基準から洞察へ
あなたのメトリクスを強化し、先導的なもので警告します
オープンソース監視ソリューション。

memo

  • 用途に合わせたexporterのインストールが必要
    Agentアプリです
  • PrometheusとExporterのダウンロード
    Download Page
  • 他Exporterのダウンロード
    Home Pageより(Google翻訳)

    Prometheusのメトリクスとしてサードパーティのシステムから既存のメトリクスをエクスポートするのに役立つ多数のライブラリとサーバがあります。 これは、特定のシステムに直接Prometheusメトリクスをインストルメントすることが不可能な場合(たとえば、HAProxyやLinuxのシステム統計)に役立ちます。

    いろいろあります
    Download Page

  • Prometheusの監視対象追加
    prometheus.yml内「scrape_configs:」「static_configs:」「- targets:」に追加
    Example

    global:
      scrape_interval:     15s # By default, scrape targets every 15 seconds.
    
      # Attach these labels to any time series or alerts when communicating with
      # external systems (federation, remote storage, Alertmanager).
      external_labels:
        monitor: 'codelab-monitor'
    
    # A scrape configuration containing exactly one endpoint to scrape:
    # Here it's Prometheus itself.
    scrape_configs:
      # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
      - job_name: 'prometheus'
    
        # Override the global default and scrape targets from this job every 5 seconds.
        scrape_interval: 5s
    
        static_configs:
          - targets: ['localhost:9090', 'localhost:9115']
    
  • 目的のExporterがいれば簡易

Book

2019/5/18 オライリー・ジャパンから発売

memo

Posted by shi-n