Skip to content

Commit dbc84c9

Browse files
authored
Merge pull request #41 from esl/fix_predefined_metrics
Fix predefined metrics
2 parents b444897 + 4b1547f commit dbc84c9

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

rebar.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
]}.
44

55
{ deps, [
6-
{amoc_arsenal, {git, "https://github.com/esl/amoc-arsenal.git", {branch, "main"}}},
6+
{amoc_arsenal, {git, "https://github.com/esl/amoc-arsenal.git", {branch, "stable"}}},
77
{escalus, "4.2.16"},
88
{jiffy, "1.1.2"},
99
{fusco, "0.1.1"}

rebar.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[{<<"amoc">>,{pkg,<<"amoc">>,<<"3.3.0">>},1},
33
{<<"amoc_arsenal">>,
44
{git,"https://github.com/esl/amoc-arsenal.git",
5-
{ref,"b6dc37c3c7b8ad439c87483939c91f784fd51d50"}},
5+
{ref,"a0a4115f8595e20f4b454b67f66beca60580aafd"}},
66
0},
77
{<<"amoc_rest">>,
88
{git,"https://github.com/esl/amoc_rest.git",

rel/app.config

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
%% -*-erlang-*-
2-
32
[
43
{kernel, [
54
{logger,
@@ -13,6 +12,11 @@
1312
formatter => {logger_formatter, #{template => [time, " [", level, "] ", msg, "\n"]}}
1413
}}
1514
]}]},
16-
{ssl, [{session_cb, amoc_always_null_ssl_session_cache}]}
17-
] .
18-
15+
{ssl, [{session_cb, amoc_always_null_ssl_session_cache}]},
16+
{amoc_arsenal,
17+
[{predefined_metrics, [{times, connection},
18+
{counters, connections},
19+
{counters, connection_retries},
20+
{counters, connection_failures}]}
21+
]}
22+
].

0 commit comments

Comments
 (0)