summaryrefslogtreecommitdiffstats
path: root/nixos/tests/graphite.nix
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-03-20 17:02:58 +0100
committerJon <jonringer@users.noreply.github.com>2020-03-22 22:47:53 -0700
commit37ffa6ea51f3a3d7e43736b9a5ce3c149dd9d1ee (patch)
treed284af944f500e0a8b0678c57ee9efd482b129eb /nixos/tests/graphite.nix
parenta268fcb02c105ec169a59aa4ca560a9432bea79a (diff)
nixos/griphite: Migrate to python3, drop graphite-pager
Diffstat (limited to 'nixos/tests/graphite.nix')
-rw-r--r--nixos/tests/graphite.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/nixos/tests/graphite.nix b/nixos/tests/graphite.nix
index ba3c73bb878d..71776a94cbd6 100644
--- a/nixos/tests/graphite.nix
+++ b/nixos/tests/graphite.nix
@@ -12,15 +12,19 @@ import ./make-test-python.nix ({ pkgs, ... } :
virtualisation.memorySize = 1024;
time.timeZone = "UTC";
services.graphite = {
- web.enable = true;
+ web = {
+ enable = true;
+ extraConfig = ''
+ SECRET_KEY = "abcd";
+ '';
+ };
api = {
enable = true;
port = 8082;
- finders = [ pkgs.python27Packages.influxgraph ];
+ finders = [ pkgs.python3Packages.influxgraph ];
};
carbon.enableCache = true;
- seyren.enable = true;
- pager.enable = true;
+ seyren.enable = false; # Implicitely requires openssl-1.0.2u which is marked insecure
beacon.enable = true;
};
};
@@ -31,16 +35,16 @@ import ./make-test-python.nix ({ pkgs, ... } :
one.wait_for_unit("default.target")
one.wait_for_unit("graphiteWeb.service")
one.wait_for_unit("graphiteApi.service")
- one.wait_for_unit("graphitePager.service")
one.wait_for_unit("graphite-beacon.service")
one.wait_for_unit("carbonCache.service")
- one.wait_for_unit("seyren.service")
# The services above are of type "simple". systemd considers them active immediately
# even if they're still in preStart (which takes quite long for graphiteWeb).
# Wait for ports to open so we're sure the services are up and listening.
one.wait_for_open_port(8080)
one.wait_for_open_port(2003)
one.succeed('echo "foo 1 `date +%s`" | nc -N localhost 2003')
- one.wait_until_succeeds("curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2")
+ one.wait_until_succeeds(
+ "curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
+ )
'';
})