mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
36 lines
910 B
Nix
36 lines
910 B
Nix
import ./make-test.nix ({ pkgs, ... } : {
|
|
name = "cadvisor";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ offline ];
|
|
};
|
|
|
|
nodes = {
|
|
machine = { ... }: {
|
|
services.cadvisor.enable = true;
|
|
};
|
|
|
|
influxdb = { lib, ... }: with lib; {
|
|
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");
|
|
|
|
# create influxdb database
|
|
$influxdb->succeed(q~
|
|
curl -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE root"
|
|
~);
|
|
|
|
$influxdb->waitForUnit("cadvisor.service");
|
|
$influxdb->succeed("curl http://localhost:8080/containers/");
|
|
'';
|
|
})
|