| 
									
										
										
										
											2015-07-12 12:09:40 +02:00
										 |  |  | import ./make-test.nix ({ pkgs, ... } : { | 
					
						
							| 
									
										
										
										
											2014-12-28 20:21:41 +01:00
										 |  |  |   name = "cadvisor"; | 
					
						
							| 
									
										
										
										
											2015-07-12 12:09:40 +02:00
										 |  |  |   meta = with pkgs.stdenv.lib.maintainers; { | 
					
						
							|  |  |  |     maintainers = [ offline ]; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2014-12-28 20:21:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |   nodes = { | 
					
						
							| 
									
										
										
										
											2018-07-20 20:56:59 +00:00
										 |  |  |     machine = { ... }: { | 
					
						
							| 
									
										
										
										
											2014-12-28 20:21:41 +01:00
										 |  |  |       services.cadvisor.enable = true; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-20 20:56:59 +00:00
										 |  |  |     influxdb = { lib, ... }: with lib; { | 
					
						
							| 
									
										
										
										
											2014-12-28 20:21:41 +01:00
										 |  |  |       services.cadvisor.enable = true; | 
					
						
							|  |  |  |       services.cadvisor.storageDriver = "influxdb"; | 
					
						
							|  |  |  |       services.influxdb.enable = true; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   testScript = | 
					
						
							|  |  |  |     ''
 | 
					
						
							|  |  |  |       startAll; | 
					
						
							|  |  |  |       $machine->waitForUnit("cadvisor.service"); | 
					
						
							|  |  |  |       $machine->succeed("curl http://localhost:8080/containers/"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       $influxdb->waitForUnit("influxdb.service"); | 
					
						
							| 
									
										
										
										
											2016-09-15 21:28:41 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |       # create influxdb database | 
					
						
							|  |  |  |       $influxdb->succeed(q~ | 
					
						
							|  |  |  |         curl -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE root" | 
					
						
							|  |  |  |       ~); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-28 20:21:41 +01:00
										 |  |  |       $influxdb->waitForUnit("cadvisor.service"); | 
					
						
							|  |  |  |       $influxdb->succeed("curl http://localhost:8080/containers/"); | 
					
						
							|  |  |  |     '';
 | 
					
						
							| 
									
										
										
										
											2015-07-12 12:09:40 +02:00
										 |  |  | }) |