summaryrefslogtreecommitdiffstats
path: root/logsmanagement/rrd_api/rrd_api_mqtt.h
blob: 13c5cff3dbceba6d7289c0eda08490789a72c47a (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
// SPDX-License-Identifier: GPL-3.0-or-later

/** @file  rrd_api_mqtt.h
 *  @brief Incudes the structure and function definitions 
 *         for the mqtt log charts.
 */

#ifndef RRD_API_MQTT_H_
#define RRD_API_MQTT_H_

#include "daemon/common.h"

struct File_info;

typedef struct Chart_data_mqtt chart_data_mqtt_t;

#include "../file_info.h"
#include "../circular_buffer.h"

#include "rrd_api.h"

struct Chart_data_mqtt {

    time_t last_update;

    /* Number of collected log records */
    collected_number num_lines;

    /* MQTT metrics - Topic */
    struct Chart_str cs_topic;
    // Special case: Topic dimension and number are part of Mqtt_metrics_t
};

void mqtt_chart_init(struct File_info *p_file_info);
void mqtt_chart_update(struct File_info *p_file_info);

#endif // RRD_API_MQTT_H_