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

89 lines
2.4 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).
{ config, pkgs, ... }:
let
vmPort = 8428;
vs = config.vault-secrets.secrets;
2022-07-29 13:02:03 +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?
# Additional packages
environment.systemPackages = with pkgs; [ ];
2022-10-29 13:06:37 +02:00
networking.firewall.allowedTCPPorts = [ vmPort config.services.grafana.settings.server.http_port ];
2021-12-02 16:34:48 +01:00
networking.firewall.allowedUDPPorts = [ vmPort ];
services.victoriametrics = {
enable = true;
listenAddress = ":${toString vmPort}";
# Data Retention period in months
retentionPeriod = 12;
};
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 = [
2022-07-30 12:22:19 +02:00
{
job_name = "nginx";
static_configs = [
{
targets = [ "nginx.olympus:9113" ];
labels.app = "nginx";
}
];
}
2022-07-29 13:02:03 +02:00
{
job_name = "synapse";
metrics_path = "/_synapse/metrics";
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";
}];
}
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 = {
domain = "grafana.0x76.dev";
root_url = "https://grafana.0x76.dev";
http_addr = "0.0.0.0";
http_port = 2342;
};
security.admin_password = "$__file{${vs.grafana}/password}";
};
2021-12-02 16:34:48 +01:00
};
}