diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-05-16 00:58:28 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-07-10 23:41:14 +0200 |
commit | fef008b549c9c6d6ee1e564312787c3d3f14f0c0 (patch) | |
tree | 43ab4879055ef9e4198705be7cca6fe30177593f /src/plugins/tsdb.c | |
parent | daf148db51e3abe2d7cfbeb7224124f64b8fc4e3 (diff) |
Convert the binding to use the controller
Ease Time series DB abstraction layer by using
Dyn API that implemente the API defined by the JSON
schema.
Change-Id: I67de4fbca10048201fdd2da683732a5f4f5b5368
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/plugins/tsdb.c')
-rw-r--r-- | src/plugins/tsdb.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/plugins/tsdb.c b/src/plugins/tsdb.c index 7e10a74..27ae067 100644 --- a/src/plugins/tsdb.c +++ b/src/plugins/tsdb.c @@ -18,31 +18,6 @@ #include <time.h> #include "tsdb.h" -int influxdb_ping() -{ - int ret = 0; - char *result; - size_t result_size; - CURL *request = curl_wrap_prepare_get("localhost:"DEFAULT_DBPORT"/ping",NULL, NULL); - curl_wrap_perform(request, &result, &result_size); - - if(curl_wrap_response_code_get(request) != 204) { - AFB_ERROR("TimeSeries DB not reachable"); - ret = ERROR; - } - - curl_easy_cleanup(request); - return ret; -} - -int db_ping() -{ - int ret = 0; - if(influxdb_ping() == 0) ret = INFLUX; - - return ret; -} - uint64_t get_ts() { struct timespec ts; |