blob: 3f817e558803a879e313c6c919ac1a4c7a976d40 (
plain) (
blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{ hostName, ... }:
let
relabel_configs = [
{
action = "replace";
replacement = hostName;
target_label = "instance";
}
];
in
{
services.prometheus.exporters = {
node.enable = true;
systemd.enable = true;
process.enable = true;
};
services.vmagent = {
enable = true;
remoteWrite.url = "http://10.100.0.60:8428/api/v1/write";
prometheusConfig = {
global = {
external_labels = {
"host" = hostName;
};
};
scrape_configs = [
{
job_name = "node";
scrape_interval = "10s";
static_configs = [
{ targets = [ "127.0.0.1:9100" ]; }
];
inherit relabel_configs;
}
{
job_name = "systemd";
scrape_interval = "10s";
static_configs = [
{ targets = [ "127.0.0.1:9558" ]; }
];
inherit relabel_configs;
}
{
job_name = "process";
scrape_interval = "10s";
static_configs = [
{ targets = [ "127.0.0.1:9256" ]; }
];
inherit relabel_configs;
}
{
job_name = "vmagent";
scrape_interval = "10s";
static_configs = [
{ targets = [ "127.0.0.1:8429" ]; }
];
inherit relabel_configs;
}
];
};
};
}
|