-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathservers.json.example
More file actions
34 lines (34 loc) · 899 Bytes
/
servers.json.example
File metadata and controls
34 lines (34 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"servers": [
{
"id": "prod1",
"hostname": "sas1.example.com",
"apikey": "nss_your_api_key_here",
"maxDomains": 50,
"peakCps": 10,
"registrationPct": 0.8,
"seed": 12345,
"description": "Production Server 1 - Primary load testing environment"
},
{
"id": "prod2",
"hostname": "sas2.example.com",
"apikey": "nss_another_api_key_here",
"maxDomains": 100,
"peakCps": 20,
"registrationPct": 0.9,
"seed": 67890,
"description": "Production Server 2 - Secondary load testing environment"
},
{
"id": "staging",
"hostname": "staging.example.com",
"apikey": "nss_staging_api_key",
"maxDomains": 10,
"peakCps": 0.5,
"registrationPct": 0.75,
"seed": 11111,
"description": "Staging environment for testing - low load with decimal CPS"
}
]
}