/usr/include/varnish/tbl/vsc_fields.h is in libvarnishapi-dev 4.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*-
* Copyright (c) 2006 Verdens Gang AS
* Copyright (c) 2006-2015 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Definition of all shared memory statistics below (except main - see
* include/tbl/vsc_f_main.h).
*
* Fields (n, t, l, s, f, v, d, e):
* n - Name: Field name, in C-source and stats programs
* t - C-type: uint64_t, unless marked in 's'
* l - Local: Local counter in worker thread.
* s - Semantics: Semantics of the value in this field
* 'b' - Bitmap
* 'c' - Counter, never decreases.
* 'g' - Gauge, goes up and down
* f - Format: Display format for the field
* 'b' - Bitmap
* 'i' - Integer
* 'd' - Duration
* v - Verbosity: Counter verbosity level (see vsc_levels.h)
* d - Description: Short description of field (for screen use)
* e - Explanation: Long explanation of field (for doc use)
*
* Please describe Gauge variables as "Number of..." to indicate that
* this is a snapshot, and Counter variables as "Count of" to indicate
* accumulative count.
*
* -----------------------
* NB: Cleanup in progress
* -----------------------
*
* Insufficient attention has caused this to become a swamp of conflicting
* conventions, shorthands and general mumbo-jumbo. I'm trying to clean
* it up as I go over the code in other business.
*
* Please see the sessmem section for how it should look.
*
*/
/**********************************************************************/
#ifdef VSC_DO_MGT
VSC_F(uptime, uint64_t, 0, 'c', 'd', info,
"Management process uptime",
"Uptime in seconds of the management process"
)
VSC_F(child_start, uint64_t, 0, 'c', 'i', diag,
"Child process started",
"Number of times the child process has been started"
)
VSC_F(child_exit, uint64_t, 0, 'c', 'i', diag,
"Child process normal exit",
"Number of times the child process has been cleanly stopped"
)
VSC_F(child_stop, uint64_t, 0, 'c', 'i', diag,
"Child process unexpected exit",
"Number of times the child process has exited with an unexpected"
" return code"
)
VSC_F(child_died, uint64_t, 0, 'c', 'i', diag,
"Child process died (signal)",
"Number of times the child process has died due to signals"
)
VSC_F(child_dump, uint64_t, 0, 'c', 'i', diag,
"Child process core dumped",
"Number of times the child process has produced core dumps"
)
VSC_F(child_panic, uint64_t, 0, 'c', 'i', diag,
"Child process panic",
"Number of times the management process has caught a child panic"
)
#endif
/**********************************************************************/
#ifdef VSC_DO_LCK
VSC_F(creat, uint64_t, 0, 'c', 'i', debug,
"Created locks",
""
)
VSC_F(destroy, uint64_t, 0, 'c', 'i', debug,
"Destroyed locks",
""
)
VSC_F(locks, uint64_t, 0, 'c', 'i', debug,
"Lock Operations",
""
)
#endif
/**********************************************************************
* All Stevedores support these counters
*/
#if defined(VSC_DO_SMA) || defined (VSC_DO_SMF)
VSC_F(c_req, uint64_t, 0, 'c', 'i', info,
"Allocator requests",
"Number of times the storage has been asked to provide a storage segment."
)
VSC_F(c_fail, uint64_t, 0, 'c', 'i', info,
"Allocator failures",
"Number of times the storage has failed to provide a storage segment."
)
VSC_F(c_bytes, uint64_t, 0, 'c', 'B', info,
"Bytes allocated",
"Number of total bytes allocated by this storage."
)
VSC_F(c_freed, uint64_t, 0, 'c', 'B', info,
"Bytes freed",
"Number of total bytes returned to this storage."
)
VSC_F(g_alloc, uint64_t, 0, 'g', 'i', info,
"Allocations outstanding",
"Number of storage allocations outstanding."
)
VSC_F(g_bytes, uint64_t, 0, 'g', 'B', info,
"Bytes outstanding",
"Number of bytes allocated from the storage."
)
VSC_F(g_space, uint64_t, 0, 'g', 'B', info,
"Bytes available",
"Number of bytes left in the storage."
)
#endif
/**********************************************************************/
#ifdef VSC_DO_SMA
/* No SMA specific counters */
#endif
/**********************************************************************/
#ifdef VSC_DO_SMF
VSC_F(g_smf, uint64_t, 0, 'g', 'i', info,
"N struct smf",
""
)
VSC_F(g_smf_frag, uint64_t, 0, 'g', 'i', info,
"N small free smf",
""
)
VSC_F(g_smf_large, uint64_t, 0, 'g', 'i', info,
"N large free smf",
""
)
#endif
/**********************************************************************/
#ifdef VSC_DO_VBE
VSC_F(happy, uint64_t, 0, 'b', 'b', info,
"Happy health probes",
""
)
VSC_F(bereq_hdrbytes, uint64_t, 0, 'c', 'B', info,
"Request header bytes",
"Total backend request header bytes sent"
)
VSC_F(bereq_bodybytes, uint64_t, 0, 'c', 'B', info,
"Request body bytes",
"Total backend request body bytes sent"
)
VSC_F(beresp_hdrbytes, uint64_t, 0, 'c', 'B', info,
"Response header bytes",
"Total backend response header bytes received"
)
VSC_F(beresp_bodybytes, uint64_t, 0, 'c', 'B', info,
"Response body bytes",
"Total backend response body bytes received"
)
VSC_F(pipe_hdrbytes, uint64_t, 0, 'c', 'B', info,
"Pipe request header bytes",
"Total request bytes sent for piped sessions"
)
VSC_F(pipe_out, uint64_t, 0, 'c', 'B', info,
"Piped bytes to backend",
"Total number of bytes forwarded to backend in"
" pipe sessions"
)
VSC_F(pipe_in, uint64_t, 0, 'c', 'B', info,
"Piped bytes from backend",
"Total number of bytes forwarded from backend in"
" pipe sessions"
)
VSC_F(conn, uint64_t, 0, 'g', 'i', info,
"Concurrent connections to backend",
""
)
VSC_F(req, uint64_t, 0, 'c', 'i', info,
"Backend requests sent",
""
)
#endif
/**********************************************************************/
#ifdef VSC_DO_MEMPOOL
VSC_F(live, uint64_t, 0, 'g', 'i', debug,
"In use",
""
)
VSC_F(pool, uint64_t, 0, 'g', 'i', debug,
"In Pool",
""
)
VSC_F(sz_wanted, uint64_t, 0, 'g', 'B', debug,
"Size requested",
""
)
VSC_F(sz_actual, uint64_t, 0, 'g', 'B', debug,
"Size allocated",
""
)
VSC_F(allocs, uint64_t, 0, 'c', 'i', debug,
"Allocations",
""
)
VSC_F(frees, uint64_t, 0, 'c', 'i', debug,
"Frees",
""
)
VSC_F(recycle, uint64_t, 0, 'c', 'i', debug,
"Recycled from pool",
""
)
VSC_F(timeout, uint64_t, 0, 'c', 'i', debug,
"Timed out from pool",
""
)
VSC_F(toosmall, uint64_t, 0, 'c', 'i', debug,
"Too small to recycle",
""
)
VSC_F(surplus, uint64_t, 0, 'c', 'i', debug,
"Too many for pool",
""
)
VSC_F(randry, uint64_t, 0, 'c', 'i', debug,
"Pool ran dry",
""
)
#endif
|