8cb762859b9a1f2bdafb521250c1d0b3fff0c664
[collectd.git] / src / nginx.c
1 /**
2  * collectd - src/nginx.c
3  * Copyright (C) 2006,2007  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  **/
22
23 #include "collectd.h"
24 #include "common.h"
25 #include "plugin.h"
26 #include "configfile.h"
27
28 #include <curl/curl.h>
29
30 static char *url         = NULL;
31 static char *user        = NULL;
32 static char *pass        = NULL;
33 static char *verify_peer = NULL;
34 static char *verify_host = NULL;
35 static char *cacert      = NULL;
36
37 static CURL *curl = NULL;
38
39 #define ABUFFER_SIZE 16384
40 static char nginx_buffer[ABUFFER_SIZE];
41 static int  nginx_buffer_len = 0;
42 static char nginx_curl_error[CURL_ERROR_SIZE];
43
44 static const char *config_keys[] =
45 {
46   "URL",
47   "User",
48   "Password",
49   "VerifyPeer",
50   "VerifyHost",
51   "CACert"
52 };
53 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
54
55 static size_t nginx_curl_callback (void *buf, size_t size, size_t nmemb, void *stream)
56 {
57   size_t len = size * nmemb;
58
59   if ((nginx_buffer_len + len) >= ABUFFER_SIZE)
60   {
61     len = (ABUFFER_SIZE - 1) - nginx_buffer_len;
62   }
63
64   if (len <= 0)
65     return (len);
66
67   memcpy (nginx_buffer + nginx_buffer_len, (char *) buf, len);
68   nginx_buffer_len += len;
69   nginx_buffer[nginx_buffer_len] = '\0';
70
71   return (len);
72 }
73
74 static int config_set (char **var, const char *value)
75 {
76   if (*var != NULL)
77   {
78     free (*var);
79     *var = NULL;
80   }
81
82   if ((*var = strdup (value)) == NULL)
83     return (1);
84   else
85     return (0);
86 }
87
88 static int config (const char *key, const char *value)
89 {
90   if (strcasecmp (key, "url") == 0)
91     return (config_set (&url, value));
92   else if (strcasecmp (key, "user") == 0)
93     return (config_set (&user, value));
94   else if (strcasecmp (key, "password") == 0)
95     return (config_set (&pass, value));
96   else if (strcasecmp (key, "verifypeer") == 0)
97     return (config_set (&verify_peer, value));
98   else if (strcasecmp (key, "verifyhost") == 0)
99     return (config_set (&verify_host, value));
100   else if (strcasecmp (key, "cacert") == 0)
101     return (config_set (&cacert, value));
102   else
103     return (-1);
104 } /* int config */
105
106 static int init (void)
107 {
108   static char credentials[1024];
109
110   if (curl != NULL)
111     curl_easy_cleanup (curl);
112
113   if ((curl = curl_easy_init ()) == NULL)
114   {
115     ERROR ("nginx plugin: curl_easy_init failed.");
116     return (-1);
117   }
118
119   curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, nginx_curl_callback);
120   curl_easy_setopt (curl, CURLOPT_USERAGENT, PACKAGE_NAME"/"PACKAGE_VERSION);
121   curl_easy_setopt (curl, CURLOPT_ERRORBUFFER, nginx_curl_error);
122
123   if (user != NULL)
124   {
125     if (ssnprintf (credentials, sizeof (credentials),
126           "%s:%s", user, pass == NULL ? "" : pass) >= sizeof (credentials))
127     {
128       ERROR ("nginx plugin: Credentials would have been truncated.");
129       return (-1);
130     }
131
132     curl_easy_setopt (curl, CURLOPT_USERPWD, credentials);
133   }
134
135   if (url != NULL)
136   {
137     curl_easy_setopt (curl, CURLOPT_URL, url);
138   }
139
140   if ((verify_peer == NULL) || (strcmp (verify_peer, "true") == 0))
141   {
142     curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 1);
143   }
144   else
145   {
146     curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 0);
147   }
148
149   if ((verify_host == NULL) || (strcmp (verify_host, "true") == 0))
150   {
151     curl_easy_setopt (curl, CURLOPT_SSL_VERIFYHOST, 2);
152   }
153   else
154   {
155     curl_easy_setopt (curl, CURLOPT_SSL_VERIFYHOST, 0);
156   }
157
158   if (cacert != NULL)
159   {
160     curl_easy_setopt (curl, CURLOPT_CAINFO, cacert);
161   }
162
163   return (0);
164 } /* void init */
165
166 static void submit (char *type, char *inst, long long value)
167 {
168   value_t values[1];
169   value_list_t vl = VALUE_LIST_INIT;
170
171   if (strcmp (type, "nginx_connections") == 0)
172     values[0].gauge = value;
173   else if (strcmp (type, "nginx_requests") == 0)
174     values[0].counter = value;
175   else
176     return;
177
178   vl.values = values;
179   vl.values_len = 1;
180   sstrncpy (vl.host, hostname_g, sizeof (vl.host));
181   sstrncpy (vl.plugin, "nginx", sizeof (vl.plugin));
182   sstrncpy (vl.plugin_instance, "", sizeof (vl.plugin_instance));
183   sstrncpy (vl.type, type, sizeof (vl.type));
184
185   if (inst != NULL)
186     sstrncpy (vl.type_instance, inst, sizeof (vl.type_instance));
187
188   plugin_dispatch_values (&vl);
189 } /* void submit */
190
191 static int nginx_read (void)
192 {
193   int i;
194
195   char *ptr;
196   char *lines[16];
197   int   lines_num = 0;
198   char *saveptr;
199
200   char *fields[16];
201   int   fields_num;
202
203   if (curl == NULL)
204     return (-1);
205   if (url == NULL)
206     return (-1);
207
208   nginx_buffer_len = 0;
209   if (curl_easy_perform (curl) != 0)
210   {
211     WARNING ("nginx plugin: curl_easy_perform failed: %s", nginx_curl_error);
212     return (-1);
213   }
214
215   ptr = nginx_buffer;
216   saveptr = NULL;
217   while ((lines[lines_num] = strtok_r (ptr, "\n\r", &saveptr)) != NULL)
218   {
219     ptr = NULL;
220     lines_num++;
221
222     if (lines_num >= 16)
223       break;
224   }
225
226   /*
227    * Active connections: 291
228    * server accepts handled requests
229    *  16630948 16630948 31070465
230    * Reading: 6 Writing: 179 Waiting: 106
231    */
232   for (i = 0; i < lines_num; i++)
233   {
234     fields_num = strsplit (lines[i], fields,
235         (sizeof (fields) / sizeof (fields[0])));
236
237     if (fields_num == 3)
238     {
239       if ((strcmp (fields[0], "Active") == 0)
240           && (strcmp (fields[1], "connections:") == 0))
241       {
242         submit ("nginx_connections", "active", atoll (fields[2]));
243       }
244       else if ((atoll (fields[0]) != 0)
245           && (atoll (fields[1]) != 0)
246           && (atoll (fields[2]) != 0))
247       {
248         submit ("nginx_requests", NULL, atoll (fields[2]));
249       }
250     }
251     else if (fields_num == 6)
252     {
253       if ((strcmp (fields[0], "Reading:") == 0)
254           && (strcmp (fields[2], "Writing:") == 0)
255           && (strcmp (fields[4], "Waiting:") == 0))
256       {
257         submit ("nginx_connections", "reading", atoll (fields[1]));
258         submit ("nginx_connections", "writing", atoll (fields[3]));
259         submit ("nginx_connections", "waiting", atoll (fields[5]));
260       }
261     }
262   }
263
264   nginx_buffer_len = 0;
265
266   return (0);
267 } /* int nginx_read */
268
269 void module_register (void)
270 {
271   plugin_register_config ("nginx", config, config_keys, config_keys_num);
272   plugin_register_init ("nginx", init);
273   plugin_register_read ("nginx", nginx_read);
274 } /* void module_register */
275
276 /*
277  * vim: set shiftwidth=2 softtabstop=2 tabstop=8 :
278  */