forked from DGNum/stateless-uptime-kuma
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 {
|
||||
builder = (
|
||||
node: module: {
|
||||
monitors = {
|
||||
${prefix + node} = {
|
||||
monitors = let
|
||||
hostname = mkHost node module.config;
|
||||
in {
|
||||
${prefix + hostname} = {
|
||||
type = "ping";
|
||||
inherit tags;
|
||||
hostname = mkHost node module.config;
|
||||
inherit tags hostname;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue