-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvarnish.c
659 lines (578 loc) · 24.7 KB
/
varnish.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/**
* collectd - src/varnish.c
* Copyright (C) 2010 Jérôme Renard
* Copyright (C) 2010 Marc Fournier
* Copyright (C) 2010 Florian Forster
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License is applicable.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors:
* Jérôme Renard <jerome.renard at gmail.com>
* Marc Fournier <marc.fournier at camptocamp.com>
* Florian octo Forster <octo at verplant.org>
**/
/**
* Current list of what is monitored and what is not monitored (yet)
* {{{
* Field name Description Monitored
* ---------- ----------- ---------
* uptime Child uptime N
* client_conn Client connections accepted Y
* client_drop Connection dropped, no sess Y
* client_req Client requests received Y
* cache_hit Cache hits Y
* cache_hitpass Cache hits for pass Y
* cache_miss Cache misses Y
* backend_conn Backend conn. success Y
* backend_unhealthy Backend conn. not attempted Y
* backend_busy Backend conn. too many Y
* backend_fail Backend conn. failures Y
* backend_reuse Backend conn. reuses Y
* backend_toolate Backend conn. was closed Y
* backend_recycle Backend conn. recycles Y
* backend_unused Backend conn. unused Y
* fetch_head Fetch head Y
* fetch_length Fetch with Length Y
* fetch_chunked Fetch chunked Y
* fetch_eof Fetch EOF Y
* fetch_bad Fetch had bad headers Y
* fetch_close Fetch wanted close Y
* fetch_oldhttp Fetch pre HTTP/1.1 closed Y
* fetch_zero Fetch zero len Y
* fetch_failed Fetch failed Y
* n_sess_mem N struct sess_mem N
* n_sess N struct sess N
* n_object N struct object N
* n_vampireobject N unresurrected objects N
* n_objectcore N struct objectcore N
* n_objecthead N struct objecthead N
* n_smf N struct smf N
* n_smf_frag N small free smf N
* n_smf_large N large free smf N
* n_vbe_conn N struct vbe_conn N
* n_wrk N worker threads Y
* n_wrk_create N worker threads created Y
* n_wrk_failed N worker threads not created Y
* n_wrk_max N worker threads limited Y
* n_wrk_queue N queued work requests Y
* n_wrk_overflow N overflowed work requests Y
* n_wrk_drop N dropped work requests Y
* n_backend N backends N
* n_expired N expired objects N
* n_lru_nuked N LRU nuked objects N
* n_lru_saved N LRU saved objects N
* n_lru_moved N LRU moved objects N
* n_deathrow N objects on deathrow N
* losthdr HTTP header overflows N
* n_objsendfile Objects sent with sendfile N
* n_objwrite Objects sent with write N
* n_objoverflow Objects overflowing workspace N
* s_sess Total Sessions Y
* s_req Total Requests Y
* s_pipe Total pipe Y
* s_pass Total pass Y
* s_fetch Total fetch Y
* s_hdrbytes Total header bytes Y
* s_bodybytes Total body bytes Y
* sess_closed Session Closed N
* sess_pipeline Session Pipeline N
* sess_readahead Session Read Ahead N
* sess_linger Session Linger N
* sess_herd Session herd N
* shm_records SHM records Y
* shm_writes SHM writes Y
* shm_flushes SHM flushes due to overflow Y
* shm_cont SHM MTX contention Y
* shm_cycles SHM cycles through buffer Y
* sm_nreq allocator requests Y
* sm_nobj outstanding allocations Y
* sm_balloc bytes allocated Y
* sm_bfree bytes free Y
* sma_nreq SMA allocator requests Y
* sma_nobj SMA outstanding allocations Y
* sma_nbytes SMA outstanding bytes Y
* sma_balloc SMA bytes allocated Y
* sma_bfree SMA bytes free Y
* sms_nreq SMS allocator requests Y
* sms_nobj SMS outstanding allocations Y
* sms_nbytes SMS outstanding bytes Y
* sms_balloc SMS bytes allocated Y
* sms_bfree SMS bytes freed Y
* backend_req Backend requests made N
* n_vcl N vcl total N
* n_vcl_avail N vcl available N
* n_vcl_discard N vcl discarded N
* n_purge N total active purges N
* n_purge_add N new purges added N
* n_purge_retire N old purges deleted N
* n_purge_obj_test N objects tested N
* n_purge_re_test N regexps tested against N
* n_purge_dups N duplicate purges removed N
* hcb_nolock HCB Lookups without lock Y
* hcb_lock HCB Lookups with lock Y
* hcb_insert HCB Inserts Y
* esi_parse Objects ESI parsed (unlock) Y
* esi_errors ESI parse errors (unlock) Y
* }}}
*/
#include "collectd.h"
#include "common.h"
#include "plugin.h"
#include "configfile.h"
#include <varnish/varnishapi.h>
#if HAVE_VARNISH_V3
#include <varnish/vsc.h>
#define STAT_STRUCT VSC_C_main
#endif
#if HAVE_VARNISH_V2
#define STAT_STRUCT VSL_stats
#endif
/* {{{ user_config_s */
struct user_config_s {
char *instance;
_Bool collect_cache;
_Bool collect_connections;
_Bool collect_esi;
_Bool collect_backend;
_Bool collect_fetch;
_Bool collect_hcb;
_Bool collect_shm;
_Bool collect_sms;
#if HAVE_VARNISH_V2
_Bool collect_sm;
_Bool collect_sma;
#endif
_Bool collect_totals;
_Bool collect_workers;
};
typedef struct user_config_s user_config_t; /* }}} */
static _Bool have_instance = 0;
static int varnish_submit (const char *plugin_instance, /* {{{ */
const char *category, const char *type, const char *type_instance, value_t value)
{
value_list_t vl = VALUE_LIST_INIT;
vl.values = &value;
vl.values_len = 1;
sstrncpy (vl.host, hostname_g, sizeof (vl.host));
sstrncpy (vl.plugin, "varnish", sizeof (vl.plugin));
if (plugin_instance == NULL)
plugin_instance = "default";
ssnprintf (vl.plugin_instance, sizeof (vl.plugin_instance),
"%s-%s", plugin_instance, category);
sstrncpy (vl.type, type, sizeof (vl.type));
if (type_instance != NULL)
sstrncpy (vl.type_instance, type_instance,
sizeof (vl.type_instance));
return (plugin_dispatch_values (&vl));
} /* }}} int varnish_submit */
static int varnish_submit_gauge (const char *plugin_instance, /* {{{ */
const char *category, const char *type, const char *type_instance,
uint64_t gauge_value)
{
value_t value;
value.gauge = (gauge_t) gauge_value;
return (varnish_submit (plugin_instance, category, type, type_instance, value));
} /* }}} int varnish_submit_gauge */
static int varnish_submit_derive (const char *plugin_instance, /* {{{ */
const char *category, const char *type, const char *type_instance,
uint64_t derive_value)
{
value_t value;
value.derive = (derive_t) derive_value;
return (varnish_submit (plugin_instance, category, type, type_instance, value));
} /* }}} int varnish_submit_derive */
#if HAVE_VARNISH_V2
static void varnish_monitor (const user_config_t *conf, struct varnish_stats *VSL_stats) /* {{{ */
#endif
#if HAVE_VARNISH_V3
static void varnish_monitor (const user_config_t *conf, const struct VSC_C_main *VSC_C_main)
#endif
{
if (conf->collect_cache)
{
/* Cache hits */
varnish_submit_derive (conf->instance, "cache", "cache_result", "hit", STAT_STRUCT->cache_hit);
/* Cache misses */
varnish_submit_derive (conf->instance, "cache", "cache_result", "miss", STAT_STRUCT->cache_miss);
/* Cache hits for pass */
varnish_submit_derive (conf->instance, "cache", "cache_result", "hitpass", STAT_STRUCT->cache_hitpass);
}
if (conf->collect_connections)
{
/* Client connections accepted */
varnish_submit_derive (conf->instance, "connections", "connections", "accepted", STAT_STRUCT->client_conn);
/* Connection dropped, no sess */
varnish_submit_derive (conf->instance, "connections", "connections", "dropped" , STAT_STRUCT->client_drop);
/* Client requests received */
varnish_submit_derive (conf->instance, "connections", "connections", "received", STAT_STRUCT->client_req);
}
if (conf->collect_esi)
{
#if HAVE_VARNISH_V2
/* Objects ESI parsed (unlock) */
varnish_submit_derive (conf->instance, "esi", "total_operations", "parsed", STAT_STRUCT->esi_parse);
#endif
/* ESI parse errors (unlock) */
varnish_submit_derive (conf->instance, "esi", "total_operations", "error", STAT_STRUCT->esi_errors);
}
if (conf->collect_backend)
{
/* Backend conn. success */
varnish_submit_derive (conf->instance, "backend", "connections", "success" , STAT_STRUCT->backend_conn);
/* Backend conn. not attempted */
varnish_submit_derive (conf->instance, "backend", "connections", "not-attempted", STAT_STRUCT->backend_unhealthy);
/* Backend conn. too many */
varnish_submit_derive (conf->instance, "backend", "connections", "too-many" , STAT_STRUCT->backend_busy);
/* Backend conn. failures */
varnish_submit_derive (conf->instance, "backend", "connections", "failures" , STAT_STRUCT->backend_fail);
/* Backend conn. reuses */
varnish_submit_derive (conf->instance, "backend", "connections", "reuses" , STAT_STRUCT->backend_reuse);
/* Backend conn. was closed */
varnish_submit_derive (conf->instance, "backend", "connections", "was-closed" , STAT_STRUCT->backend_toolate);
/* Backend conn. recycles */
varnish_submit_derive (conf->instance, "backend", "connections", "recycled" , STAT_STRUCT->backend_recycle);
#if HAVE_VARNISH_V2
/* Backend conn. unused */
varnish_submit_derive (conf->instance, "backend", "connections", "unused" , STAT_STRUCT->backend_unused);
#endif
}
if (conf->collect_fetch)
{
/* Fetch head */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "head" , STAT_STRUCT->fetch_head);
/* Fetch with length */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "length" , STAT_STRUCT->fetch_length);
/* Fetch chunked */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "chunked" , STAT_STRUCT->fetch_chunked);
/* Fetch EOF */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "eof" , STAT_STRUCT->fetch_eof);
/* Fetch bad headers */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "bad_headers", STAT_STRUCT->fetch_bad);
/* Fetch wanted close */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "close" , STAT_STRUCT->fetch_close);
/* Fetch pre HTTP/1.1 closed */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "oldhttp" , STAT_STRUCT->fetch_oldhttp);
/* Fetch zero len */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "zero" , STAT_STRUCT->fetch_zero);
/* Fetch failed */
varnish_submit_derive (conf->instance, "fetch", "http_requests", "failed" , STAT_STRUCT->fetch_failed);
}
if (conf->collect_hcb)
{
/* HCB Lookups without lock */
varnish_submit_derive (conf->instance, "hcb", "cache_operation", "lookup_nolock", STAT_STRUCT->hcb_nolock);
/* HCB Lookups with lock */
varnish_submit_derive (conf->instance, "hcb", "cache_operation", "lookup_lock", STAT_STRUCT->hcb_lock);
/* HCB Inserts */
varnish_submit_derive (conf->instance, "hcb", "cache_operation", "insert", STAT_STRUCT->hcb_insert);
}
if (conf->collect_shm)
{
/* SHM records */
varnish_submit_derive (conf->instance, "shm", "total_operations", "records" , STAT_STRUCT->shm_records);
/* SHM writes */
varnish_submit_derive (conf->instance, "shm", "total_operations", "writes" , STAT_STRUCT->shm_writes);
/* SHM flushes due to overflow */
varnish_submit_derive (conf->instance, "shm", "total_operations", "flushes" , STAT_STRUCT->shm_flushes);
/* SHM MTX contention */
varnish_submit_derive (conf->instance, "shm", "total_operations", "contention", STAT_STRUCT->shm_cont);
/* SHM cycles through buffer */
varnish_submit_derive (conf->instance, "shm", "total_operations", "cycles" , STAT_STRUCT->shm_cycles);
}
#if HAVE_VARNISH_V2
if (conf->collect_sm)
{
/* allocator requests */
varnish_submit_derive (conf->instance, "sm", "total_requests", "nreq", STAT_STRUCT->sm_nreq);
/* outstanding allocations */
varnish_submit_gauge (conf->instance, "sm", "requests", "outstanding", STAT_STRUCT->sm_nobj);
/* bytes allocated */
varnish_submit_derive (conf->instance, "sm", "total_bytes", "allocated", STAT_STRUCT->sm_balloc);
/* bytes free */
varnish_submit_derive (conf->instance, "sm", "total_bytes", "free", STAT_STRUCT->sm_bfree);
}
if (conf->collect_sma)
{
/* SMA allocator requests */
varnish_submit_derive (conf->instance, "sma", "total_requests", "nreq", STAT_STRUCT->sma_nreq);
/* SMA outstanding allocations */
varnish_submit_gauge (conf->instance, "sma", "requests", "outstanding", STAT_STRUCT->sma_nobj);
/* SMA outstanding bytes */
varnish_submit_gauge (conf->instance, "sma", "bytes", "outstanding", STAT_STRUCT->sma_nbytes);
/* SMA bytes allocated */
varnish_submit_derive (conf->instance, "sma", "total_bytes", "allocated", STAT_STRUCT->sma_balloc);
/* SMA bytes free */
varnish_submit_derive (conf->instance, "sma", "total_bytes", "free" , STAT_STRUCT->sma_bfree);
}
#endif
if (conf->collect_sms)
{
/* SMS allocator requests */
varnish_submit_derive (conf->instance, "sms", "total_requests", "allocator", STAT_STRUCT->sms_nreq);
/* SMS outstanding allocations */
varnish_submit_gauge (conf->instance, "sms", "requests", "outstanding", STAT_STRUCT->sms_nobj);
/* SMS outstanding bytes */
varnish_submit_gauge (conf->instance, "sms", "bytes", "outstanding", STAT_STRUCT->sms_nbytes);
/* SMS bytes allocated */
varnish_submit_derive (conf->instance, "sms", "total_bytes", "allocated", STAT_STRUCT->sms_balloc);
/* SMS bytes freed */
varnish_submit_derive (conf->instance, "sms", "total_bytes", "free", STAT_STRUCT->sms_bfree);
}
if (conf->collect_totals)
{
/* Total Sessions */
varnish_submit_derive (conf->instance, "totals", "total_sessions", "sessions", STAT_STRUCT->s_sess);
/* Total Requests */
varnish_submit_derive (conf->instance, "totals", "total_requests", "requests", STAT_STRUCT->s_req);
/* Total pipe */
varnish_submit_derive (conf->instance, "totals", "total_operations", "pipe", STAT_STRUCT->s_pipe);
/* Total pass */
varnish_submit_derive (conf->instance, "totals", "total_operations", "pass", STAT_STRUCT->s_pass);
/* Total fetch */
varnish_submit_derive (conf->instance, "totals", "total_operations", "fetches", STAT_STRUCT->s_fetch);
/* Total header bytes */
varnish_submit_derive (conf->instance, "totals", "total_bytes", "header-bytes", STAT_STRUCT->s_hdrbytes);
/* Total body byte */
varnish_submit_derive (conf->instance, "totals", "total_bytes", "body-bytes", STAT_STRUCT->s_bodybytes);
}
if (conf->collect_workers)
{
/* worker threads */
varnish_submit_gauge (conf->instance, "workers", "threads", "worker", STAT_STRUCT->n_wrk);
/* worker threads created */
varnish_submit_derive (conf->instance, "workers", "total_threads", "created", STAT_STRUCT->n_wrk_create);
/* worker threads not created */
varnish_submit_derive (conf->instance, "workers", "total_threads", "failed", STAT_STRUCT->n_wrk_failed);
/* worker threads limited */
varnish_submit_derive (conf->instance, "workers", "total_threads", "limited", STAT_STRUCT->n_wrk_max);
#ifdef HAVE_VARNISH_V2
/* queued work requests */
varnish_submit_derive (conf->instance, "workers", "total_requests", "queued", STAT_STRUCT->n_wrk_queue);
/* overflowed work requests */
varnish_submit_derive (conf->instance, "workers", "total_requests", "overflowed", STAT_STRUCT->n_wrk_overflow);
#endif
/* dropped work requests */
varnish_submit_derive (conf->instance, "workers", "total_requests", "dropped", STAT_STRUCT->n_wrk_drop);
}
} /* }}} void varnish_monitor */
static int varnish_read (user_data_t *ud) /* {{{ */
{
#ifdef HAVE_VARNISH_V2
struct varnish_stats *VSL_stats;
#endif
#ifdef HAVE_VARNISH_V3
struct VSM_data *vd;
const struct VSC_C_main *VSC_C_main;
#endif
user_config_t *conf;
if ((ud == NULL) || (ud->data == NULL))
return (EINVAL);
conf = ud->data;
#ifdef HAVE_VARNISH_V2
VSL_stats = VSL_OpenStats (conf->instance);
if (VSL_stats == NULL)
{
ERROR ("Varnish plugin : unable to load statistics");
return (-1);
}
varnish_monitor (conf, VSL_stats);
#endif
#ifdef HAVE_VARNISH_V3
vd = VSM_New();
VSC_Setup(vd);
if (VSC_Open(vd, 1))
{
ERROR ("Varnish plugin : unable to load statistics");
return (-1);
}
VSC_C_main = VSC_Main(vd);
varnish_monitor (conf, VSC_C_main);
VSM_Delete(vd);
#endif
return (0);
} /* }}} */
static void varnish_config_free (void *ptr) /* {{{ */
{
user_config_t *conf = ptr;
if (conf == NULL)
return;
sfree (conf->instance);
sfree (conf);
} /* }}} */
static int varnish_config_apply_default (user_config_t *conf) /* {{{ */
{
if (conf == NULL)
return (EINVAL);
conf->collect_backend = 1;
conf->collect_cache = 1;
conf->collect_connections = 1;
conf->collect_esi = 0;
conf->collect_fetch = 0;
conf->collect_hcb = 0;
conf->collect_shm = 1;
#if HAVE_VARNISH_V2
conf->collect_sm = 0;
conf->collect_sma = 0;
#endif
conf->collect_sms = 0;
conf->collect_totals = 0;
return (0);
} /* }}} int varnish_config_apply_default */
static int varnish_init (void) /* {{{ */
{
user_config_t *conf;
user_data_t ud;
if (have_instance)
return (0);
conf = malloc (sizeof (*conf));
if (conf == NULL)
return (ENOMEM);
memset (conf, 0, sizeof (*conf));
/* Default settings: */
conf->instance = NULL;
varnish_config_apply_default (conf);
ud.data = conf;
ud.free_func = varnish_config_free;
plugin_register_complex_read (/* group = */ "varnish",
/* name = */ "varnish/localhost",
/* callback = */ varnish_read,
/* interval = */ NULL,
/* user data = */ &ud);
return (0);
} /* }}} int varnish_init */
static int varnish_config_instance (const oconfig_item_t *ci) /* {{{ */
{
user_config_t *conf;
user_data_t ud;
char callback_name[DATA_MAX_NAME_LEN];
int i;
conf = malloc (sizeof (*conf));
if (conf == NULL)
return (ENOMEM);
memset (conf, 0, sizeof (*conf));
conf->instance = NULL;
varnish_config_apply_default (conf);
if (ci->values_num == 1)
{
int status;
status = cf_util_get_string (ci, &conf->instance);
if (status != 0)
{
sfree (conf);
return (status);
}
assert (conf->instance != NULL);
if (strcmp ("localhost", conf->instance) == 0)
{
sfree (conf->instance);
conf->instance = NULL;
}
}
else if (ci->values_num > 1)
{
WARNING ("Varnish plugin: \"Instance\" blocks accept only "
"one argument.");
return (EINVAL);
}
for (i = 0; i < ci->children_num; i++)
{
oconfig_item_t *child = ci->children + i;
if (strcasecmp ("CollectCache", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_cache);
else if (strcasecmp ("CollectConnections", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_connections);
else if (strcasecmp ("CollectESI", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_esi);
else if (strcasecmp ("CollectBackend", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_backend);
else if (strcasecmp ("CollectFetch", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_fetch);
else if (strcasecmp ("CollectHCB", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_hcb);
else if (strcasecmp ("CollectSHM", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_shm);
else if (strcasecmp ("CollectSMS", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_sms);
#if HAVE_VARNISH_V2
else if (strcasecmp ("CollectSMA", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_sma);
else if (strcasecmp ("CollectSM", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_sm);
#endif
else if (strcasecmp ("CollectTotals", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_totals);
else if (strcasecmp ("CollectWorkers", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_workers);
else
{
WARNING ("Varnish plugin: Ignoring unknown "
"configuration option: \"%s\"",
child->key);
}
}
if (!conf->collect_cache
&& !conf->collect_connections
&& !conf->collect_esi
&& !conf->collect_backend
&& !conf->collect_fetch
&& !conf->collect_hcb
&& !conf->collect_shm
&& !conf->collect_sms
#if HAVE_VARNISH_V2
&& !conf->collect_sma
&& !conf->collect_sm
#endif
&& !conf->collect_totals
&& !conf->collect_workers)
{
WARNING ("Varnish plugin: No metric has been configured for "
"instance \"%s\". Disabling this instance.",
(conf->instance == NULL) ? "localhost" : conf->instance);
return (EINVAL);
}
ssnprintf (callback_name, sizeof (callback_name), "varnish/%s",
(conf->instance == NULL) ? "localhost" : conf->instance);
ud.data = conf;
ud.free_func = varnish_config_free;
plugin_register_complex_read (/* group = */ "varnish",
/* name = */ callback_name,
/* callback = */ varnish_read,
/* interval = */ NULL,
/* user data = */ &ud);
have_instance = 1;
return (0);
} /* }}} int varnish_config_instance */
static int varnish_config (oconfig_item_t *ci) /* {{{ */
{
int i;
for (i = 0; i < ci->children_num; i++)
{
oconfig_item_t *child = ci->children + i;
if (strcasecmp ("Instance", child->key) == 0)
varnish_config_instance (child);
else
{
WARNING ("Varnish plugin: Ignoring unknown "
"configuration option: \"%s\"",
child->key);
}
}
return (0);
} /* }}} int varnish_config */
void module_register (void) /* {{{ */
{
plugin_register_complex_config ("varnish", varnish_config);
plugin_register_init ("varnish", varnish_init);
} /* }}} */
/* vim: set sw=8 noet fdm=marker : */