cloudstore-developers
Changes
response-generator/README.md 18(+14 -4)
Details
response-generator/README.md 18(+14 -4)
diff --git a/response-generator/README.md b/response-generator/README.md
index 9cfa4c8..9740a50 100644
--- a/response-generator/README.md
+++ b/response-generator/README.md
@@ -3,7 +3,7 @@
[Response generator](https://arcane-meadow-6418.herokuapp.com/) is a web application that simulates response times according to chosen distribution.
Supported distributions are:
-- [uniform](http://en.wikipedia.org/wiki/Uniform_distribution_%28continuous%29)
+- [uniform](http://en.wikipedia.org/wiki/Uniform_distribution_%28continuous%29)
- constant
- [gauss](http://en.wikipedia.org/wiki/Normal_distribution)
- [gamma](http://en.wikipedia.org/wiki/Gamma_distribution)
@@ -20,11 +20,21 @@ To each distribution we added a **k** parameter which shifts the end response ti
Response generator is designed to be used inside real application as a API call.
Each distribution has it's own URL and accepts it's own parameters, parameter **k** and **test=[true|false]** parameter:
-Use ```test=true``` if you want to just get the value.
+* ```/uniform?a=1&b=2&k=3&test=true```
+* ```/constant?c=1&test=true```
+* ```/expo?lambda=1&k=0&test=true```
+* ```/log?mu=1&sigma=2&k=0&test=true```
+* ```/gamma?alpha=1&beta=2&k=0&test=true```
+* ```/gauss?mu=10&sigma=2&k=0&test=true```
+* ```/log?mu=1&sigma=2&k=0&test=true```
+* ```/pareto?alpha=1&k=0&test=true```
+* ```/weibull?alpha=1&beta=2&k=0&test=true```
-Use ```test=false``` if you want to actually make a delay
+Use ```test=true``` if you want to just print the value.
-**Examples:**
+Use ```test=false``` if you want to actually make a delay.
+
+### Examples
* Gauss distribution has **mu** and **sigma** parameters and we want to just get the value: