mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 05:52:38 +00:00
21 lines
504 B
Python
21 lines
504 B
Python
|
|
# ENDPOINT = "http://10.0.2.2:8080"
|
|
ENDPOINT = "http://localhost:8080"
|
|
API_KEY = None
|
|
|
|
checks = [
|
|
{
|
|
"resource": "www.google.com",
|
|
"url": "http://www.google.com?q=foo#q=foo",
|
|
"environment": "Production",
|
|
"service": ["Google", "Search"]
|
|
},
|
|
{
|
|
"resource": "guardian-football",
|
|
"url": "http://www.guardian.co.uk/football",
|
|
"environment": "Production",
|
|
"service": ["theguardian.com", "Sport"],
|
|
"tags": ["football"]
|
|
},
|
|
]
|
|
|