File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ Example:
2121-module(my_proxy_instrumenter).
2222
2323setup() ->
24- prometheus_quantile_summary:declare([ {name, request_size_bytes} ,
25- { help, \"Request size in bytes.\"}] ),
26- prometheus_quantile_summary:declare([ {name, response_size_bytes} ,
27- { help, \"Response size in bytes.\"}] ).
24+ prometheus_quantile_summary:declare(# {name => request_size_bytes,
25+ help => \"Request size in bytes.\"}),
26+ prometheus_quantile_summary:declare(# {name => response_size_bytes,
27+ help => \"Response size in bytes.\"}).
2828
2929observe_request(Size) ->
3030 prometheus_quantile_summary:observe(request_size_bytes, Size).
@@ -45,7 +45,7 @@ request_size_bytes\{quantile=\"0.95\"\}
4545```
4646
4747### Configuration
48- See ` t:ddskerl_ets:opts/0` for configuration options. These need to be passed as a proplist .
48+ It takes `error` and `bound` as in ` t:ddskerl_ets:opts/0`.
4949""" ).
5050
5151-define (WIDTH , 16 ).
You can’t perform that action at this time.
0 commit comments