Skip to content

Commit

Permalink
add sample backends.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Graff committed May 18, 2017
1 parent bd536a3 commit 7a04678
Showing 1 changed file with 67 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
[
{
"cname": "atlas-example.$(region).$(env).example.com",
"vip": "atlas_backend-example:7001",
"deployment": "example",
"dataset": "example",
"port": 7001,
"environments": [
"test"
],
"accounts": [
"12345"
],
"regions": [
"us-east-1"
],
"step": "PT1M",
"publishLatency": "PT5M",
"retention": "P2W",
"description": "Contains synthetic data used for documentation examples and demos."
},
{
"cname": "atlas-global.$(env).example.com",
"vip": "atlas_global-main:7001",
"deployment": "main",
"dataset": "global",
"port": 7001,
"environments": [
"test",
"prod"
],
"accounts": [
"12345",
"23456"
],
"regions": null,
"step": "PT1M",
"publishLatency": "PT5M",
"retention": "P2W",
"description": "Global endpoint that aggregates data from all supported regions."
},
{
"cname": "atlas-main.$(region).$(env).example.com",
"vip": "atlas_regional-$(deployment):7001",
"deployment": "main",
"dataset": "regional",
"port": 7001,
"environments": [
"test",
"prod"
],
"accounts": [
"34567",
"45678"
],
"regions": [
"us-west-1",
"us-west-2",
"us-east-1",
"eu-west-1"
],
"step": "PT1M",
"publishLatency": "PT5M",
"retention": "P2W",
"description": "Main regional endpoint for the primary account with data for $(env).$(region)."
}
]

0 comments on commit 7a04678

Please sign in to comment.