Skip to content

Commit

Permalink
Merge pull request #17261 from newrelic/various-hero-edits
Browse files Browse the repository at this point in the history
Various hero edits
  • Loading branch information
akristen committed May 10, 2024
2 parents 6fb0162 + c945170 commit aed66fe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/content/docs/logs/ui-data/parsing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ freshnessValidatedDate: never

import logsParsingUi from 'images/logs_screenshot-full_parsing-ui.webp'

At New Relic, log <DoNotTranslate>**parsing**</DoNotTranslate> refers to the process of pulling out [attributes](/docs/new-relic-solutions/get-started/glossary/#attribute) (key:value pairs) from your unstructured log data. You can use these attributes to search for and query logs in more practically useful ways, which in turn helps you build better charts and alerts.
Log <DoNotTranslate>parsing</DoNotTranslate> is the process of translating unstructured log data into attributes (key:value pairs) based on rules you define. You can use these attributes in your NRQL queries to facet or filter logs in useful ways.

New Relic parses log data automatically according to certain parsing rules. In this doc, you'll learn how logs parsing works, and how to create your own custom parsing rules.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@ Here's a guide to adding our pre-built layer to your code.
New Relic offers pre-built images that include our layer's different runtimes: Java, Node.js, Python, and extension-only.

1. Select the layer compatible with your specific Lambda function's runtime and region:

* [Java](https://gallery.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-java)
* [Node.js](https://gallery.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-nodejs)
* [Python](https://gallery.ecr.aws/x6n7b2o2/newrelic-lambda-layers-python)
* [Extension-only](https://gallery.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-lambdaextension)
3. **At the top of your Dockerfile** add the following code:
1. **At the top of your Dockerfile** add the following code:

<Tabs>
<Tabs>
<TabsBar>
<TabsBarItem id="java">Java</TabsBarItem>
<TabsBarItem id="node.js">Node.js</TabsBarItem>
<TabsBarItem id="python">Python</TabsBarItem>
<TabsBarItem id="nodejs">Node.js</TabsBarItem>
<TabsBarItem id="extension"> Extension-only</TabsBarItem>
</TabsBar>

<TabsPages>
<TabsPageItem id="1">
<TabsPageItem id="java">
```
FROM public.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-java:17-arm64 AS layer
Expand All @@ -40,7 +41,7 @@ New Relic offers pre-built images that include our layer's different runtimes: J
```
</TabsPageItem>

<TabsPageItem id="2">
<TabsPageItem id="python">
```
FROM public.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-python:38-arm64 AS layer
Expand All @@ -49,7 +50,7 @@ New Relic offers pre-built images that include our layer's different runtimes: J
```
</TabsPageItem>

<TabsPageItem id="3">
<TabsPageItem id="nodejs">
```
FROM public.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-nodejs:20-arm64 AS layer
Expand All @@ -58,7 +59,7 @@ New Relic offers pre-built images that include our layer's different runtimes: J
```
</TabsPageItem>

<TabsPageItem id="4">
<TabsPageItem id="extension">
```
FROM public.ecr.aws/newrelic-lambda-layers-for-docker/newrelic-lambda-layers-lambdaextension:x86 as layer
Expand Down

0 comments on commit aed66fe

Please sign in to comment.