fix: ping probes name
This commit is contained in:
parent
8769cf0622
commit
6bd649a7f7
1 changed files with 5 additions and 4 deletions
|
@ -37,11 +37,12 @@ rec {
|
||||||
fromHive {
|
fromHive {
|
||||||
builder = (
|
builder = (
|
||||||
node: module: {
|
node: module: {
|
||||||
monitors = {
|
monitors = let
|
||||||
${prefix + node} = {
|
|
||||||
type = "ping";
|
|
||||||
inherit tags;
|
|
||||||
hostname = mkHost node module.config;
|
hostname = mkHost node module.config;
|
||||||
|
in {
|
||||||
|
${prefix + hostname} = {
|
||||||
|
type = "ping";
|
||||||
|
inherit tags hostname;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue