- *
- * | Name |
- * Default |
- * Description |
- *
- *
- * | proxyHost |
- * localhost |
- * The hostname of the Wavefront proxy to report to. |
- *
- *
- * | proxyPort |
- * 2003 |
- * The port of the Wavefront proxy to report to. |
- *
- *
- * | prefix |
- * None |
- * The prefix for Metric key names to report to Wavefront. |
- *
- *
- * | metricSource |
- * canonical name of localhost |
- * This is the source name all metrics will report to Wavefront under. |
- *
- *
- * | pointTags |
- * None |
- * Key-value pairs for point tags to be added to each point reporting to Wavefront. |
- *
- *
- */
-@JsonTypeName("wavefront")
-public class WavefrontReporterFactory extends BaseReporterFactory {
- @NotEmpty
- private String proxyHost = "localhost";
-
- @PortRange
- private int proxyPort = 2878;
-
- @NotNull
- private String prefix = "";
-
- @NotNull
- private String metricSource = "";
-
- @NotNull
- private Map