Skip to content

Commit 486bfc3

Browse files
Fix: Update circuit breaker documentation (removed rate-limit.md)
1 parent 4bc5264 commit 486bfc3

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

content/en/docs/userguide/circuit_breaker.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,22 @@ kubectl exec -it deploy/fortio -- \
148148
fortio load -c 2 -qps 20 -t 30s http://test-service
149149
```
150150

151+
### Sample Test Results
152+
153+
#### Without Circuit Breaker
154+
```
155+
IP addresses distribution: 10.96.230.153:80: 5
156+
Code 200 : 3000 (100.0 %)
157+
```
158+
159+
#### With Circuit Breaker
160+
```
161+
IP addresses distribution: 10.96.230.153:80: 5
162+
Code 200 : 1914 (63.8%)
163+
Code 503 : 1086 (36.2%)
164+
```
165+
166+
151167
### Analyzing Results
152168

153169
#### 6.1 Fortio Results
@@ -210,4 +226,4 @@ kubectl describe destinationrule test-circuit-breaker
210226
```bash
211227
kubectl logs deploy/test-service
212228
kubectl logs deploy/fortio
213-
```
229+
```

0 commit comments

Comments
 (0)