blob: 9b85dee3be7c9d17dc01e581fd158d523ab33c0b (
plain) (
blame)
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
|
#include <Daemon/GraphiteWriter.h>
#include <Daemon/BaseDaemon.h>
#include <Poco/Util/LayeredConfiguration.h>
#include <Poco/Util/Application.h>
#include <base/getFQDNOrHostName.h>
#include <mutex>
#include <iomanip>
GraphiteWriter::GraphiteWriter(const std::string & config_name, const std::string & sub_path)
{
Poco::Util::LayeredConfiguration & config = Poco::Util::Application::instance().config();
port = config.getInt(config_name + ".port", 42000);
host = config.getString(config_name + ".host", "localhost");
timeout = config.getDouble(config_name + ".timeout", 0.1);
root_path = config.getString(config_name + ".root_path", "one_min");
if (config.getBool(config_name + ".hostname_in_path", true))
{
if (!root_path.empty())
root_path += ".";
std::string hostname_in_path = getFQDNOrHostName();
/// Replace dots to underscores so that Graphite does not interpret them as path separators
std::replace(std::begin(hostname_in_path), std::end(hostname_in_path), '.', '_');
root_path += hostname_in_path;
}
if (!sub_path.empty())
{
if (!root_path.empty())
root_path += ".";
root_path += sub_path;
}
}
|