| 
									
										
										
										
											2017-10-17 19:51:41 -04:00
										 |  |  | # This test runs netdata and checks for data via apps.plugin | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 22:26:32 +02:00
										 |  |  | import ./make-test-python.nix ({ pkgs, ...} : { | 
					
						
							| 
									
										
										
										
											2017-10-17 19:51:41 -04:00
										 |  |  |   name = "netdata"; | 
					
						
							|  |  |  |   meta = with pkgs.stdenv.lib.maintainers; { | 
					
						
							|  |  |  |     maintainers = [ cransom ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   nodes = { | 
					
						
							|  |  |  |     netdata = | 
					
						
							| 
									
										
										
										
											2018-07-20 20:56:59 +00:00
										 |  |  |       { pkgs, ... }: | 
					
						
							| 
									
										
										
										
											2017-10-17 19:51:41 -04:00
										 |  |  |         { | 
					
						
							|  |  |  |           environment.systemPackages = with pkgs; [ curl jq ]; | 
					
						
							|  |  |  |           services.netdata.enable = true; | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   testScript = ''
 | 
					
						
							| 
									
										
										
										
											2019-11-24 22:26:32 +02:00
										 |  |  |     start_all() | 
					
						
							| 
									
										
										
										
											2017-10-17 19:51:41 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 22:26:32 +02:00
										 |  |  |     netdata.wait_for_unit("netdata.service") | 
					
						
							| 
									
										
										
										
											2018-08-05 00:05:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-26 13:38:58 +02:00
										 |  |  |     # wait for the service to listen before sending a request | 
					
						
							| 
									
										
										
										
											2019-11-24 22:26:32 +02:00
										 |  |  |     netdata.wait_for_open_port(19999) | 
					
						
							| 
									
										
										
										
											2018-08-26 13:38:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-05 00:05:48 +02:00
										 |  |  |     # check if the netdata main page loads. | 
					
						
							| 
									
										
										
										
											2019-11-24 22:26:32 +02:00
										 |  |  |     netdata.succeed("curl --fail http://localhost:19999/") | 
					
						
							| 
									
										
										
										
											2018-08-05 00:05:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # check if netdata can read disk ops for root owned processes. | 
					
						
							|  |  |  |     # if > 0, successful. verifies both netdata working and | 
					
						
							| 
									
										
										
										
											2017-10-17 19:51:41 -04:00
										 |  |  |     # apps.plugin has elevated capabilities. | 
					
						
							| 
									
										
										
										
											2019-11-24 22:26:32 +02:00
										 |  |  |     url = "http://localhost:19999/api/v1/data\?chart=users.pwrites" | 
					
						
							|  |  |  |     filter = '[.data[range(10)][.labels | indices("root")[0]]] | add | . > 0' | 
					
						
							|  |  |  |     cmd = f"curl -s {url} | jq -e '{filter}'" | 
					
						
							|  |  |  |     netdata.wait_until_succeeds(cmd) | 
					
						
							| 
									
										
										
										
											2017-10-17 19:51:41 -04:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | }) |