Last active
October 1, 2018 01:22
-
-
Save gkumarau/daf3f21da7d88ebe7caf5e1cda1db502 to your computer and use it in GitHub Desktop.
This file list some sample services in three different environments to monitor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"environments": [{ | |
"name": "prod", | |
"services": [ | |
"https://service1.prod.example.com", | |
"https://service2.prod.example.com", | |
"https://service3.prod.example.com", | |
"https://service4.prod.example.com" | |
] | |
}, | |
{ | |
"name": "test", | |
"services": [ | |
"https://service1.test.example.com", | |
"https://service2.test.example.com", | |
"https://service3.test.example.com", | |
"https://service4.test.example.com" | |
] | |
}, | |
{ | |
"name": "dev", | |
"services": [ | |
"https://service1.dev.example.com", | |
"https://service2.dev.example.com", | |
"https://service3.dev.example.com", | |
"https://service4.dev.example.com" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment