Beberlei\Metrics\Collector\Prometheus::timing PHP Method

timing() public method

public timing ( $variable, $time )
    public function timing($variable, $time)
    {
        $this->measure($variable, $time);
    }

Usage Example

Beispiel #1
0
 public function testTimingWithTags()
 {
     $expectedVariableValue = 123;
     $expectedTagsValues = array('value1', 'value2');
     $gaugeMock = $this->getMockBuilder('\\Prometheus\\Gauge')->disableOriginalConstructor()->getMock();
     $gaugeMock->expects($this->once())->method('set')->with($expectedVariableValue, $expectedTagsValues);
     $this->collectorRegistryMock->expects($this->once())->method('getGauge')->with(self::TEST_NAMESPACE, self::TEST_VARIABLE_NAME)->willReturn($gaugeMock);
     $this->collector->setTags(array('tag1' => 'value1', 'tag2' => 'value2'));
     $this->collector->timing(self::TEST_VARIABLE_NAME, $expectedVariableValue);
     $this->collector->flush();
 }