Skip to content

Commit

Permalink
Merge pull request #18492 from newrelic/tabatha/serialization-errors
Browse files Browse the repository at this point in the history
fix: resolve serialization errors
  • Loading branch information
tabathadelane authored Aug 27, 2024
2 parents 73d5fea + eb4d59f commit 676a19f
Showing 1 changed file with 58 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,42 +35,64 @@ To send your runtime information to New Relic, you must provide the New Relic AP
2. Click <DNT>**Details**</DNT> on the environment you wish to monitor with New Relic.
3. Switch to the <DNT>**Details**</DNT> tab.
4. Add the following custom environment variables:
<table><thead><tr><th>Variable
</th>
<th>Description
</th>
</tr>
</thead>
<tbody><tr><td>`NEW_RELIC_LICENSE_KEY`
</td>
<td>New Relic [License key](/docs/apis/intro-apis/new-relic-api-keys/).
</td>
</tr>
<tr><td>`NEW_RELIC_LOGS_URI`
</td>
<td>URI for the New Relic’s Logs API. For more information, consult [New Relic Regions](https://docs.mendix.com/developerportal/operate/newrelic-metrics/#uri-regions). For valid values, see [Send your logging data with our log API](/docs/logs/log-api/introduction-log-api/)
Example: `https://log-api.eu.newrelic.com/log/v1`
</td>
</tr>
<tr><td>`NEW_RELIC_METRICS_URI`
</td>
<td>URI for the New Relic’s Metrics API. For more information, consult [New Relic Regions](https://docs.mendix.com/developerportal/operate/newrelic-metrics/#uri-regions). For valid values, see [Report metrics via the metric API](/docs/data-apis/ingest-apis/metric-api/report-metrics-metric-api/).
Example: `https://metric-api.eu.newrelic.com/metric/v1`.
</td>
</tr>
<tr><td>`NEW_RELIC_APP_NAME`
(optional)
</td>
<td>Mendix application name shown on New Relic’s APM & Services page. Default: Domain host name.
</td>
</tr>
<tr><td>`LOGS_REDACTION`
(optional)
</td>
<td>Email addresses are automatically redacted before log entries are sent to New Relic. To disable this redaction, set `LOGS_REDACTION` to `false`. Default: `true`.
</td>
</tr>
</tbody></table>
<table>
<thead>
<tr>
<th>
Variable
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
`NEW_RELIC_LICENSE_KEY`
</td>
<td>
New Relic [License key](/docs/apis/intro-apis/new-relic-api-keys/).
</td>
</tr>
<tr>
<td>
`NEW_RELIC_LOGS_URI`
</td>
<td>
URI for the New Relic’s Logs API. For more information, consult [New Relic Regions](https://docs.mendix.com/developerportal/operate/newrelic-metrics/#uri-regions). For valid values, see [Send your logging data with our log API](/docs/logs/log-api/introduction-log-api/)
Example: `https://log-api.eu.newrelic.com/log/v1`
</td>
</tr>
<tr>
<td>
`NEW_RELIC_METRICS_URI`
</td>
<td>
URI for the New Relic’s Metrics API. For more information, consult [New Relic Regions](https://docs.mendix.com/developerportal/operate/newrelic-metrics/#uri-regions). For valid values, see [Report metrics via the metric API](/docs/data-apis/ingest-apis/metric-api/report-metrics-metric-api/).
Example: `https://metric-api.eu.newrelic.com/metric/v1`.
</td>
</tr>
<tr>
<td>
`NEW_RELIC_APP_NAME`
(optional)
</td>
<td>
Mendix application name shown on New Relic’s APM & Services page. Default: Domain host name.
</td>
</tr>
<tr>
<td>
`LOGS_REDACTION`
(optional)
</td>
<td>
Email addresses are automatically redacted before log entries are sent to New Relic. To disable this redaction, set `LOGS_REDACTION` to `false`. Default: `true`.
</td>
</tr>
</tbody>
</table>
5. Return to the <DNT>**Environments**</DNT> page for your app and <DNT>**Deploy**</DNT> or <DNT>**Transport**</DNT> your app into the selected environment.

<Callout variant="important">
Expand Down

0 comments on commit 676a19f

Please sign in to comment.