prometheus.yml 3.02 KB
Newer Older
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
30
31
32
33
34
35
36
# my global config
global:
  #scrape_interval: 1m # Set the interval to scrape data. Default is every 1 minute.
  #evaluation_interval: 1m # Set interval to evaluate rules. The default is every 1 minute.
  #scrape_timeout: 10s # Set scrape timeout period. global default (10s).

# Alertmanager configuration
alerting:
  alertmanagers:
  - static_configs:
    - targets:
      # - alertmanager:9093

# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
  # - "first_rules.yml"
  # - "second_rules.yml"

# 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'

    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.

    static_configs:
    - targets: ['localhost:9090']

  - job_name: 'node_exporter'
    scrape_interval: 5s
    static_configs:
    - targets: ['10.0.0.137:10091']

  - job_name: 'blackbox'
37
    scrape_interval: 15s
38
39
40
41
42
    metrics_path: /probe
    params:
      module: [http_2xx]  # Look for a HTTP 200 response.
    static_configs:
      - targets:
43
44
45
        - https://bitwarden.jaytaala.com
        - https://confluence.jaytaala.com
        - https://chat.jaytaala.com
46
        - http://crowd:8095/crowd
47
48
49
50
51
52
53
54
        - https://gitlab.jaytaala.com
        - https://url.jaytaala.com
        - https://opstoolkit.unswcanberraspace.com
        - https://opstoolkit-dev.unswcanberraspace.com
        - https://confluence.unswcanberraspace.com
        - https://bitbucket.unswcanberraspace.com
        - https://jira.unswcanberraspace.com
        - https://crowd.unswcanberraspace.com
55
56
57
58
59
60
61
    relabel_configs:
      - source_labels: [__address__]
        target_label: __param_target
      - source_labels: [__param_target]
        target_label: instance
      - target_label: __address__
        replacement: bbexp:9115  # The blackbox exporter's real hostname:port.
62

63
    metric_relabel_configs:
64
      # create domain label
65
66
67
68
69
70
71
72
      - source_labels: [instance] 
        regex: '.*?[.](.*)'
        replacement: '$1'
        target_label: domain
      - source_labels: [domain] 
        regex: '^$'
        replacement: 'jaytaala.com'
        target_label: domain
73
74

      # create shortname label
75
76
77
78
      - source_labels: [instance] 
        regex: '.*/(.+?)[:.].*'
        replacement: '$1'
        target_label: shortname
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96

      # instance relabling
      # make copy of instance to use later
      - source_labels: [instance] 
        target_label: __tmp
      # those with subdomains passthrough, if not instance will be empty
      - source_labels: [instance] 
        regex: '.*/(.*[.].*)'
        replacement: '$1'
        target_label: instance
      # use previously saved __tmp and find those with : (e.g. crowd:8095)
      - source_labels: [__tmp] 
        regex: '.*/(.*)[:].*'
        replacement: 'internal:$1'
        target_label: instance
      # now drop the __tmp label
      - regex: '^__tmp$' 
        action: labeldrop