Inheritance: implements Beberlei\Metrics\Collector\Collector, implements Beberlei\Metrics\Collector\TaggableCollector
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();
 }
Example #2
0
 public function testCollectMeasure()
 {
     $this->client->expects($this->once())->method('mark')->with('series-name', array('value' => 47.11));
     $this->collector->timing('series-name', 47.11);
     $this->collector->flush();
 }