aboutsummaryrefslogtreecommitdiff
path: root/src/mod_metrics_opt.erl
blob: 22b656775985af97f56cd4dc0df1ba14023eafed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%% Generated automatically
%% DO NOT EDIT: run `make options` instead

-module(mod_metrics_opt).

-export([ip/1]).
-export([port/1]).

-spec ip(gen_mod:opts() | global | binary()) -> {127,0,0,1} | inet:ip4_address().
ip(Opts) when is_map(Opts) ->
    gen_mod:get_opt(ip, Opts);
ip(Host) ->
    gen_mod:get_module_opt(Host, mod_metrics, ip).

-spec port(gen_mod:opts() | global | binary()) -> 1..1114111.
port(Opts) when is_map(Opts) ->
    gen_mod:get_opt(port, Opts);
port(Host) ->
    gen_mod:get_module_opt(Host, mod_metrics, port).