Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
trackrdrd
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
trackrdrd
Commits
ac329f12
Commit
ac329f12
authored
Feb 18, 2013
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trackrdrd: all data table monitoring stats on one output line
parent
d0d80c39
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
monitor.c
trackrdrd/src/monitor.c
+9
-12
No files found.
trackrdrd/src/monitor.c
View file @
ac329f12
...
...
@@ -50,24 +50,14 @@ log_output(void)
#endif
LOG_Log
(
LOG_INFO
,
"Data table
writer
: "
"Data table: "
"len=%u "
"nodata=%u "
"submitted=%u "
"wait_qfull=%u "
"wait_room=%u "
"data_hi=%u "
"data_overflows=%u "
,
dtbl
.
len
,
dtbl
.
w_stats
.
nodata
,
dtbl
.
w_stats
.
submitted
,
dtbl
.
w_stats
.
wait_qfull
,
dtbl
.
w_stats
.
wait_room
,
dtbl
.
w_stats
.
data_hi
,
dtbl
.
w_stats
.
data_overflows
);
LOG_Log
(
LOG_INFO
,
"Data table reader: "
"data_overflows=%u "
"done=%u "
"open=%u "
"load=%.2f "
...
...
@@ -75,6 +65,13 @@ log_output(void)
"failed=%u "
"occ_hi=%u "
"occ_hi_this=%u "
,
dtbl
.
len
,
dtbl
.
w_stats
.
nodata
,
dtbl
.
w_stats
.
submitted
,
dtbl
.
w_stats
.
wait_qfull
,
dtbl
.
w_stats
.
wait_room
,
dtbl
.
w_stats
.
data_hi
,
dtbl
.
w_stats
.
data_overflows
,
dtbl
.
r_stats
.
done
,
dtbl
.
r_stats
.
open
,
(
100
.
0
*
(
1
.
0
*
dtbl
.
r_stats
.
done
+
1
.
0
*
dtbl
.
r_stats
.
open
)
/
dtbl
.
len
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment