Check_depenedencies support for OSS users

Based on the new release, the Sensu Go 6.x supports the check_dependencies features although they already released it as part of an enhanced commercial filtering engine, it is available to anyone using the commercial distribution.

For OSS users, the developer advocates will be sharing one or more patterns for accomplishing check dependency like filtering, using OSS features like filter javascript assets, API keys, and the events API.

Is it already out for the OSS users?

reference:

1 Like

Any updates? Can someone share a real example with sensu.CheckDependencies and sensu oss version?

Something like this, but for sensugo:

   {
        "checks": {
            "check-zookeeper_pending_syncs": {
                "command": "check-zookeeper --check pending_syncs -c 10 -w 10",
                "dependencies": [
                    "check-zookeeper_ruok"
                ],
                "handlers": [
                    "slack",
                    "email"
                ],
                "high_flap_threshold": 60,
                "interval": 60,
                "low_flap_threshold": 20,
                "occurrences": 3,
                "refresh": 59,
                "standalone": false,
                "subscribers": [
                    "zookeeper"
                ],
                "timeout": 30
            }
        }
    }
1 Like