Slide 89
Slide 89 text
Traefik configura-on example
{
service1: {
backend: 'http://service1_endpoint',
circuit_breaker: "LatencyAtQuantileMS(50.0) > 1000 ||
ResponseCodeRatio(500, 600, 0, 600) > 0.30 ||
NetworkErrorRatio() > 0.10",
},
service2: {
backend: 'http://service2_endpoint',
circuit_breaker: "LatencyAtQuantileMS(50.0) > 3000 ||
ResponseCodeRatio(500, 600, 0, 600) > 0.10 ||
NetworkErrorRatio() > 0.10",
},
}
SRE NEXT 2020 (Jan 25, 2020) / Takayuki Watanabe 89