icingaweb2-module-graphite/library/Graphite/Graphing/GraphingTrait.php
2017-09-29 15:37:44 +02:00

77 lines
1.9 KiB
PHP

<?php
namespace Icinga\Module\Graphite\Graphing;
use Icinga\Application\Config;
use Icinga\Application\Icinga;
use Icinga\Exception\ConfigurationError;
use Icinga\Web\Url;
trait GraphingTrait
{
/**
* All loaded templates
*
* @var Templates
*/
protected static $allTemplates;
/**
* Metrics data source
*
* @var MetricsDataSource
*/
protected static $metricsDataSource;
/**
* Load and get all templates
*
* @return Templates
*/
protected static function getAllTemplates()
{
if (static::$allTemplates === null) {
$allTemplates = (new Templates())->loadDir(
Icinga::app()
->getModuleManager()
->getModule('graphite')
->getBaseDir() . DIRECTORY_SEPARATOR . 'templates'
);
$path = Config::resolvePath('modules/graphite/templates');
if (file_exists($path)) {
$allTemplates->loadDir($path);
}
static::$allTemplates = $allTemplates;
}
return static::$allTemplates;
}
/**
* Get metrics data source
*
* @return MetricsDataSource
*
* @throws ConfigurationError
*/
public static function getMetricsDataSource()
{
if (static::$metricsDataSource === null) {
$config = Config::module('graphite');
$graphite = $config->getSection('graphite');
if (! isset($graphite->web_url)) {
throw new ConfigurationError('Missing "graphite.web_url" in "%s"', $config->getConfigFile());
}
static::$metricsDataSource = new MetricsDataSource(
(new GraphiteWebClient(Url::fromPath($graphite->web_url)))
->setUser($graphite->web_user)
->setPassword($graphite->web_password)
);
}
return static::$metricsDataSource;
}
}