diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-14 01:57:17 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-07-10 23:41:14 +0200 |
commit | 5d50f0426699a06b5720e10f1feaef35c8b59f57 (patch) | |
tree | 34641293f0eef907c89ffa1cb6d6b80b863106fc /src/plugins/influxdb.h | |
parent | be6447ca2038c84d2e946e27b897815e95c48e34 (diff) |
Improve writer/reader processing
- Handle indefinite number and kind of tags and fields for a metric
- Include only once header files
- Cleaning and ordering code
Change-Id: I14a4f0e6e1626971bff73ce7d9ac067bda69cfc4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/plugins/influxdb.h')
-rw-r--r-- | src/plugins/influxdb.h | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/plugins/influxdb.h b/src/plugins/influxdb.h index 6c775b7..859e101 100644 --- a/src/plugins/influxdb.h +++ b/src/plugins/influxdb.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015, 2016, 2017, 2018 "IoT.bzh" + * Copyright (C) 2018 "IoT.bzh" * Author "Romain Forlot" <romain.forlot@iot.bzh> * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,13 +15,31 @@ * limitations under the License. */ +#ifndef _INFLUXDB_H_ +#define _INFLUXDB_H_ + +#define _GNU_SOURCE #include "wrap-json.h" #include "tsdb.h" +#include "../utils/list.h" + +struct series_columns_t { + struct list *tags; + struct list *fields; +}; + +struct series_t { + const char *name; + struct series_columns_t series_columns; + uint64_t timestamp; +}; int create_database(); -int unpack_metric_from_binding(json_object *m, const char **name, const char **source, const char **unit, const char **identity, json_object **jv, uint64_t *timestamp); +int unpack_metric_from_api(json_object *m, struct series_t **serie); void concatenate(char* dest, const char* source, const char *sep); size_t make_url(char *url, size_t l_url, const char *host, const char *port, const char *endpoint); + +#endif |