var GraphitePublisher = function (metricRegistry, jsonFormattingService, graphiteClient) {
    this.client = graphiteClient;
    var self = this;
    JsonPublisher.call(this, metricRegistry, jsonFormattingService, function (data) {
        self.client.write(data.raw, function (err) {