blob: e4fa1956ef49eab31fd26022a9f9b823496216e5 (
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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkOption types mkMerge mkIf optionalAttrs optionals;
cnf = config.cynerd.monitoring;
in {
options.cynerd.monitoring = {
enable = mkOption {
type = types.bool;
default = true;
description = "If monitoring should be used";
};
hw = mkOption {
type = types.bool;
default = true;
description = "If hardware should be reported";
};
drives = mkOption {
type = types.bool;
default = true;
description = "If S.M.A.R.T. should be enabled";
};
speedtest = mkOption {
type = types.bool;
default = false;
description = "If speedtest should be used to measure connection speed";
};
};
config = mkMerge [
(mkIf cnf.enable {
# Telegraf configuration
services.telegraf = {
enable = true;
package = pkgs.writeShellScriptBin "telegraf" ''
exec /run/wrappers/bin/telegraf "$@"
'';
environmentFiles = ["/run/secrets/telegraf.env"];
extraConfig = {
agent = {};
outputs.influxdb_v2 = [
{
urls = ["http://cynerd.cz:8086"];
token = "$INFLUX_TOKEN";
organization = "personal";
bucket = "monitoring";
tagdrop.source = ["bigclown"]; # See home-assistant.nix
}
];
inputs =
{
cpu = [
{
percpu = true;
totalcpu = true;
}
];
mem = [{}];
swap = [{}];
disk = [
{
ignore_fs = [
"tmpfs"
"devtmpfs"
"devfs"
"iso9660"
"overlay"
"aufs"
"squashfs"
];
}
];
diskio = [{}];
net = [{ignore_protocol_stats = false;}];
nstat = [{}];
system = [{}];
processes = [{}];
systemd_units = [{details = true;}];
wireguard = [{}];
}
// (optionalAttrs cnf.drives {
smart = [
{
path_smartctl = "${pkgs.smartmontools}/bin/smartctl";
use_sudo = true;
}
];
})
// (optionalAttrs cnf.hw {
sensors = [{}];
wireless = [{}];
})
// (optionalAttrs cnf.speedtest {
exec = [
{
commands = ["${pkgs.speedtest-cli}/bin/speedtest --json"];
name_override = "speedtest";
timeout = "5m";
interval = "15m";
data_format = "json";
}
];
});
};
};
systemd.services.telegraf.path = with pkgs;
[
"/run/wrappers"
]
++ (optionals cnf.hw [
lm_sensors
smartmontools
nvme-cli
]);
security.sudo.extraRules = [
{
users = ["telegraf"];
commands = [
{
command = "${pkgs.smartmontools}/bin/smartctl";
options = ["NOPASSWD"];
}
];
}
];
security.wrappers.telegraf = {
owner = "root";
group = "root";
capabilities = "CAP_NET_ADMIN+epi";
source = "${pkgs.telegraf}/bin/telegraf";
};
})
(mkIf (config.networking.hostName == "lipwig") {
# InfluxDB
services = {
influxdb2.enable = true;
telegraf.extraConfig.inputs.prometheus = {
urls = ["http://localhost:8086/metrics"];
};
# Grafana
grafana = {
enable = true;
settings = {
users.allow_sign_up = false;
security = {
admin_user = "cynerd";
admin_password = "$__file{/run/secrets/grafana.admin.pass}";
};
server = {
domain = "grafana.cynerd.cz";
root_url = "https://%(domain)s/";
http_addr = "";
http_port = 3000;
};
};
};
};
networking.firewall.allowedTCPPorts = [8086 3000];
})
];
}
|