This extension emits druid metrics to a graphite carbon server. Metrics can be sent by using or pickle protocol. The pickle protocol is more efficient and supports sending batches of metrics (plaintext protocol send only one metric) in one request; batch size is configurable.
Configuration
All the configuration parameters for graphite emitter are under druid.emitter.graphite
.
The graphite emitter only emits service metric events to graphite (See Druid Metrics for a list of metrics).
Alerts and request logs are not sent to graphite. These event types are not well represented in Graphite, which is more suited for timeseries views on numeric metrics, vs. storing non-numeric log events.
Druid to Graphite Event Converter
Graphite Event Converter defines a mapping between druid metrics name plus dimensions to a Graphite metric path. Graphite metric path is organized using the following schema: <namespacePrefix>.[<druid service name>].[<druid hostname>].<druid metrics dimensions>.<druid metrics name>
Properly naming the metrics is critical to avoid conflicts, confusing data and potentially wrong interpretation later on.
Example druid.historical.hist-host1_yahoo_com:8080.MyDataSourceName.GroupBy.query/time
:
druid
-> namespace prefixhistorical
-> service nameMyDataSourceName
-> dimension valueGroupBy
-> dimension valuequery/time
-> metric name
We have two different implementation of event converter:
Send-All converter
The first implementation called all
, will send all the druid service metrics events. The path will be in the form <namespacePrefix>.[<druid service name>].[<druid hostname>].<dimensions values ordered by dimension's name>.<metric>
User has control of
You can omit the service name by setting ignoreServiceName=true
druid.HOSTNAME.dataSourceName.queryType.query/time
Elements in metric name by default are separated by “/“, so graphite will create all metrics on one level. If you want to have metrics in the tree structure, you have to set replaceSlashWithDot=true
Original: druid.HOSTNAME.dataSourceName.queryType.query/time
Changed: druid.HOSTNAME.dataSourceName.queryType.query.time
White-list based converter
The second implementation called whiteList
, will send only the white listed metrics and dimensions. Same as for the all
converter user has control of <namespacePrefix>.[<druid service name>].[<druid hostname>].
White-list based converter comes with the following default white list map located under resources in ./src/main/resources/defaultWhiteListMap.json
Although user can override the default white list map by supplying a property called mapPath
. This property is a String containing the path for the file containing white list map JSON object. For example the following converter will read the map from the file /pathPrefix/fileName.json
.