Basic VarnishStat usage

The example illustrates getting varnish statistic snapshot from shared memory

Przykład #1 Get statistic snapshot

<?php

$vs 
= new VarnishStat;

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

exit(
0);
?>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top