Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plugins/in_cpu/in_cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
#include <msgpack.h>
#include <fluent-bit/flb_input.h>
#include <fluent-bit/flb_config.h>
#include <fluent-bit/in_cpu.h>

#include "in_cpu.h"

/* Retrieve CPU load from the system (through ProcFS) */
static inline double proc_cpu_load()
Expand Down
3 changes: 2 additions & 1 deletion plugins/in_kmsg/in_kmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
#include <inttypes.h>

#include <msgpack.h>
#include <fluent-bit/in_kmsg.h>
#include <fluent-bit/flb_input.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_engine.h>

#include "in_kmsg.h"

/*
* Note: Functions timeval_diff() and in_kmsg_boot_time() are based
* on syslog-ng-3.5 source code.
Expand Down
3 changes: 2 additions & 1 deletion plugins/in_xbee/in_xbee.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
#include <unistd.h>

#include <xbee.h>
#include <fluent-bit/in_xbee.h>
#include <fluent-bit/flb_input.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_engine.h>

#include "in_xbee.h"

/*
* We need to declare the xbee_init() function here as for some reason the
* libxbee-v3 on prepare.h file is not exporting the symbol or something
Expand Down