All Projects → newrelic → micrometer-registry-newrelic

newrelic / micrometer-registry-newrelic

Licence: Apache-2.0 license
Micrometer registry implementation that sends data to New Relic as dimensional metrics.

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects
shell
77523 projects

Projects that are alternatives of or similar to micrometer-registry-newrelic

newrelic-telemetry-sdk-java
Java library for sending telemetry data to New Relic
Stars: ✭ 34 (+25.93%)
Mutual labels:  telemetry, newrelic, open-telemetry, open-telemetry-java, telemetry-java
Spring Cloud Sleuth
Distributed tracing for spring cloud
Stars: ✭ 1,531 (+5570.37%)
Mutual labels:  open-telemetry, open-telemetry-java
newrelic-telemetry-sdk-python
A python library to send data to New Relic!
Stars: ✭ 23 (-14.81%)
Mutual labels:  telemetry, newrelic
probe-scraper
Scrape and publish Telemetry probe data from Firefox
Stars: ✭ 18 (-33.33%)
Mutual labels:  telemetry
ESP32
DroneBridge for ESP32. A short range wifi based telemetry link. Support for MAVLink, MSP & LTM (iNAV).
Stars: ✭ 183 (+577.78%)
Mutual labels:  telemetry
appinsights-rs
Application Insights SDK for Rust
Stars: ✭ 29 (+7.41%)
Mutual labels:  telemetry
taar
Telemetry-Aware Addon Recommender
Stars: ✭ 23 (-14.81%)
Mutual labels:  telemetry
nrjmx
Command line tool to connect to a JMX server and retrieve the MBeans it exposes.
Stars: ✭ 28 (+3.7%)
Mutual labels:  newrelic
stanza
Fast and lightweight log transport and processing.
Stars: ✭ 142 (+425.93%)
Mutual labels:  telemetry
Coderr.Client
Core client library for Coderr
Stars: ✭ 23 (-14.81%)
Mutual labels:  telemetry
k8s-webhook-cert-manager
Generate certificate suitable for use with any Kubernetes Mutating Webhook.
Stars: ✭ 59 (+118.52%)
Mutual labels:  newrelic
apollo-newrelic-extension
Apollo Server extension library for performing NewRelic transaction traces of graphql requests
Stars: ✭ 16 (-40.74%)
Mutual labels:  newrelic
nrql-simple
nrql-simple provides a convenient way to interact with the New Relic Insights query API.
Stars: ✭ 13 (-51.85%)
Mutual labels:  newrelic
browser-telemetry
A Telemetry module for collecting errors, logs, metrics, uncaught exceptions etc on browser side.
Stars: ✭ 20 (-25.93%)
Mutual labels:  telemetry
lumen-newrelic
New Relic instrumentation for the Lumen framework
Stars: ✭ 26 (-3.7%)
Mutual labels:  newrelic
ets2-mobile-route-advisor
ETS2 / ATS's Route Advisor, for mobile devices
Stars: ✭ 119 (+340.74%)
Mutual labels:  telemetry
Oculess
Removes account requirements and telemetry from Oculus Quest devices
Stars: ✭ 1,551 (+5644.44%)
Mutual labels:  telemetry
nr1-status-pages
NR1 Status Pages allows you to collect and display the statuses of key dependencies in one place.
Stars: ✭ 31 (+14.81%)
Mutual labels:  newrelic
orb
Orb is a dynamic network observability platform
Stars: ✭ 437 (+1518.52%)
Mutual labels:  telemetry
ApplicationInsights-Ruby
Microsoft Application Insights SDK for Ruby
Stars: ✭ 30 (+11.11%)
Mutual labels:  telemetry

Community Plus header

New Relic Micrometer registry

A Micrometer metrics registry for sending dimensional metrics to New Relic using the New Relic Java Telemetry SDK.

This registry should be able to be used both within a Spring Boot application, or any application that uses micrometer for recording metrics.

Note: the micrometer project currently includes a NewRelicMeterRegistry that writes metrics to NewRelic as custom events. This implementation is intended to supersede that, as dimensional metrics are a better fit for micrometer metrics than custom events.

Javadoc for this project can be found here: Javadocs

Usage

  1. via gradle:

    implementation 'com.newrelic.telemetry:micrometer-registry-new-relic:0.9.0'

    Note: you might need to also include a dependency on micrometer-core itself, for example:

    implementation 'io.micrometer:micrometer-core:1.6.4'

  2. via maven:

    <dependency>
        <groupId>com.newrelic.telemetry</groupId>
        <artifactId>micrometer-registry-new-relic</artifactId>
        <version>0.9.0</version>
    </dependency>
  1. The registry class is com.newrelic.telemetry.micrometer.NewRelicRegistry. It will need to be built via a com.newrelic.telemetry.micrometer.NewRelicRegistryConfig implementation. An example of how you might do that is in the wiki: Spring-Config-Example

In order to send metrics to New Relic, you will also need an Insert API Key. Please see New Relic Api Keys for more information.

And, that's it!

Find and use your data

For an in-depth breakdown of how Micrometer metrics are converted to New Relic dimensional metrics please read the Micrometer exporter specification.

Once telemetry data is received from the Micrometer registry, New Relic automatically detects the telemetry data as Micrometer metrics and creates a default summary page using those metrics. The service summary includes charts for response time, throughput, and error rate, as well as charts showing JVM metrics. You can also group and filter the charts by the dimensions available on the metrics.

Micrometer summary page Micrometer summary page

Additionally, if you wish to create your own charts based on other Micrometer metrics then you can use the Metrics explorer and Query builder to build your own dashboard.

Metrics explorer

Query builder

Additional documentation

Building

The project uses gradle 7.5.1 for building, and the gradle wrapper is provided.

To compile, run the tests and build the jar:

$ ./gradlew build

Support

New Relic hosts and moderates an online forum where customers can interact with New Relic employees as well as other customers to get help and share best practices. Like all official New Relic open source projects, there's a related Community topic in the New Relic Explorers Hub. You can find this project's topic/threads here:

https://discuss.newrelic.com/tags/javaagent

Contributing

We encourage your contributions to improve the New Relic Micrometer registry! Keep in mind that when you submit your pull request, you'll need to sign the CLA via the click-through using CLA-Assistant. You only have to sign the CLA one time per project.

If you have any questions, or to execute our corporate CLA (which is required if your contribution is on behalf of a company), drop us an email at [email protected].

A note about vulnerabilities

As noted in our security policy, New Relic is committed to the privacy and security of our customers and their data. We believe that providing coordinated disclosure by security researchers and engaging with the security community are important means to achieve our security goals.

If you believe you have found a security vulnerability in this project or any of New Relic's products or websites, we welcome and greatly appreciate you reporting it to New Relic through HackerOne.

If you would like to contribute to this project, review these guidelines.

Licensing

The New Relic Micrometer registry is licensed under the Apache 2.0 License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].