diff --git a/ops/nixos/swann/default.nix b/ops/nixos/swann/default.nix index ca0d1fa4ac..4872501126 100644 --- a/ops/nixos/swann/default.nix +++ b/ops/nixos/swann/default.nix @@ -214,5 +214,26 @@ in { name_servers='127.0.0.53' ''; + services.prometheus.exporters.smokeping = { + enable = true; + hosts = [ + "8.8.8.8" # Google Public DNS + "youtube.com" "ads.google.com" "google.com" + + "1.1.1.1" # Cloudflare DNS + + "twitter.com" + + "store.steampowered.com" + "api.steampowered.com" + + "prod.euw1.lol.riotgames.com" # League of Legends EUW + + "eu.battle.net" + "185.60.112.157" "185.60.112.158" # Diablo 3/HotS/Hearthstone + "185.60.114.159" # Overwatch + ]; + }; + system.stateVersion = "21.03"; }