Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-wp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ai
noblogs-wp
Commits
ac799fb4
Commit
ac799fb4
authored
11 years ago
by
godog
Committed by
agata
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add xcache stats reporting
parent
7959cf99
No related branches found
Branches containing commit
No related tags found
1 merge request
!3
Noblogs 5.4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xcache_stats_r2mon.php
+53
-0
53 additions, 0 deletions
xcache_stats_r2mon.php
with
53 additions
and
0 deletions
xcache_stats_r2mon.php
0 → 100644
+
53
−
0
View file @
ac799fb4
<?php
$EXPORTED_STATS
=
array
(
"compiling"
,
"disabled"
,
"misses"
,
"hits"
,
"clogs"
,
"ooms"
,
"errors"
,
"cached"
,
"deleted"
,
"size"
,
"avail"
);
if
(
!
extension_loaded
(
'XCache'
))
{
trigger_error
(
"xcache not loaded"
,
E_USER_ERROR
);
header
(
"HTTP/1.1 500 Internal Server Error"
);
}
function
xcache_type_stats
(
$type
)
{
global
$EXPORTED_STATS
;
$total
=
array
();
$type_stats
=
array
();
for
(
$i
=
0
;
$i
<
xcache_count
(
$type
);
$i
++
)
{
$type_stats
[]
=
xcache_info
(
$type
,
$i
);
}
foreach
(
$type_stats
as
$unused
=>
$type_stat
)
{
foreach
(
$type_stat
as
$k
=>
$v
)
{
if
(
!
in_array
(
$k
,
$EXPORTED_STATS
))
{
continue
;
}
if
(
!
isset
(
$total
[
$k
]))
{
$total
[
$k
]
=
0
;
}
$total
[
$k
]
+=
$v
;
}
}
return
$total
;
}
$code_cache_stats
=
xcache_type_stats
(
XC_TYPE_PHP
);
$var_cache_stats
=
xcache_type_stats
(
XC_TYPE_VAR
);
/*
print var_dump($code_cache_stats);
print var_dump($var_cache_stats);
*/
foreach
(
$code_cache_stats
as
$k
=>
$v
)
{
print
"xcache.stat
{
type=code,what=$k
}
:
$v
\n
"
;
}
foreach
(
$var_cache_stats
as
$k
=>
$v
)
{
print
"xcache.stat
{
type=var,what=$k
}
:
$v
\n
"
;
}
print
"xcache.pid: "
.
getmypid
();
?>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment