infrastructure/nixos/hosts/olympus/victoriametrics/configuration.nix

113 lines
3.2 KiB
Nix
Raw Normal View History

2021-12-02 16:34:48 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2023-05-05 13:21:53 +02:00
{ config, ... }:
2021-12-02 16:34:48 +01:00
let
vmPort = 8428;
2023-05-05 11:19:01 +02:00
grafanaDomain = config.meta.exposes.grafana.domain;
2023-05-05 10:04:38 +02:00
grafanaPort = config.meta.exposes.grafana.port;
2021-12-02 16:34:48 +01:00
vs = config.vault-secrets.secrets;
2023-05-04 13:08:10 +02:00
in {
2021-12-02 16:34:48 +01:00
imports = [ ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
2023-05-05 11:19:01 +02:00
networking.firewall.allowedTCPPorts = [ vmPort grafanaPort ];
2021-12-02 16:34:48 +01:00
networking.firewall.allowedUDPPorts = [ vmPort ];
services.victoriametrics = {
enable = true;
listenAddress = ":${toString vmPort}";
# Data Retention period in months
2023-05-07 18:42:36 +02:00
retentionPeriod = 36;
2021-12-02 16:34:48 +01:00
};
2022-07-29 13:02:03 +02:00
services.vmagent = {
enable = true;
openFirewall = true;
prometheusConfig = {
2022-07-30 12:22:19 +02:00
global = {
2022-07-29 21:43:49 +02:00
scrape_interval = "1m";
scrape_timeout = "30s";
};
2022-07-29 13:02:03 +02:00
scrape_configs = [
2023-05-05 13:21:53 +02:00
{
job_name = "kea";
static_configs = [{
targets = [ "dhcp.olympus:9547" ];
labels.app = "dhcp";
}];
}
2022-07-30 12:22:19 +02:00
{
job_name = "nginx";
2023-05-04 13:08:10 +02:00
static_configs = [{
targets = [ "nginx.olympus:9113" ];
labels.app = "nginx";
}];
2022-07-30 12:22:19 +02:00
}
2022-07-29 13:02:03 +02:00
{
job_name = "synapse";
static_configs = [{
targets = [ "synapse.olympus:9000" ];
labels.app = "synapse";
}];
}
2022-07-30 12:22:19 +02:00
{
job_name = "wireguard";
static_configs = [{
targets = [ "wireguard.olympus:9586" ];
labels.app = "wireguard";
}];
}
2023-05-07 18:42:36 +02:00
{
job_name = "ntfy";
static_configs = [{
targets = [ "ntfy.olympus:9090"];
labels.app = "ntfy";
}];
}
2022-07-29 13:02:03 +02:00
];
};
};
vault-secrets.secrets.grafana = {
2021-12-02 16:34:48 +01:00
user = "grafana";
group = "grafana";
};
services.grafana = {
enable = true;
2022-10-29 13:06:37 +02:00
settings = {
server = {
2023-05-05 11:19:01 +02:00
domain = grafanaDomain;
root_url = "https://${grafanaDomain}";
2022-10-29 13:06:37 +02:00
http_addr = "0.0.0.0";
2023-05-05 10:04:38 +02:00
http_port = grafanaPort;
2022-10-29 13:06:37 +02:00
};
security.admin_password = "$__file{${vs.grafana}/password}";
2023-05-05 11:19:01 +02:00
"auth.generic_oauth" = {
name = "Dex";
icon = "signin";
enabled = true;
allow_sign_up = true;
client_id = "grafana";
client_secret = "$__file{${vs.grafana}/dex_client_secret}";
scopes = toString [ "openid" "profile" "email" "groups" ];
auth_url = "https://dex.0x76.dev/auth";
token_url = "https://dex.0x76.dev/token";
api_url = "https://dex.0x76.dev/userinfo";
skip_org_role_sync = true;
auto_login = true;
};
2022-10-29 13:06:37 +02:00
};
2021-12-02 16:34:48 +01:00
};
}