PHP Интерфейс Beberlei\Metrics\Collector\Collector

Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
decrement ( string $variable ) Decrements a counter.
flush ( ) Sends the metrics to the adapter backend.
increment ( string $variable ) Increments a counter.
measure ( string $variable, integer $value ) Updates a counter by some arbitrary amount.
timing ( string $variable, integer $time ) Records a timing.

Описание методов

decrement() публичный Метод

Decrements a counter.
public decrement ( string $variable )
$variable string

flush() публичный Метод

Sends the metrics to the adapter backend.
public flush ( )

increment() публичный Метод

Increments a counter.
public increment ( string $variable )
$variable string

measure() публичный Метод

Updates a counter by some arbitrary amount.
public measure ( string $variable, integer $value )
$variable string
$value integer The amount to increment the counter by

timing() публичный Метод

Records a timing.
public timing ( string $variable, integer $time )
$variable string
$time integer The duration of the timing in milliseconds