PHP 8.4.1 Released!

Basic VarnishStat usage

The example illustrates getting varnish statistic snapshot from shared memory

Exemplo #1 Get statistic snapshot

<?php

$vs
= new VarnishStat;

try {
$data = $vs->getSnapshot();
} catch (
VarnishException $e) {
echo
$e->getMessage();
exit(
3);
}

exit(
0);
?>
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top