 0aae3fda06
			
		
	
	
		0aae3fda06
		
	
	
	
	
		
			
			Fixes #30891 * Upgrade `graphite-web`, `carbon` and `whisper` from 1.0.2 -> 1.1.3. * Replaced the deprecated `pythonPackages.graphite_influxdb` with `pythonPackages.influxgraph.` * Renamed `pythonPackages.graphite_web` to `pythonPackages.graphite-web` to be consistent with the Python package name. * Replaced the unmaintained `pythonPackages.graphite_pager` with `pythonPackages.graphitepager` * Moved all new packages from `python-packages.nix` to `pkgs/development/python-modules`
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| import ./make-test.nix ({ pkgs, ... } :
 | |
| {
 | |
|   name = "graphite";
 | |
|   nodes = {
 | |
|     one =
 | |
|       { ... }: {
 | |
|         virtualisation.memorySize = 1024;
 | |
|         time.timeZone = "UTC";
 | |
|         services.graphite = {
 | |
|           web.enable = true;
 | |
|           api = {
 | |
|             enable = true;
 | |
|             port = 8082;
 | |
|             finders = [ pkgs.python27Packages.influxgraph ];
 | |
|           };
 | |
|           carbon.enableCache = true;
 | |
|           seyren.enable = true;
 | |
|           pager.enable = true;
 | |
|           beacon.enable = true;
 | |
|         };
 | |
|       };
 | |
|   };
 | |
| 
 | |
|   testScript = ''
 | |
|     startAll;
 | |
|     $one->waitForUnit("default.target");
 | |
|     $one->waitForUnit("graphiteWeb.service");
 | |
|     $one->waitForUnit("graphiteApi.service");
 | |
|     $one->waitForUnit("graphitePager.service");
 | |
|     $one->waitForUnit("graphite-beacon.service");
 | |
|     $one->waitForUnit("carbonCache.service");
 | |
|     $one->waitForUnit("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->waitForOpenPort(8080);
 | |
|     $one->waitForOpenPort(2003);
 | |
|     $one->succeed("echo \"foo 1 `date +%s`\" | nc -N localhost 2003");
 | |
|     $one->waitUntilSucceeds("curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2");
 | |
|   '';
 | |
| })
 |