X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Futils_cmd_getthreshold.c;h=8cc1d21caa9b7b0fcf7e1e8b8bb50ddbf5330a07;hp=491d7765ee82d9ce20e3c4d661aa457eeadf1540;hb=7b8851b26928b609ce850e78c1eabb50ff319244;hpb=c7c89cc9618ef25cc9b0861ac2782cb1a5d6782d diff --git a/src/utils_cmd_getthreshold.c b/src/utils_cmd_getthreshold.c index 491d7765..8cc1d21c 100644 --- a/src/utils_cmd_getthreshold.c +++ b/src/utils_cmd_getthreshold.c @@ -59,7 +59,7 @@ int handle_getthreshold(FILE *fh, char *buffer) { size_t i; if ((fh == NULL) || (buffer == NULL)) - return (-1); + return -1; DEBUG("utils_cmd_getthreshold: handle_getthreshold (fh = %p, buffer = %s);", (void *)fh, buffer); @@ -68,26 +68,26 @@ int handle_getthreshold(FILE *fh, char *buffer) { status = parse_string(&buffer, &command); if (status != 0) { print_to_socket(fh, "-1 Cannot parse command.\n"); - return (-1); + return -1; } assert(command != NULL); if (strcasecmp("GETTHRESHOLD", command) != 0) { print_to_socket(fh, "-1 Unexpected command: `%s'.\n", command); - return (-1); + return -1; } identifier = NULL; status = parse_string(&buffer, &identifier); if (status != 0) { print_to_socket(fh, "-1 Cannot parse identifier.\n"); - return (-1); + return -1; } assert(identifier != NULL); if (*buffer != 0) { print_to_socket(fh, "-1 Garbage after end of command: %s\n", buffer); - return (-1); + return -1; } /* parse_identifier() modifies its first argument, @@ -101,7 +101,7 @@ int handle_getthreshold(FILE *fh, char *buffer) { DEBUG("handle_getthreshold: Cannot parse identifier `%s'.", identifier); print_to_socket(fh, "-1 Cannot parse identifier `%s'.\n", identifier); sfree(identifier_copy); - return (-1); + return -1; } value_list_t vl = {.values = NULL}; @@ -118,10 +118,10 @@ int handle_getthreshold(FILE *fh, char *buffer) { if (status == ENOENT) { print_to_socket(fh, "-1 No threshold found for identifier %s\n", identifier); - return (0); + return 0; } else if (status != 0) { print_to_socket(fh, "-1 Error while looking up threshold: %i\n", status); - return (-1); + return -1; } /* Lets count the number of lines we'll return. */ @@ -152,49 +152,32 @@ int handle_getthreshold(FILE *fh, char *buffer) { i++; /* Print the response */ - print_to_socket(fh, "%zu Threshold found\n", i); + print_to_socket(fh, "%" PRIsz " Threshold found\n", i); if (threshold.host[0] != 0) - print_to_socket(fh, "Host: %s\n", threshold.host) if ( - threshold.plugin[0] != - 0) print_to_socket(fh, "Plugin: %s\n", - threshold.plugin) if (threshold.plugin_instance[0] != - 0) - print_to_socket(fh, "Plugin Instance: %s\n", - threshold.plugin_instance) if (threshold.type[0] != 0) - print_to_socket(fh, "Type: %s\n", threshold.type) if ( - threshold.type_instance[0] != - 0) print_to_socket(fh, "Type Instance: %s\n", - threshold - .type_instance) if (threshold.data_source - [0] != 0) - print_to_socket( - fh, "Data Source: %s\n", - threshold.data_source) if (!isnan(threshold.warning_min)) - print_to_socket( - fh, "Warning Min: %g\n", - threshold - .warning_min) if (!isnan(threshold.warning_max)) - print_to_socket( - fh, "Warning Max: %g\n", - threshold - .warning_max) if (!isnan(threshold.failure_min)) - print_to_socket( - fh, "Failure Min: %g\n", - threshold - .failure_min) if (!isnan(threshold - .failure_max)) - print_to_socket( - fh, "Failure Max: %g\n", - threshold.failure_max) if (threshold - .hysteresis > - 0.0) - print_to_socket( - fh, "Hysteresis: %g\n", - threshold.hysteresis) if (threshold - .hits > 1) - print_to_socket(fh, "Hits: %i\n", - threshold.hits) - - return (0); + print_to_socket(fh, "Host: %s\n", threshold.host); + if (threshold.plugin[0] != 0) + print_to_socket(fh, "Plugin: %s\n", threshold.plugin); + if (threshold.plugin_instance[0] != 0) + print_to_socket(fh, "Plugin Instance: %s\n", threshold.plugin_instance); + if (threshold.type[0] != 0) + print_to_socket(fh, "Type: %s\n", threshold.type); + if (threshold.type_instance[0] != 0) + print_to_socket(fh, "Type Instance: %s\n", threshold.type_instance); + if (threshold.data_source[0] != 0) + print_to_socket(fh, "Data Source: %s\n", threshold.data_source); + if (!isnan(threshold.warning_min)) + print_to_socket(fh, "Warning Min: %g\n", threshold.warning_min); + if (!isnan(threshold.warning_max)) + print_to_socket(fh, "Warning Max: %g\n", threshold.warning_max); + if (!isnan(threshold.failure_min)) + print_to_socket(fh, "Failure Min: %g\n", threshold.failure_min); + if (!isnan(threshold.failure_max)) + print_to_socket(fh, "Failure Max: %g\n", threshold.failure_max); + if (threshold.hysteresis > 0.0) + print_to_socket(fh, "Hysteresis: %g\n", threshold.hysteresis); + if (threshold.hits > 1) + print_to_socket(fh, "Hits: %i\n", threshold.hits); + + return 0; } /* int handle_getthreshold */