measure() public method

public measure ( $variable, $value )
Example #1
0
 public function testCollectMeasureWithTags()
 {
     $expectedTags = array('dc' => 'west', 'node' => 'nemesis101');
     $expectedArgs = array('points' => array(array('measurement' => 'series-name', 'fields' => array('value' => 47.11))), 'tags' => $expectedTags);
     $this->client->expects($this->once())->method('mark')->with($expectedArgs);
     $this->collector->setTags($expectedTags);
     $this->collector->measure('series-name', 47.11);
     $this->collector->flush();
 }