-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from newrelic/content-related
Content related
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
|
||
path: '/collect-data/custom-attributes' | ||
duration: '' | ||
title: 'Add custom attributes to your New Relic data' | ||
template: 'GuideTemplate' | ||
description: 'Add metadata for more detailed analysis' | ||
--- | ||
|
||
<Intro> | ||
|
||
There are countless filters and pivots you might want to apply to your data. By adding custom attributes to your data, you can see beyond your code and analyze your business in-depth. | ||
|
||
You can add a `userid` custom attribute to your APM-reported data (`Transaction` and `TransactionError events`) with the Java APM agent's API. | ||
|
||
|
||
```NewRelic.addCustomParameter("userid", userId); | ||
``` | ||
|
||
|
||
Once added, you can run a NRQL query that uses the 'userid' custom attribute. | ||
|
||
```-- Get a count of errors experienced by a single filtered userid faceted by date and error message | ||
SELECT count(*) FROM TransactionError WHERE userid = '616e6472-6577-7340-7961-686f6f2e636f' FACET dateOf(timestamp), `error.message` SINCE 1 week ago | ||
``` | ||
<a href="https://developer.newrelic.com/technology/nrql">Learn more about NRQL/a> | ||
|
||
Once you have added a custom attribute like 'userid', you can use it to filter and facet your NRQL queries. | ||
|
||
<img src="https://developer.newrelic.com/content/dam/component-assets/developer/d09-screencap/UC2-sec1-query.png"> | ||
|
||
</Intro> | ||
|
||
|
||
### Related Info | ||
|
||
For more information, see [New Relic APM: Report custom attributes](https://docs.newrelic.com/docs/insights/insights-data-sources/custom-data/add-custom-attributes-new-relic-apm-data) |