summaryrefslogtreecommitdiffstats
path: root/src/collectors/common-contexts/system.io.h
blob: 84440c9b8479c6b9a78522f317d73f0c50f4e672 (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
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef NETDATA_SYSTEM_IO_H
#define NETDATA_SYSTEM_IO_H

#include "common-contexts.h"

static inline void common_system_io(uint64_t read_bytes, uint64_t write_bytes, int update_every) {
    static RRDSET *st_io = NULL;
    static RRDDIM *rd_in = NULL, *rd_out = NULL;

    if(unlikely(!st_io)) {
        st_io = rrdset_create_localhost(
            "system"
            , "io"
            , NULL
            , "disk"
            , NULL
            , "Disk I/O"
            , "KiB/s"
            , _COMMON_PLUGIN_NAME
            , _COMMON_PLUGIN_MODULE_NAME
            , NETDATA_CHART_PRIO_SYSTEM_IO
            , update_every
            , RRDSET_TYPE_AREA
        );

        rd_in  = rrddim_add(st_io, "in",  "reads",  1, 1024, RRD_ALGORITHM_INCREMENTAL);
        rd_out = rrddim_add(st_io, "out", "writes", -1, 1024, RRD_ALGORITHM_INCREMENTAL);
    }

    // this always have to be in base units, so that exporting sends base units to other time-series db
    rrddim_set_by_pointer(st_io, rd_in, (collected_number)read_bytes);
    rrddim_set_by_pointer(st_io, rd_out, (collected_number)write_bytes);
    rrdset_done(st_io);
}

#endif //NETDATA_SYSTEM_IO_H