| | varnish-cache/bin/varnishstat/varnishstat.c |
0 |
|
/*- |
1 |
|
* Copyright (c) 2006 Verdens Gang AS |
2 |
|
* Copyright (c) 2006-2015 Varnish Software AS |
3 |
|
* All rights reserved. |
4 |
|
* |
5 |
|
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk> |
6 |
|
* Author: Dag-Erling Smørgrav <des@des.no> |
7 |
|
* |
8 |
|
* SPDX-License-Identifier: BSD-2-Clause |
9 |
|
* |
10 |
|
* Redistribution and use in source and binary forms, with or without |
11 |
|
* modification, are permitted provided that the following conditions |
12 |
|
* are met: |
13 |
|
* 1. Redistributions of source code must retain the above copyright |
14 |
|
* notice, this list of conditions and the following disclaimer. |
15 |
|
* 2. Redistributions in binary form must reproduce the above copyright |
16 |
|
* notice, this list of conditions and the following disclaimer in the |
17 |
|
* documentation and/or other materials provided with the distribution. |
18 |
|
* |
19 |
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
20 |
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
21 |
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
22 |
|
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
23 |
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
24 |
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
25 |
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
26 |
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
27 |
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
28 |
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
29 |
|
* SUCH DAMAGE. |
30 |
|
* |
31 |
|
* Statistics output program |
32 |
|
*/ |
33 |
|
|
34 |
|
#include "config.h" |
35 |
|
|
36 |
|
#include <stdarg.h> |
37 |
|
#include <stdio.h> |
38 |
|
#include <stdlib.h> |
39 |
|
#include <signal.h> |
40 |
|
#include <string.h> |
41 |
|
#include <time.h> |
42 |
|
#include <unistd.h> |
43 |
|
#include <math.h> |
44 |
|
|
45 |
|
#define VOPT_DEFINITION |
46 |
|
#define VOPT_INC "varnishstat_options.h" |
47 |
|
|
48 |
|
#include "vapi/voptget.h" |
49 |
|
#include "vapi/vsl.h" |
50 |
|
#include "vdef.h" |
51 |
|
#include "vut.h" |
52 |
|
|
53 |
|
#include "varnishstat.h" |
54 |
|
|
55 |
|
static struct VUT *vut; |
56 |
|
int has_f = 0; |
57 |
|
|
58 |
|
/*--------------------------------------------------------------------*/ |
59 |
|
|
60 |
|
static int v_matchproto_(VSC_iter_f) |
61 |
14640 |
do_xml_cb(void *priv, const struct VSC_point * const pt) |
62 |
|
{ |
63 |
|
uint64_t val; |
64 |
|
|
65 |
14640 |
(void)priv; |
66 |
14640 |
if (pt == NULL) |
67 |
0 |
return (0); |
68 |
14640 |
AZ(strcmp(pt->ctype, "uint64_t")); |
69 |
14640 |
val = VSC_Value(pt); |
70 |
|
|
71 |
14640 |
printf("\t<stat>\n"); |
72 |
14640 |
printf("\t\t<name>%s</name>\n", pt->name); |
73 |
14640 |
printf("\t\t<value>%ju</value>\n", (uintmax_t)val); |
74 |
14640 |
printf("\t\t<flag>%c</flag>\n", pt->semantics); |
75 |
14640 |
printf("\t\t<format>%c</format>\n", pt->format); |
76 |
14640 |
printf("\t\t<description>%s</description>\n", pt->sdesc); |
77 |
14640 |
printf("\t</stat>\n"); |
78 |
14640 |
return (0); |
79 |
14640 |
} |
80 |
|
|
81 |
|
static void |
82 |
40 |
do_xml(struct vsm *vsm, struct vsc *vsc) |
83 |
|
{ |
84 |
|
char time_stamp[20]; |
85 |
|
time_t now; |
86 |
|
|
87 |
40 |
printf("<?xml version=\"1.0\"?>\n"); |
88 |
40 |
now = time(NULL); |
89 |
40 |
(void)strftime(time_stamp, 20, "%Y-%m-%dT%H:%M:%S", localtime(&now)); |
90 |
40 |
printf("<varnishstat timestamp=\"%s\">\n", time_stamp); |
91 |
40 |
(void)VSC_Iter(vsc, vsm, do_xml_cb, NULL); |
92 |
40 |
printf("</varnishstat>\n"); |
93 |
40 |
} |
94 |
|
|
95 |
|
|
96 |
|
/*--------------------------------------------------------------------*/ |
97 |
|
|
98 |
|
static int v_matchproto_(VSC_iter_f) |
99 |
58560 |
do_json_cb(void *priv, const struct VSC_point * const pt) |
100 |
|
{ |
101 |
|
const char **sep; |
102 |
|
uintmax_t val; |
103 |
|
|
104 |
58560 |
if (pt == NULL) |
105 |
0 |
return (0); |
106 |
|
|
107 |
58560 |
AZ(strcmp(pt->ctype, "uint64_t")); |
108 |
58560 |
val = (uintmax_t)VSC_Value(pt); |
109 |
|
|
110 |
58560 |
sep = priv; |
111 |
|
|
112 |
58560 |
printf( |
113 |
|
"%s" |
114 |
|
" \"%s\": {\n" |
115 |
|
" \"description\": \"%s\",\n" |
116 |
|
" \"flag\": \"%c\",\n" |
117 |
|
" \"format\": \"%c\",\n" |
118 |
|
" \"value\": %ju\n" |
119 |
|
" }", |
120 |
58560 |
*sep, pt->name, pt->sdesc, pt->semantics, pt->format, val); |
121 |
|
|
122 |
58560 |
*sep = ",\n"; |
123 |
58560 |
return (0); |
124 |
58560 |
} |
125 |
|
|
126 |
|
static void |
127 |
160 |
do_json(struct vsm *vsm, struct vsc *vsc) |
128 |
|
{ |
129 |
|
const char *sep; |
130 |
|
char time_stamp[20]; |
131 |
|
time_t now; |
132 |
|
|
133 |
160 |
sep = ""; |
134 |
160 |
now = time(NULL); |
135 |
|
|
136 |
160 |
(void)strftime(time_stamp, 20, "%Y-%m-%dT%H:%M:%S", localtime(&now)); |
137 |
160 |
printf( |
138 |
|
"{\n" |
139 |
|
" \"version\": 1,\n" |
140 |
|
" \"timestamp\": \"%s\",\n" |
141 |
160 |
" \"counters\": {\n", time_stamp); |
142 |
160 |
(void)VSC_Iter(vsc, vsm, do_json_cb, &sep); |
143 |
160 |
printf( |
144 |
|
"\n" |
145 |
|
" }\n" |
146 |
|
"}\n"); |
147 |
160 |
} |
148 |
|
|
149 |
|
|
150 |
|
/*--------------------------------------------------------------------*/ |
151 |
|
|
152 |
|
struct once_priv { |
153 |
|
double up; |
154 |
|
int pad; |
155 |
|
}; |
156 |
|
|
157 |
|
static int v_matchproto_(VSC_iter_f) |
158 |
400 |
do_once_cb_first(void *priv, const struct VSC_point * const pt) |
159 |
|
{ |
160 |
|
struct once_priv *op; |
161 |
|
uint64_t val; |
162 |
|
|
163 |
400 |
if (pt == NULL) |
164 |
0 |
return (0); |
165 |
400 |
op = priv; |
166 |
400 |
AZ(strcmp(pt->ctype, "uint64_t")); |
167 |
400 |
if (strcmp(pt->name, "MAIN.uptime")) |
168 |
0 |
return (0); |
169 |
400 |
val = VSC_Value(pt); |
170 |
400 |
op->up = (double)val; |
171 |
400 |
return (1); |
172 |
400 |
} |
173 |
|
|
174 |
|
static int v_matchproto_(VSC_iter_f) |
175 |
147480 |
do_once_cb(void *priv, const struct VSC_point * const pt) |
176 |
|
{ |
177 |
|
struct once_priv *op; |
178 |
|
uint64_t val; |
179 |
|
int i; |
180 |
|
|
181 |
147480 |
if (pt == NULL) |
182 |
0 |
return (0); |
183 |
147480 |
op = priv; |
184 |
147480 |
AZ(strcmp(pt->ctype, "uint64_t")); |
185 |
147480 |
val = VSC_Value(pt); |
186 |
147480 |
i = 0; |
187 |
147480 |
i += printf("%s", pt->name); |
188 |
147480 |
if (i >= op->pad) |
189 |
960 |
op->pad = i + 1; |
190 |
147480 |
printf("%*.*s", op->pad - i, op->pad - i, ""); |
191 |
147480 |
if (pt->semantics == 'c') |
192 |
130440 |
printf("%12ju %12.2f %s\n", |
193 |
130440 |
(uintmax_t)val, op->up ? val / op->up : 0, |
194 |
130440 |
pt->sdesc); |
195 |
|
else |
196 |
17040 |
printf("%12ju %12s %s\n", |
197 |
17040 |
(uintmax_t)val, ". ", pt->sdesc); |
198 |
147480 |
return (0); |
199 |
147480 |
} |
200 |
|
|
201 |
|
static void |
202 |
400 |
do_once(struct vsm *vsm, struct vsc *vsc) |
203 |
|
{ |
204 |
400 |
struct vsc *vsconce = VSC_New(); |
205 |
|
struct once_priv op; |
206 |
|
|
207 |
400 |
AN(vsconce); |
208 |
400 |
AN(VSC_Arg(vsconce, 'f', "MAIN.uptime")); |
209 |
|
|
210 |
400 |
memset(&op, 0, sizeof op); |
211 |
400 |
op.pad = 18; |
212 |
|
|
213 |
400 |
(void)VSC_Iter(vsconce, vsm, do_once_cb_first, &op); |
214 |
400 |
VSC_Destroy(&vsconce, vsm); |
215 |
400 |
(void)VSC_Iter(vsc, vsm, do_once_cb, &op); |
216 |
400 |
} |
217 |
|
|
218 |
|
/*--------------------------------------------------------------------*/ |
219 |
|
|
220 |
|
static int v_matchproto_(VSC_iter_f) |
221 |
14640 |
do_list_cb(void *priv, const struct VSC_point * const pt) |
222 |
|
{ |
223 |
|
int i; |
224 |
|
|
225 |
14640 |
(void)priv; |
226 |
|
|
227 |
14640 |
if (pt == NULL) |
228 |
0 |
return (0); |
229 |
|
|
230 |
14640 |
i = 0; |
231 |
14640 |
i += printf("%s", pt->name); |
232 |
14640 |
if (i < 30) |
233 |
14520 |
printf("%*s", i - 30, ""); |
234 |
14640 |
printf(" %s\n", pt->sdesc); |
235 |
14640 |
return (0); |
236 |
14640 |
} |
237 |
|
|
238 |
|
static void |
239 |
40 |
list_fields(struct vsm *vsm, struct vsc *vsc) |
240 |
|
{ |
241 |
40 |
printf("Varnishstat -f option fields:\n"); |
242 |
40 |
printf("Field name Description\n"); |
243 |
40 |
printf("---------- -----------\n"); |
244 |
|
|
245 |
40 |
(void)VSC_Iter(vsc, vsm, do_list_cb, NULL); |
246 |
40 |
} |
247 |
|
|
248 |
|
/*--------------------------------------------------------------------*/ |
249 |
|
|
250 |
|
static void v_noreturn_ |
251 |
80 |
usage(int status) |
252 |
|
{ |
253 |
|
const char **opt; |
254 |
|
|
255 |
80 |
fprintf(stderr, "Usage: %s <options>\n\n", vut->progname); |
256 |
80 |
fprintf(stderr, "Options:\n"); |
257 |
1040 |
for (opt = vopt_spec.vopt_usage; *opt != NULL; opt +=2) |
258 |
960 |
fprintf(stderr, " %-25s %s\n", *opt, *(opt + 1)); |
259 |
80 |
exit(status); |
260 |
|
} |
261 |
|
|
262 |
|
static int |
263 |
40 |
key_bindings(void) |
264 |
|
{ |
265 |
|
|
266 |
|
#define BINDING_KEY(chr, name, next) \ |
267 |
|
printf("<%s>" next, name); |
268 |
|
#define BINDING(name, desc) \ |
269 |
|
printf("\n%s\n\n", desc); |
270 |
|
#include "varnishstat_bindings.h" |
271 |
|
return (0); |
272 |
|
} |
273 |
|
|
274 |
|
int |
275 |
1200 |
main(int argc, char * const *argv) |
276 |
|
{ |
277 |
|
struct vsm *vd; |
278 |
1200 |
int once = 0, xml = 0, json = 0, f_list = 0, curses = 0; |
279 |
|
signed char opt; |
280 |
|
int i; |
281 |
|
struct vsc *vsc; |
282 |
|
|
283 |
1200 |
if (argc == 2 && !strcmp(argv[1], "--bindings")) |
284 |
40 |
exit(key_bindings()); |
285 |
|
|
286 |
1160 |
vut = VUT_InitProg(argc, argv, &vopt_spec); |
287 |
1160 |
AN(vut); |
288 |
1160 |
vd = VSM_New(); |
289 |
1160 |
AN(vd); |
290 |
1160 |
vsc = VSC_New(); |
291 |
1160 |
AN(vsc); |
292 |
|
|
293 |
3520 |
while ((opt = getopt(argc, argv, vopt_spec.vopt_optstring)) != -1) { |
294 |
2520 |
switch (opt) { |
295 |
|
case '1': |
296 |
400 |
once = 1; |
297 |
400 |
break; |
298 |
|
case 'h': |
299 |
|
/* Usage help */ |
300 |
40 |
usage(0); |
301 |
|
break; |
302 |
|
case 'l': |
303 |
40 |
f_list = 1; |
304 |
40 |
break; |
305 |
|
case 'x': |
306 |
40 |
xml = 1; |
307 |
40 |
break; |
308 |
|
case 'j': |
309 |
160 |
json = 1; |
310 |
160 |
break; |
311 |
|
case 'I': |
312 |
|
case 'X': |
313 |
|
case 'f': |
314 |
760 |
AN(VSC_Arg(vsc, opt, optarg)); |
315 |
760 |
has_f = 1; |
316 |
760 |
break; |
317 |
|
case 'r': |
318 |
0 |
AN(VSC_Arg(vsc, opt, optarg)); |
319 |
0 |
break; |
320 |
|
case 'V': |
321 |
0 |
AN(VUT_Arg(vut, opt, optarg)); |
322 |
0 |
break; |
323 |
|
default: |
324 |
1080 |
i = VSM_Arg(vd, opt, optarg); |
325 |
1080 |
if (i < 0) |
326 |
120 |
VUT_Error(vut, 1, "%s", VSM_Error(vd)); |
327 |
960 |
if (!i) |
328 |
0 |
usage(1); |
329 |
960 |
} |
330 |
|
} |
331 |
|
|
332 |
1000 |
if (optind != argc) |
333 |
40 |
usage(1); |
334 |
|
|
335 |
960 |
if (!(xml || json || once || f_list)) |
336 |
320 |
curses = 1; |
337 |
|
|
338 |
960 |
if (VSM_Attach(vd, STDERR_FILENO)) |
339 |
80 |
VUT_Error(vut, 1, "%s", VSM_Error(vd)); |
340 |
|
|
341 |
880 |
if (curses) { |
342 |
240 |
if (has_f) { |
343 |
80 |
AN(VSC_Arg(vsc, 'R', "MGT.uptime")); |
344 |
80 |
AN(VSC_Arg(vsc, 'R', "MAIN.uptime")); |
345 |
80 |
AN(VSC_Arg(vsc, 'R', "MAIN.cache_hit")); |
346 |
80 |
AN(VSC_Arg(vsc, 'R', "MAIN.cache_miss")); |
347 |
80 |
} |
348 |
240 |
do_curses(vd, vsc); |
349 |
240 |
} |
350 |
640 |
else if (xml) |
351 |
40 |
do_xml(vd, vsc); |
352 |
600 |
else if (json) |
353 |
160 |
do_json(vd, vsc); |
354 |
440 |
else if (once) |
355 |
400 |
do_once(vd, vsc); |
356 |
40 |
else if (f_list) |
357 |
40 |
list_fields(vd, vsc); |
358 |
|
else |
359 |
0 |
WRONG("undefined varnishstat mode"); |
360 |
|
|
361 |
880 |
exit(0); |
362 |
|
} |