mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
30 lines
697 B
Nix
30 lines
697 B
Nix
|
import ./make-test.nix {
|
||
|
name = "prometheus";
|
||
|
|
||
|
nodes = {
|
||
|
one = { config, pkgs, ... }: {
|
||
|
services.prometheus = {
|
||
|
enable = true;
|
||
|
globalConfig = {
|
||
|
labels = { foo = "bar"; };
|
||
|
};
|
||
|
scrapeConfigs = [{
|
||
|
job_name = "prometheus";
|
||
|
target_groups = [{
|
||
|
targets = [ "127.0.0.1:9090" ];
|
||
|
labels = { instance = "localhost"; };
|
||
|
}];
|
||
|
}];
|
||
|
rules = [ ''testrule = count(up{job="prometheus"})'' ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
startAll;
|
||
|
$one->waitForUnit("prometheus.service");
|
||
|
$one->waitForOpenPort(9090);
|
||
|
$one->succeed("curl -s http://127.0.0.1:9090/metrics");
|
||
|
'';
|
||
|
}
|