diff --git a/daprdocs/content/en/operations/monitoring/metrics/newrelic.md b/daprdocs/content/en/operations/monitoring/metrics/newrelic.md new file mode 100644 index 000000000..19b956823 --- /dev/null +++ b/daprdocs/content/en/operations/monitoring/metrics/newrelic.md @@ -0,0 +1,44 @@ +--- +type: docs +title: "How-To: Set-up New Relic to collect and analyze metrics" +linkTitle: "New Relic" +weight: 6000 +description: "Set-up New Relic for Dapr metrics" +--- + +## Prerequisites + +- Perpetually [free New Relic account](https://newrelic.com/signup?ref=dapr), 100 GB/month of free data ingest, 1 free full access user, unlimited free basic users + +## Background + +New Relic offers a Prometheus OpenMetrics Integration. + +This document explains how to install it in your cluster, either using a Helm chart (recommended). + +## Installation + +1. Install Helm following the official instructions. + +2. Add the New Relic official Helm chart repository following [these instructions](https://github.com/newrelic/helm-charts/blob/master/README.md#installing-charts) + +3. Run the following command to install the New Relic Logging Kubernetes plugin via Helm, replacing the placeholder value YOUR_LICENSE_KEY with your [New Relic license key](https://docs.newrelic.com/docs/accounts/install-new-relic/account-setup/license-key): + +- Helm 3 + ```bash + helm install nri-prometheus newrelic/nri-prometheus --set licenseKey=YOUR_LICENSE_KEY + ``` + +## View Metrics + +![Dapr Metrics](/images/nr-metrics-1.png) + +![Dashboard](/images/nr-dashboard-dapr-metrics-1.png) + +## Related Links/References + +* [New Relic Account Signup](https://newrelic.com/signup) +* [Telemetry Data Platform](https://newrelic.com/platform/telemetry-data-platform) +* [New Relic Prometheus OpenMetrics Integration](https://github.com/newrelic/helm-charts/tree/master/charts/nri-prometheus) +* [Types of New Relic API keys](https://docs.newrelic.com/docs/apis/get-started/intro-apis/types-new-relic-api-keys) +* [Alerts and Applied Intelligence](https://docs.newrelic.com/docs/alerts-applied-intelligence) diff --git a/daprdocs/static/images/nr-metrics-1.png b/daprdocs/static/images/nr-metrics-1.png new file mode 100644 index 000000000..200f875e7 Binary files /dev/null and b/daprdocs/static/images/nr-metrics-1.png differ