2019-11-06 13:23:44 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... } : {
|
2014-12-28 19:21:41 +00:00
|
|
|
name = "cadvisor";
|
2021-01-10 19:08:30 +00:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2015-07-12 10:09:40 +00:00
|
|
|
maintainers = [ offline ];
|
|
|
|
};
|
2014-12-28 19:21:41 +00:00
|
|
|
|
|
|
|
nodes = {
|
2018-07-20 20:56:59 +00:00
|
|
|
machine = { ... }: {
|
2014-12-28 19:21:41 +00:00
|
|
|
services.cadvisor.enable = true;
|
|
|
|
};
|
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
influxdb = { lib, ... }: with lib; {
|
2014-12-28 19:21:41 +00:00
|
|
|
services.cadvisor.enable = true;
|
|
|
|
services.cadvisor.storageDriver = "influxdb";
|
|
|
|
services.influxdb.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-11-06 13:23:44 +00:00
|
|
|
testScript = ''
|
|
|
|
start_all()
|
|
|
|
machine.wait_for_unit("cadvisor.service")
|
2020-09-16 16:02:28 +00:00
|
|
|
machine.succeed("curl -f http://localhost:8080/containers/")
|
2014-12-28 19:21:41 +00:00
|
|
|
|
2019-11-06 13:23:44 +00:00
|
|
|
influxdb.wait_for_unit("influxdb.service")
|
2016-09-15 12:28:41 +00:00
|
|
|
|
|
|
|
# create influxdb database
|
2019-11-06 13:23:44 +00:00
|
|
|
influxdb.succeed(
|
2020-09-16 16:02:28 +00:00
|
|
|
'curl -f -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE root"'
|
2019-11-06 13:23:44 +00:00
|
|
|
)
|
2016-09-15 12:28:41 +00:00
|
|
|
|
2019-11-06 13:23:44 +00:00
|
|
|
influxdb.wait_for_unit("cadvisor.service")
|
2020-09-16 16:02:28 +00:00
|
|
|
influxdb.succeed("curl -f http://localhost:8080/containers/")
|
2014-12-28 19:21:41 +00:00
|
|
|
'';
|
2015-07-12 10:09:40 +00:00
|
|
|
})
|