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";
|
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-17 19:51:41 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
nodes = {
|
|
|
|
netdata =
|
2018-07-20 20:56:59 +00:00
|
|
|
{ pkgs, ... }:
|
2017-10-17 19:51:41 -04:00
|
|
|
{
|
2023-08-05 17:52:52 +08:00
|
|
|
environment.systemPackages = with pkgs; [ curl jq netdata ];
|
2024-03-24 16:59:24 +01:00
|
|
|
services.netdata = {
|
|
|
|
enable = true;
|
|
|
|
python.recommendedPythonPackages = true;
|
2024-11-15 18:02:26 -05:00
|
|
|
|
|
|
|
configDir."apps_groups.conf" = pkgs.writeText "apps_groups.conf" ''
|
|
|
|
netdata_test: netdata
|
|
|
|
'';
|
2024-03-24 16:59:24 +01:00
|
|
|
};
|
2017-10-17 19:51:41 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
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/")
|
2019-12-08 14:06:25 +03: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-17 19:51:41 -04:00
|
|
|
# apps.plugin has elevated capabilities.
|
2024-11-15 18:02:26 -05:00
|
|
|
url = "http://localhost:19999/api/v1/data?chart=user.root_disk_physical_io"
|
2023-10-28 14:43:19 +00:00
|
|
|
filter = '[.data[range(10)][2]] | add | . < 0'
|
2019-11-24 22:26:32 +02:00
|
|
|
cmd = f"curl -s {url} | jq -e '{filter}'"
|
|
|
|
netdata.wait_until_succeeds(cmd)
|
2023-08-05 17:52:52 +08:00
|
|
|
|
|
|
|
# check if the control socket is available
|
|
|
|
netdata.succeed("sudo netdatacli ping")
|
2024-11-15 18:02:26 -05:00
|
|
|
|
|
|
|
# check that custom groups in apps_groups.conf are used.
|
|
|
|
# if > 0, successful. verifies that user-specified apps_group.conf
|
|
|
|
# is used.
|
|
|
|
url = "http://localhost:19999/api/v1/data?chart=app.netdata_test_cpu_utilization"
|
|
|
|
filter = '[.data[range(10)][2]] | add | . > 0'
|
|
|
|
cmd = f"curl -s {url} | jq -e '{filter}'"
|
|
|
|
netdata.wait_until_succeeds(cmd, timeout=30)
|
2017-10-17 19:51:41 -04:00
|
|
|
'';
|
|
|
|
})
|