文章

Prometheus QuickStart

Quick Start

一、Prometheus

download: https://prometheus.io/download/

① prometheus server

start: ./prometheus --config.file=prometheus.yml

node_config: vim prometheus.yml

  - job_name: 'node'
    static_configs:
      - targets: ['localhost:8080']

web: http://localhost:9090

② node_exporter

start: ./node_exporter --web.listen-address 127.0.0.1:8080

web: http://localhost:8080

二、Grafana

download: https://grafana.com/grafana/download

特别提示:【下载比较慢,可以用迅雷下载】

start:./grafana-server web

web: http://localhost:3000

Server Architecture

Relation Document

Prometheus 快速入门教程