ADMINISTERING


Publishing Domino statistics to services other than New Relic

To publish Domino statistics to a service such as Hosted Graphite, there are several notes.ini settings available that allow you to do so.

Procedure

Use the following notes.ini settings on a Domino server. The service must be able to accept time series data via HTTP POST requests.


1Key to substitution strings:
Example

Publishing statistics to Hosted Graphite

This example demonstrates a simple configuration to report statistics to Hosted Graphite. Hosted Graphite has the following minimum requirements:


Example settings in server notes.ini file:

;Enable Domino to publish metrics to Hosted GraphiteSTATPUB_ENABLE=1STATPUB_URI=http://d4692fb0-464f-5adc-8db3-d663c3bc341a@www.hostedgraphite.com/api/v1/sinkSTATPUB_METRIC_FORMAT=Domino.mailserver01.$Name$ $Value$STATPUB_DELTA_METRIC_FORMAT=Domino.mailserver01.Rate.$Name$ $Value$STATPUB_METRIC_DELIMITER=$Newline$

The following example shows two metrics included in the data payload for theMail.Delivered statistic. The first indicates 33065 messages delivered since the Domino server started, the second indicates 1017 messages delivered in the last minute.

Domino.mailserver01.Mail.Delivered 33065Domino.mailserver01.Rate.Mail.Delivered 1017

STATPUB_METRIC_DELIMITER=$Newline$ puts each metric on a separate line.