summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ff6bda5)
raw | patch | inline | side by side (parent: ff6bda5)
author | Florian Forster <octo@collectd.org> | |
Sun, 26 May 2013 15:34:07 +0000 (17:34 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Sun, 26 May 2013 15:34:07 +0000 (17:34 +0200) |
src/curl.c | patch | blob | history |
diff --git a/src/curl.c b/src/curl.c
index f927f810e874cae8aee8060f61422dfa12d225b4..7d3130773944f79ccee35c3fb6074c1cdbe3fe52 100644 (file)
--- a/src/curl.c
+++ b/src/curl.c
#include "plugin.h"
#include "configfile.h"
#include "utils_match.h"
+#include "utils_time.h"
#include <curl/curl.h>
@@ -607,12 +608,13 @@ static void cc_submit_response_code (const web_page_t *wp, long code) /* {{{ */
plugin_dispatch_values (&vl);
} /* }}} void cc_submit_response_code */
-static void cc_submit_response_time (const web_page_t *wp, double seconds) /* {{{ */
+static void cc_submit_response_time (const web_page_t *wp, /* {{{ */
+ cdtime_t response_time)
{
value_t values[1];
value_list_t vl = VALUE_LIST_INIT;
- values[0].gauge = seconds;
+ values[0].gauge = CDTIME_T_TO_DOUBLE (response_time);
vl.values = values;
vl.values_len = 1;
{
web_match_t *wm;
int status;
- struct timeval start, end;
+ cdtime_t start;
if (wp->response_time)
- gettimeofday (&start, NULL);
+ start = cdtime ();
wp->buffer_fill = 0;
status = curl_easy_perform (wp->curl);
return (-1);
}
+ if (wp->response_time)
+ cc_submit_response_time (wp, cdtime() - start);
+
if(wp->response_code)
{
long response_code = 0;
}
}
- if (wp->response_time)
- {
- double secs = 0;
- gettimeofday (&end, NULL);
- secs += end.tv_sec - start.tv_sec;
- secs += (end.tv_usec - start.tv_usec) / 1000000.0;
- cc_submit_response_time (wp, secs);
- }
-
for (wm = wp->matches; wm != NULL; wm = wm->next)
{
cu_match_value_t *mv;