1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<?php
namespace Icinga\Module\Graphite\Graphing;
use Icinga\Application\Config;
use Icinga\Application\Icinga;
use Icinga\Data\ConfigObject;
use Icinga\Exception\ConfigurationError;
use Icinga\Module\Graphite\Web\FakeSchemeRequest;
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');
/** @var ConfigObject<string> $graphite */
$graphite = $config->getSection('graphite');
if (! isset($graphite->url)) {
throw new ConfigurationError('Missing "graphite.url" in "%s"', $config->getConfigFile());
}
static::$metricsDataSource = new MetricsDataSource(
(new GraphiteWebClient(Url::fromPath($graphite->url, [], new FakeSchemeRequest())))
->setUser($graphite->user)
->setPassword($graphite->password)
->setInsecure((bool) $graphite->insecure)
->setTimeout(isset($graphite->timeout) ? intval($graphite->timeout) : 10)
);
}
return static::$metricsDataSource;
}
}
|