Skip to content

tomcashman/metrics-elasticsearch

Repository files navigation

metrics-elasticsearch

Kibana-friendly Transport and HTTP Elasticsearch reporters for Dropwizard Metrics

Versions

If using the HTTP API, any version of Elasticsearch that supports the Bulk API will report fine using any version of metrics-elasticsearch.

However, if using the Transport API, please note that metrics-elasticsearch uses a specific version of Elasticsearch noted in the table below.

metrics-elasticsearch dropwizard metrics elasticsearch
1.0.0 3.1.0 1.2.4
1.0.1 3.1.1 1.2.4
1.1.0 3.1.1 1.3.9

## Usage

Setting up Maven & Gradle

Reporters

The Dropwizard Metrics user guide documents how to set up the metrics registry and create different types of metrics.

This library provides two different methods to report to Elasticsearch; using the HTTP API and using the Transport API.

HTTP Reporter

The following will create a reporter that uses an already initialised Metric Registry, sets the indexes generated as "test-YYYY.MM.DD" and reports over HTTP to localhost:9201.

ElasticsearchReporter reporter = ElasticsearchHttpReporter
                .forRegistryAndIndexPrefix(registry, "test")
                .build("localhost:9201");
reporter.start(1, TimeUnit.SECONDS);

The reporter above is created with default values. You can change how the metrics are reported using further options like the example below.

ElasticsearchReporter reporter = ElasticsearchHttpReporter
                .forRegistryAndIndexPrefix(registry, "test")
                .withTimestampFieldName("@timeywimey")
                .withClock(Clock.defaultClock()).prefixedWith("metric-name-prefix-")
                .convertRatesTo(TimeUnit.SECONDS)
                .convertDurationsTo(TimeUnit.MILLISECONDS)
                .withBulkRequestLimit(10).filter(MetricFilter.ALL)
                .build("localhost:9201");
reporter.start(1, TimeUnit.SECONDS);

Transport Reporter

The following will create a reporter that uses an already initialised Metric Registry, sets the indexes generated as "test-YYYY.MM.DD" and reports over the Transport API using an Elasticsearch client instance.

ElasticsearchReporter reporter = ElasticsearchTransportReporter
                .forRegistryAndIndexPrefix(registry, "test")
                .build(client);
reporter.start(1, TimeUnit.SECONDS);

The reporter above is created with default values. You can change how the metrics are reported using further options like the example below.

ElasticsearchReporter reporter = ElasticsearchTransportReporter
                .forRegistryAndIndexPrefix(registry, "test")
                .withTimestampFieldName("@timeywimey")
                .withClock(Clock.defaultClock()).prefixedWith("metric-name-prefix-")
                .convertRatesTo(TimeUnit.SECONDS)
                .convertDurationsTo(TimeUnit.MILLISECONDS)
                .withBulkRequestLimit(10).filter(MetricFilter.ALL)
                .build(client);
reporter.start(1, TimeUnit.SECONDS);

## Data Format

The data will be inserted under the specified index suffixed with the year, month and day (YYYY.MM.DD). The type used is the metric type (e.g. guage, histrogram, meter, etc.). Each document inserted into Elasticsearch will have its ID generated by Elasticsearch. The document itself stores the timestamp, metric name and metric values.

About

Kibana-friendly Transport and HTTP Elasticsearch reporters for Dropwizard Metrics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages