icingaweb2-module-graphite/library/Graphite/Graphing/MetricsDataSource.php
2017-09-29 11:32:04 +02:00

48 lines
868 B
PHP

<?php
namespace Icinga\Module\Graphite\Graphing;
use Icinga\Data\Selectable;
/**
* Provides an interface to Graphite Web's metrics list
*/
class MetricsDataSource implements Selectable
{
/**
* HTTP interface to Graphite Web
*
* @var GraphiteWebClient
*/
private $client;
/**
* Constructor
*
* @param GraphiteWebClient $client HTTP interface to Graphite Web
*/
public function __construct(GraphiteWebClient $client)
{
$this->client = $client;
}
/**
* Initiate a new query
*
* @return MetricsQuery
*/
public function select()
{
return new MetricsQuery($this);
}
/**
* Get the client passed to the constructor
*
* @return GraphiteWebClient
*/
public function getClient()
{
return $this->client;
}
}