An open API service indexing awesome lists of open source software.

https://github.com/openstatushq/json-schema

OpenStatus Synthetic Monitoring Schema
https://github.com/openstatushq/json-schema

json-schema synthetic-monitoring

Last synced: about 1 month ago
JSON representation

OpenStatus Synthetic Monitoring Schema

Awesome Lists containing this project

README

          

# OpenStatus Synthetic Monitoring Schema

Use this schema to define synthetic monitoring checks in OpenStatus.

```yaml
# yaml-language-server: $schema=https://www.openstatus.dev/schema.json

monitor1:
name: "Test"
description: "This is a test"
frequency: "1m"
active: true
regions: ["iad"]
retry: 3
kind: http
request:
url: https://openstat.us
method: GET
headers:
User-Agent: OpenStatus
assertions:
- kind: statusCode
compare: eq
target: 200
```