minor updates

This commit is contained in:
Ingolf Wagner 2019-12-18 23:48:37 +13:00
parent 6bc8b18f97
commit dd8d46acce
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 19 additions and 3 deletions

View file

@ -53,7 +53,7 @@
#};
# new Zealand overwrites
services.netdata.enable = lib.mkForce false ;
# services.netdata.enable = lib.mkForce false ;
services.SystemdJournal2Gelf.enable = lib.mkForce false;
}

View file

@ -42,7 +42,7 @@
{
label= "Dashboard";
href = "http://kruck.private:5656";
href = "http://grafana.workhorse.private";
image = "https://media.giphy.com/media/eLmaUW5dJak2k/giphy.gif";
}
{
@ -57,7 +57,7 @@
}
{
label = "Jenkins";
href = "http://jenkins.schasch.private/";
href = "http://jenkins.workhorse.private/";
image = "https://media.giphy.com/media/nQYnLFII2sFcQ/giphy.gif";
}
{
@ -207,6 +207,22 @@
(lib.attrNames config.module.cluster.services.tinc."private".hosts)
);
}
{
text = "netdata";
items = map (
{name, host ? "${name}.private", ... }:
{
label = name;
href = "http://${host}:19999/";
image = "https://media.giphy.com/media/BkjdN6MQCDPaw/giphy.gif";
}
) (
map
(name: { inherit name; })
[ "workhorse" "porani" "sputnik" ]
#(lib.attrNames config.module.cluster.services.tinc."private".hosts)
);
}
];
};};
};