summaryrefslogtreecommitdiffhomepage
path: root/public/v4/apps/node-exporter.yml
blob: d495ba28edefec081fee5155dfc033c9721d2bde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
captainVersion: 4
services:
    $$cap_appname:
        image: prom/node-exporter:$$cap_version
        restart: always
        volumes:
            - /var/run/docker.sock:/var/run/docker.sock
            - /sys:/host/sys
            - /proc:/host/proc
            - /:/rootfs
        caproverExtra:
            notExposeAsWebApp: true
caproverOneClickApp:
    variables:
        - id: $$cap_version
          label: Node Exporter Version
          defaultValue: 'v1.5.0'
          description: Check out their docker page for the valid tags https://hub.docker.com/r/prom/node-exporter/tags
          validRegex: /^([^\s^\/])+$/
    instructions:
        start: >-
            Prometheus exporter for machine metrics, written in Go with pluggable metric collectors.
        end: >-
            Aaaand you're done! 😄
            Your service is available at srv-captain--$$cap_appname:9100.
    displayName: 'Node Exporter'
    isOfficial: false
    description: Prometheus exporter for machine metrics, written in Go with pluggable metric collectors.
    documentation: Taken from https://github.com/prometheus/node_exporter and https://prometheus.io/docs/guides/node-exporter/