public MetricSnapshotGraphitePlainTextProtocolWriter( TextWriter textWriter, IGraphitePointTextWriter metricNameFormatter = null) { _textWriter = textWriter ?? throw new ArgumentNullException(nameof(textWriter)); _points = new GraphitePoints(); _metricNameFormatter = metricNameFormatter ?? new DefaultGraphitePointTextWriter(); }