Prometheus+Grafana Intro

Prometheus

  • First Steps
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    # Downloading Prometheus
    ➜ wget https://github.com/prometheus/prometheus/releases/download/v2.30.0/prometheus-2.30.0.linux-arm64.tar.gz
    ➜ tar -xvf prometheus-2.30.0.linux-arm64.tar.gz
    ➜ cd prometheus-2.30.0.linux-arm64

    # Configuring Prometheus
    ➜ tree -L 1
    .
    ├── console_libraries
    ├── consoles
    ├── LICENSE
    ├── NOTICE
    ├── prometheus
    ├── prometheus.yml -- a sample configuration
    └── promtool

    2 directories, 5 files

    # Starting Prometheus