-
Notifications
You must be signed in to change notification settings - Fork 2
/
finch_sla.json
43 lines (42 loc) · 989 Bytes
/
finch_sla.json
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
35
36
37
38
39
40
41
42
43
[
{
"sla": "95% of the POST requests to Users should be under 150ms",
"endpoint": "/users",
"method": "POST",
"metric": "latency",
"threshold": 150,
"agreement": 95
},
{
"sla": "95% of the POST requests to Recipes should be under 2000ms",
"endpoint": "/recipes",
"method": "POST",
"metric": "latency",
"threshold": 2000,
"agreement": 95
},
{
"sla": "95% of the POST requests to Houses should be under 200ms",
"endpoint": "/houses",
"method": "POST",
"metric": "latency",
"threshold": 200,
"agreement": 95
},
{
"sla": "95% of the POST requests to Schedules should be under 1500ms",
"endpoint": "/schedules",
"method": "POST",
"metric": "latency",
"threshold": 1500,
"agreement": 95
},
{
"sla": "95% of GET requests to recipes should be under 100ms",
"endpoint": "/recipes",
"method": "GET",
"metric": "latency",
"threshold": 100,
"agreement": 95
}
]