summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 639f00e)
raw | patch | inline | side by side (parent: 639f00e)
author | Pierre-Yves Ritschard <pyr@spootnik.org> | |
Tue, 22 Jul 2014 13:23:27 +0000 (15:23 +0200) | ||
committer | Pierre-Yves Ritschard <pyr@spootnik.org> | |
Tue, 22 Jul 2014 13:23:27 +0000 (15:23 +0200) |
src/write_riemann.c | patch | blob | history | |
src/write_riemann_threshold.c | patch | blob | history |
diff --git a/src/write_riemann.c b/src/write_riemann.c
index 2875a0177240d3d8219002d69298b82bee4666a3..9d2b53982d0d328c4a7f113625be72f6adb8a733 100644 (file)
--- a/src/write_riemann.c
+++ b/src/write_riemann.c
uint8_t flags;
pthread_mutex_t lock;
_Bool notifications;
+ _Bool check_thresholds;
_Bool store_rates;
_Bool always_append_ds;
char *node;
@@ -478,20 +479,22 @@ static Event *riemann_value_to_protobuf (struct riemann_host const *host, /* {{{
event->time = CDTIME_T_TO_TIME_T (vl->time);
event->has_time = 1;
- switch (status) {
- case STATE_OKAY:
- event->state = strdup("ok");
- break;
- case STATE_ERROR:
- event->state = strdup("critical");
- break;
- case STATE_WARNING:
- event->state = strdup("warning");
- break;
- case STATE_MISSING:
- event->state = strdup("unknown");
- break;
- }
+ if (host->check_thresholds) {
+ switch (status) {
+ case STATE_OKAY:
+ event->state = strdup("ok");
+ break;
+ case STATE_ERROR:
+ event->state = strdup("critical");
+ break;
+ case STATE_WARNING:
+ event->state = strdup("warning");
+ break;
+ case STATE_MISSING:
+ event->state = strdup("unknown");
+ break;
+ }
+ }
ttl = CDTIME_T_TO_DOUBLE (vl->interval) * host->ttl_factor;
event->ttl = (float) ttl;
struct riemann_host *host = ud->data;
Msg *msg;
- write_riemann_threshold_check(ds, vl, statuses);
+ if (host->check_thresholds)
+ write_riemann_threshold_check(ds, vl, statuses);
msg = riemann_value_list_to_protobuf (host, ds, vl, statuses);
if (msg == NULL)
return (-1);
host->node = NULL;
host->service = NULL;
host->notifications = 1;
+ host->check_thresholds = 0;
host->store_rates = 1;
host->always_append_ds = 0;
host->use_tcp = 0;
break;
} else if (strcasecmp ("Notifications", child->key) == 0) {
status = cf_util_get_boolean(child, &host->notifications);
+ if (status != 0)
+ break;
+ } else if (strcasecmp ("CheckThresholds", child->key) == 0) {
+ status = cf_util_get_boolean(child, &host->check_thresholds);
if (status != 0)
break;
} else if (strcasecmp ("Port", child->key) == 0) {
index 9f49774126b21785a7805cbb7495a508f702e25c..ff96843b7b62083c39d10143577bba671c4c460e 100644 (file)
@@ -280,8 +280,6 @@ int write_riemann_threshold_check (const data_set_t *ds, const value_list_t *vl,
int status;
memset(statuses, 0, vl->values_len * sizeof(*statuses));
-
-
if (threshold_tree == NULL)
return 0;