summaryrefslogtreecommitdiff
path: root/src/couch_log/src/couch_log_monitor.erl
blob: d7620e2907eb1f5d5319f6eb6ac00988f79b40ec (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
%   http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.

-module(couch_log_monitor).

-behaviour(gen_server).
-vsn(1).


-export([
    start_link/0
]).

-export([
    init/1,
    terminate/2,
    handle_call/3,
    handle_cast/2,
    handle_info/2,
    code_change/3
]).


-define(HANDLER_MOD, couch_log_error_logger_h).


start_link() ->
    gen_server:start_link(?MODULE, [], []).


% OTP_RELEASE defined in OTP >= 21 only
-ifdef(OTP_RELEASE).

init(_) ->
    % See https://erlang.org/doc/man/error_logger.html#add_report_handler-1
    % however that call doesn't call a supervised handler so we do the same
    % thing add_report_handler/1 does but call gen_event:add_sup_handler/3
    % instead of gen_event:add_handler/3.
    Opts =  #{level => info, filter_default => log},
    _ = logger:add_handler(error_logger, error_logger, Opts),
    ok = gen_event:add_sup_handler(error_logger, ?HANDLER_MOD, []),
    {ok, nil}.

-else.

init(_) ->
    error_logger:start(),
    ok = gen_event:add_sup_handler(error_logger, ?HANDLER_MOD, []),
    {ok, nil}.

-endif.


terminate(_, _) ->
    ok.


handle_call(_Msg, _From, St) ->
    {reply, ignored, St}.


handle_cast(_Msg, St) ->
    {noreply, St}.


handle_info({gen_event_EXIT, ?HANDLER_MOD, Reason}, St) ->
    {stop, Reason, St};


handle_info(_Msg, St) ->
    {noreply, St}.


code_change(_, State, _) ->
    {ok, State}.