blob: 32cbefb400f893e6999b2bca907b893fb32443f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
= ranch:info(3)
== Name
ranch:info - Overview of Ranch listeners
== Description
[source,erlang]
----
info() -> [{Ref, Info}]
info(Ref) -> Info
Info :: [{Key :: atom(), Value :: any()}]
----
Overview of Ranch listeners.
== Arguments
Ref::
The listener name.
== Return value
Returns detailed information about one or all
Ranch listeners. The following keys are returned:
pid:: Pid of the listener's top-level supervisor.
status:: Listener status, either running or suspended.
ip:: Interface Ranch listens on.
port:: Port number Ranch listens on.
num_acceptors:: Number of acceptor processes.
max_connections:: Maximum number of connections.
active_connections:: Number of active connections.
all_connections:: Number of connections, including those removed from the count.
transport:: Transport module.
transport_options:: Transport options.
protocol:: Protocol module.
protocol_options:: Protocol options.
// @todo I mistakenly removed the num_acceptors key,
// it should be added back.
== Examples
.Get information about all listeners
[source,erlang]
----
AllInfo = ranch:info().
----
.Get information about a specific listener
[source,erlang]
----
Info = ranch:info(example).
----
== See also
link:man:ranch:get_addr(3)[ranch:get_addr(3)],
link:man:ranch:get_port(3)[ranch:get_port(3)],
link:man:ranch:procs(3)[ranch:procs(3)],
link:man:ranch(3)[ranch(3)]
|