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
c5d2c52b
Commit
c5d2c52b
authored
Dec 03, 2012
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trackrdrd: write monitoring stats to log as unsigned, not signed
parent
11ff92f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
monitor.c
trackrdrd/src/monitor.c
+4
-4
No files found.
trackrdrd/src/monitor.c
View file @
c5d2c52b
...
...
@@ -69,10 +69,10 @@ void
}
}
LOG_Log
(
LOG_INFO
,
"Data table: len=%
d collisions=%d insert_probes=%d find_probes=%d
"
"open=%
d done=%d load=%.2f len_overflows=%d data_overflows=%d
"
"occ_hi=%
d seen=%d submitted=%d nodata=%d sent=%d failed=%d
"
"wait_qfull=%
d data_hi=%d
"
,
"Data table: len=%
u collisions=%u insert_probes=%u find_probes=%u
"
"open=%
u done=%u load=%.2f len_overflows=%u data_overflows=%u
"
"occ_hi=%
u seen=%u submitted=%u nodata=%u sent=%u failed=%u
"
"wait_qfull=%
u data_hi=%u
"
,
tbl
.
len
,
tbl
.
collisions
,
tbl
.
insert_probes
,
tbl
.
find_probes
,
tbl
.
open
,
tbl
.
done
,
100
.
0
*
((
float
)
tbl
.
open
+
tbl
.
done
)
/
tbl
.
len
,
tbl
.
len_overflows
,
tbl
.
data_overflows
,
tbl
.
occ_hi
,
tbl
.
seen
,
...
...
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