Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hobord/infra
https://github.com/hobord/infra
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hobord/infra
- Owner: hobord
- Created: 2019-08-12T11:55:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-29T10:23:41.000Z (over 5 years ago)
- Last Synced: 2024-06-20T14:16:53.656Z (8 months ago)
- Language: Go
- Size: 4.85 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## http mock
- It has some route
- All route can get some get query parameters
- Create a session if not exists
- Save cookieENV:
- PORT: 8100
- SESSION_GRPC_SERVER: 10.20.35.111:30645
- SESSION_TTL: 0
- SESSION_COOKIE_KEY: session
- SESSION_REQUEST_GET_KEY: session
- SESSION_REQUEST_POST_KEY: session
-flow
- call the peeling module (send the request url, and session id, requestId) response ok
- call redirection module, if redirect then redirect and send session cookie
- check the reverse proxy config and get content by rules (send session id) and response with result and session cookie and request id as response id.## peeling module
- It is getting the session id and request url, and requestid
- get the the specific parameters save into the session## Redirection module
- getting url, requestID
- using redirection stack by requestId
- make logic
- response (redirect to url)## Stress test
https://github.com/tsenart/vegeta
```
echo "GET http://127.0.0.1:8100/" | vegeta attack -duration=60s -workers=250 | tee results.bin | vegeta report
vegeta report -type=json results.bin > metrics.json
cat results.bin | vegeta plot > plot.html
cat results.bin | vegeta report -type="hist[0,100ms,200ms,300ms]"
``````
echo 'GET http://localhost:8100' | \
vegeta attack -rate 5000 -duration 10m | vegeta encode | \
jaggr @count=rps \
hist\[100,200,300,400,500\]:code \
p25,p50,p95:latency \
sum:bytes_in \
sum:bytes_out | \
jplot rps+code.hist.100+code.hist.200+code.hist.300+code.hist.400+code.hist.500 \
latency.p95+latency.p50+latency.p25 \
bytes_in.sum+bytes_out.sum
```