Initial grafana setup
This commit is contained in:
parent
da721924e4
commit
519e907278
3 changed files with 84 additions and 0 deletions
|
@ -116,6 +116,17 @@ in {
|
|||
];
|
||||
};
|
||||
|
||||
services.prometheus = {
|
||||
exporters = {
|
||||
node = {
|
||||
enable = true;
|
||||
# most of the collectors should be on by default
|
||||
enabledCollectors = ["systemd"];
|
||||
port = 9002;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# time on vendetta is strangely out of sync
|
||||
networking.timeServers = options.networking.timeServers.default ++ ["ie.pool.ntp.org"];
|
||||
services.ntp.enable = true;
|
||||
|
|
|
@ -25,6 +25,7 @@ Notes:
|
|||
groups_trusted = map (x: "@${x}") groups;
|
||||
in {
|
||||
imports = [
|
||||
../applications/grafana.nix
|
||||
];
|
||||
|
||||
deployment = {
|
||||
|
@ -49,6 +50,15 @@ in {
|
|||
sudo_groups = groups;
|
||||
};
|
||||
|
||||
services.skynet.grafana = {
|
||||
enable = true;
|
||||
|
||||
host = {
|
||||
ip = ip_pub;
|
||||
name = name;
|
||||
};
|
||||
};
|
||||
|
||||
skynet_dns.records = [
|
||||
{
|
||||
record = name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue