2017-10-18 01:51:41 +02:00
|
|
|
# This test runs netdata and checks for data via apps.plugin
|
|
|
|
|
2019-11-24 21:26:32 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
2017-10-18 01:51:41 +02:00
|
|
|
name = "netdata";
|
2021-01-10 20:08:30 +01:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2023-03-17 17:27:01 +01:00
|
|
|
maintainers = [ cransom raitobezarius ];
|
2017-10-18 01:51:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nodes = {
|
|
|
|
netdata =
|
2018-07-20 22:56:59 +02:00
|
|
|
{ pkgs, ... }:
|
2017-10-18 01:51:41 +02:00
|
|
|
{
|
2023-08-05 11:52:52 +02:00
|
|
|
environment.systemPackages = with pkgs; [ curl jq netdata ];
|
2024-03-24 16:59:24 +01:00
|
|
|
services.netdata = {
|
|
|
|
enable = true;
|
|
|
|
python.recommendedPythonPackages = true;
|
|
|
|
};
|
2017-10-18 01:51:41 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-24 21:26:32 +01:00
|
|
|
start_all()
|
2017-10-18 01:51:41 +02:00
|
|
|
|
2019-11-24 21:26:32 +01: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 21:26:32 +01: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 21:26:32 +01:00
|
|
|
netdata.succeed("curl --fail http://localhost:19999/")
|
2019-12-08 12:06:25 +01:00
|
|
|
netdata.succeed("sleep 4")
|
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-18 01:51:41 +02:00
|
|
|
# apps.plugin has elevated capabilities.
|
2023-10-28 16:43:19 +02:00
|
|
|
url = "http://localhost:19999/api/v1/data\?chart=user.root_disk_physical_io"
|
|
|
|
filter = '[.data[range(10)][2]] | add | . < 0'
|
2019-11-24 21:26:32 +01:00
|
|
|
cmd = f"curl -s {url} | jq -e '{filter}'"
|
|
|
|
netdata.wait_until_succeeds(cmd)
|
2023-08-05 11:52:52 +02:00
|
|
|
|
|
|
|
# check if the control socket is available
|
|
|
|
netdata.succeed("sudo netdatacli ping")
|
2017-10-18 01:51:41 +02:00
|
|
|
'';
|
|
|
|
})
|