Commit 5cceef81 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Stop using deprecated stats formats

parent a5a45d68
This diff is collapsed.
...@@ -98,15 +98,15 @@ VSC_F(child_panic, uint64_t, 0, 'c', diag, ...@@ -98,15 +98,15 @@ VSC_F(child_panic, uint64_t, 0, 'c', diag,
#ifdef VSC_DO_LCK #ifdef VSC_DO_LCK
VSC_F(creat, uint64_t, 0, 'a', debug, VSC_F(creat, uint64_t, 0, 'c', debug,
"Created locks", "Created locks",
"" ""
) )
VSC_F(destroy, uint64_t, 0, 'a', debug, VSC_F(destroy, uint64_t, 0, 'c', debug,
"Destroyed locks", "Destroyed locks",
"" ""
) )
VSC_F(locks, uint64_t, 0, 'a', debug, VSC_F(locks, uint64_t, 0, 'c', debug,
"Lock Operations", "Lock Operations",
"" ""
) )
...@@ -118,31 +118,31 @@ VSC_F(locks, uint64_t, 0, 'a', debug, ...@@ -118,31 +118,31 @@ VSC_F(locks, uint64_t, 0, 'a', debug,
*/ */
#if defined(VSC_DO_SMA) || defined (VSC_DO_SMF) #if defined(VSC_DO_SMA) || defined (VSC_DO_SMF)
VSC_F(c_req, uint64_t, 0, 'a', info, VSC_F(c_req, uint64_t, 0, 'c', info,
"Allocator requests", "Allocator requests",
"" ""
) )
VSC_F(c_fail, uint64_t, 0, 'a', info, VSC_F(c_fail, uint64_t, 0, 'c', info,
"Allocator failures", "Allocator failures",
"" ""
) )
VSC_F(c_bytes, uint64_t, 0, 'a', info, VSC_F(c_bytes, uint64_t, 0, 'c', info,
"Bytes allocated", "Bytes allocated",
"" ""
) )
VSC_F(c_freed, uint64_t, 0, 'a', info, VSC_F(c_freed, uint64_t, 0, 'c', info,
"Bytes freed", "Bytes freed",
"" ""
) )
VSC_F(g_alloc, uint64_t, 0, 'i', info, VSC_F(g_alloc, uint64_t, 0, 'g', info,
"Allocations outstanding", "Allocations outstanding",
"" ""
) )
VSC_F(g_bytes, uint64_t, 0, 'i', info, VSC_F(g_bytes, uint64_t, 0, 'g', info,
"Bytes outstanding", "Bytes outstanding",
"" ""
) )
VSC_F(g_space, uint64_t, 0, 'i', info, VSC_F(g_space, uint64_t, 0, 'g', info,
"Bytes available", "Bytes available",
"" ""
) )
...@@ -158,15 +158,15 @@ VSC_F(g_space, uint64_t, 0, 'i', info, ...@@ -158,15 +158,15 @@ VSC_F(g_space, uint64_t, 0, 'i', info,
/**********************************************************************/ /**********************************************************************/
#ifdef VSC_DO_SMF #ifdef VSC_DO_SMF
VSC_F(g_smf, uint64_t, 0, 'i', info, VSC_F(g_smf, uint64_t, 0, 'g', info,
"N struct smf", "N struct smf",
"" ""
) )
VSC_F(g_smf_frag, uint64_t, 0, 'i', info, VSC_F(g_smf_frag, uint64_t, 0, 'g', info,
"N small free smf", "N small free smf",
"" ""
) )
VSC_F(g_smf_large, uint64_t, 0, 'i', info, VSC_F(g_smf_large, uint64_t, 0, 'g', info,
"N large free smf", "N large free smf",
"" ""
) )
...@@ -176,7 +176,7 @@ VSC_F(g_smf_large, uint64_t, 0, 'i', info, ...@@ -176,7 +176,7 @@ VSC_F(g_smf_large, uint64_t, 0, 'i', info,
#ifdef VSC_DO_VBE #ifdef VSC_DO_VBE
VSC_F(vcls, uint64_t, 0, 'i', debug, VSC_F(vcls, uint64_t, 0, 'g', debug,
"VCL references", "VCL references",
"" ""
) )
...@@ -184,32 +184,32 @@ VSC_F(happy, uint64_t, 0, 'b', info, ...@@ -184,32 +184,32 @@ VSC_F(happy, uint64_t, 0, 'b', info,
"Happy health probes", "Happy health probes",
"" ""
) )
VSC_F(bereq_hdrbytes, uint64_t, 0, 'a', info, VSC_F(bereq_hdrbytes, uint64_t, 0, 'c', info,
"Request header bytes", "Request header bytes",
"Total backend request header bytes sent" "Total backend request header bytes sent"
) )
VSC_F(bereq_bodybytes, uint64_t, 0, 'a', info, VSC_F(bereq_bodybytes, uint64_t, 0, 'c', info,
"Request body bytes", "Request body bytes",
"Total backend request body bytes sent" "Total backend request body bytes sent"
) )
VSC_F(beresp_hdrbytes, uint64_t, 0, 'a', info, VSC_F(beresp_hdrbytes, uint64_t, 0, 'c', info,
"Response header bytes", "Response header bytes",
"Total backend response header bytes received" "Total backend response header bytes received"
) )
VSC_F(beresp_bodybytes, uint64_t, 0, 'a', info, VSC_F(beresp_bodybytes, uint64_t, 0, 'c', info,
"Response body bytes", "Response body bytes",
"Total backend response body bytes received" "Total backend response body bytes received"
) )
VSC_F(pipe_hdrbytes, uint64_t, 0, 'a', info, VSC_F(pipe_hdrbytes, uint64_t, 0, 'c', info,
"Pipe request header bytes", "Pipe request header bytes",
"Total request bytes sent for piped sessions" "Total request bytes sent for piped sessions"
) )
VSC_F(pipe_out, uint64_t, 0, 'a', info, VSC_F(pipe_out, uint64_t, 0, 'c', info,
"Piped bytes to backend", "Piped bytes to backend",
"Total number of bytes forwarded to backend in" "Total number of bytes forwarded to backend in"
" pipe sessions" " pipe sessions"
) )
VSC_F(pipe_in, uint64_t, 0, 'a', info, VSC_F(pipe_in, uint64_t, 0, 'c', info,
"Piped bytes from backend", "Piped bytes from backend",
"Total number of bytes forwarded from backend in" "Total number of bytes forwarded from backend in"
" pipe sessions" " pipe sessions"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment