mirror of
https://github.com/librenms/librenms-agent.git
synced 2024-05-09 09:54:52 +00:00
14 lines
214 B
Plaintext
14 lines
214 B
Plaintext
|
#!/usr/bin/php
|
||
|
<?php
|
||
|
$m = new Memcached();
|
||
|
$m->addServer('localhost', 11211);
|
||
|
$stats = $m->getStats();
|
||
|
|
||
|
if(is_array($stats))
|
||
|
{
|
||
|
echo("<<<app-memcached>>>\n");
|
||
|
echo(serialize($m->getStats()));
|
||
|
echo("\n");
|
||
|
}
|
||
|
?>
|