blob: 72adaa92132c93b912c2515deaa990b6d79c14b8 (
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
|
{ config, lib, pkgs, ... }:
let
cfg = config.orbekk.monitoring;
aliases = import ../data/aliases.nix;
in
{
options = {
orbekk.monitoring = {
enable = lib.mkEnableOption "Enable monitoring server";
grafana-port = lib.mkOption {
type = lib.types.int;
default = aliases.services.grafana.port;
};
grafana-domain = lib.mkOption {
type = lib.types.str;
default = "stats.orbekk.com";
};
prometheus-port = lib.mkOption {
type = lib.types.int;
default = aliases.services.prometheus.port;
};
prometheus-exporter-port = lib.mkOption {
type = lib.types.int;
default = aliases.services.prometheus-exporter.port;
};
};
};
config = lib.mkIf cfg.enable {
services.grafana = {
enable = true;
domain = cfg.grafana-domain;
port = cfg.grafana-port;
addr = "0.0.0.0";
provision = {
enable = true;
datasources = [
{
name = "Prometheus";
type = "prometheus";
access = "proxy";
orgId = 1;
editable = false;
url = "http://127.0.0.1:${toString cfg.prometheus-port}";
isDefault = true;
}
];
};
};
services.prometheus = {
enable = true;
port = cfg.prometheus-port;
scrapeConfigs = [
{
job_name = "self";
static_configs = [{
targets = ["127.0.0.1:${toString cfg.prometheus-exporter-port}"];
}];
}
];
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = cfg.prometheus-exporter-port;
};
};
};
};
}
|