summaryrefslogtreecommitdiffstats
path: root/fluent-bit/include/fluent-bit/flb_processor_plugin.h
blob: 39d1a18a376c1a468501041e3157dd031e5adfab (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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */

/*  Fluent Bit
 *  ==========
 *  Copyright (C) 2015-2022 The Fluent Bit Authors
 *
 *  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.
 */

#ifndef FLB_FILTER_PLUGIN_H
#define FLB_FILTER_PLUGIN_H

#include <fluent-bit/flb_info.h>
#include <fluent-bit/flb_processor.h>
#include <fluent-bit/flb_log.h>

#define flb_plg_log(ctx, level, fmt, ...)                                \
    if (flb_log_check_level(ctx->log_level, level))                      \
        flb_log_print(level, NULL, 0, "[processor:%s:%s] " fmt,          \
                      ctx->p->name,                                      \
                      flb_processor_instance_get_name(ctx), ##__VA_ARGS__)

#define flb_plg_error(ctx, fmt, ...) \
    flb_plg_log(ctx, FLB_LOG_ERROR, fmt, ##__VA_ARGS__)

#define flb_plg_warn(ctx, fmt, ...)  \
    flb_plg_log(ctx, FLB_LOG_WARN, fmt, ##__VA_ARGS__)

#define flb_plg_info(ctx, fmt, ...)  \
    flb_plg_log(ctx, FLB_LOG_INFO, fmt, ##__VA_ARGS__)

#define flb_plg_debug(ctx, fmt, ...) \
    flb_plg_log(ctx, FLB_LOG_DEBUG, fmt, ##__VA_ARGS__)

#define flb_plg_trace(ctx, fmt, ...) \
    flb_plg_log(ctx, FLB_LOG_TRACE, fmt, ##__VA_ARGS__)
#endif