Skip to main content

Installation

1Install the CLI
wget  https://github.com/flanksource/canary-checker/releases/latest/download/canary-checker_linux_amd64   \
-O /usr/bin/canary-checker && \
chmod +x /usr/bin/canary-checker
2Create a canary definition
canary.yaml
apiVersion: canaries.flanksource.com/v1
kind: Canary
metadata:
name: http-check
spec:
interval: 30
http:
- name: basic-check
url: https://httpbin.demo.aws.flanksource.com/status/200
- name: failing-check
url: https://httpbin.demo.aws.flanksource.com/status/500

3Run the check locally
canary-checker run canary.yaml