Initial prometheus config
Also did provision config for grafana, could be done directly but went through skynet.grafana config
This commit is contained in:
parent
50abdb90ab
commit
183f5a0e7d
4 changed files with 137 additions and 0 deletions
|
@ -24,6 +24,26 @@ in {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ip = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = cfg.host.ip;
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = port;
|
||||||
|
};
|
||||||
|
|
||||||
|
datasource = {
|
||||||
|
name = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
};
|
||||||
|
|
||||||
|
url = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
@ -44,6 +64,18 @@ in {
|
||||||
domain = "${name}.skynet.ie";
|
domain = "${name}.skynet.ie";
|
||||||
port = port;
|
port = port;
|
||||||
addr = cfg.host.ip;
|
addr = cfg.host.ip;
|
||||||
|
|
||||||
|
provision = {
|
||||||
|
enable = true;
|
||||||
|
datasources.settings.datasources = [
|
||||||
|
{
|
||||||
|
name = cfg.datasource.name;
|
||||||
|
type = "Prometheus";
|
||||||
|
url = cfg.datasource.url;
|
||||||
|
isDefault = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts = {
|
services.nginx.virtualHosts = {
|
||||||
|
|
67
applications/prometheus.nix
Normal file
67
applications/prometheus.nix
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
name = "prometheus";
|
||||||
|
cfg = config.services.skynet."${name}";
|
||||||
|
in {
|
||||||
|
imports = [];
|
||||||
|
|
||||||
|
options.services.skynet."${name}" = {
|
||||||
|
server = {
|
||||||
|
enable = mkEnableOption "Prometheus Server";
|
||||||
|
host = {
|
||||||
|
ip = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
};
|
||||||
|
|
||||||
|
name = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 9001;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
collecter_port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 9002;
|
||||||
|
};
|
||||||
|
|
||||||
|
#list of servers passed in for monitoring
|
||||||
|
servers = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config =
|
||||||
|
{
|
||||||
|
services.prometheus.exporters.node = {
|
||||||
|
enable = true;
|
||||||
|
# most collectors are on by default see docs for more options
|
||||||
|
enabledCollectors = ["systemd"];
|
||||||
|
port = cfg.collecter_port;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
// mkIf cfg.server.enable {
|
||||||
|
services.prometheus = {
|
||||||
|
enable = true;
|
||||||
|
port = cfg.server.port;
|
||||||
|
scrapeConfigs = [
|
||||||
|
{
|
||||||
|
job_name = "node_exporter";
|
||||||
|
static_configs = [
|
||||||
|
{
|
||||||
|
targets = map (server: "${server}.skynet.ie:9002") cfg.servers;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -29,6 +29,10 @@ in {
|
||||||
|
|
||||||
# every server will need the config to backup to
|
# every server will need the config to backup to
|
||||||
../applications/restic.nix
|
../applications/restic.nix
|
||||||
|
|
||||||
|
# every server will be monitored for grafana
|
||||||
|
../applications/prometheus.nix
|
||||||
|
#TODO: make sure no additional config needed for exporters ?
|
||||||
];
|
];
|
||||||
|
|
||||||
options.skynet = {
|
options.skynet = {
|
||||||
|
|
|
@ -10,6 +10,7 @@ Notes:
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
|
config,
|
||||||
lib,
|
lib,
|
||||||
nodes,
|
nodes,
|
||||||
...
|
...
|
||||||
|
@ -26,6 +27,7 @@ Notes:
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
../applications/grafana.nix
|
../applications/grafana.nix
|
||||||
|
../applications/prometheus.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
deployment = {
|
deployment = {
|
||||||
|
@ -50,6 +52,32 @@ in {
|
||||||
sudo_groups = groups;
|
sudo_groups = groups;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.skynet.prometheus.server = {
|
||||||
|
host = {
|
||||||
|
ip = ip_pub;
|
||||||
|
name = name;
|
||||||
|
};
|
||||||
|
|
||||||
|
port = 9001;
|
||||||
|
|
||||||
|
servers = [
|
||||||
|
"agentjones"
|
||||||
|
"cadie"
|
||||||
|
"earth"
|
||||||
|
"galatea"
|
||||||
|
"gir"
|
||||||
|
"glados"
|
||||||
|
"kitt"
|
||||||
|
"marvin"
|
||||||
|
"neuromancer"
|
||||||
|
"optimus"
|
||||||
|
"skynet"
|
||||||
|
"vendetta"
|
||||||
|
"vigil"
|
||||||
|
"wheatly"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
services.skynet.grafana = {
|
services.skynet.grafana = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -57,6 +85,12 @@ in {
|
||||||
ip = ip_pub;
|
ip = ip_pub;
|
||||||
name = name;
|
name = name;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# maybe just do provision config directly ?
|
||||||
|
datasource = {
|
||||||
|
name = "Prometheus";
|
||||||
|
url = "localhost:${toString config.services.prometheus.port}";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
skynet_dns.records = [
|
skynet_dns.records = [
|
||||||
|
|
Loading…
Reference in a new issue