-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(logs): (NR-371436) Clarify array support for logs #20149
base: develop
Are you sure you want to change the base?
fix(logs): (NR-371436) Clarify array support for logs #20149
Conversation
Hi @luckslovez 👋 Thanks for your pull request! Your PR is in a queue, and a writer will take a look soon. We generally publish small edits within one business day, and larger edits within three days. We will automatically generate a preview of your request, and will comment with a link when the preview is ready (usually 10 to 20 minutes). |
✅ Deploy Preview for docs-website-netlify ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -461,7 +461,8 @@ Attributes may be of any of the following types: | |||
</td> | |||
|
|||
<td> | |||
(unsupported) | |||
Arrays will be _stringified_ and stored as strings. In the case of OpenTelemetry logs, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we should be using the verb stringify in our pub docs, I'd rephrase it as: "Arrays will be converted to text ..."
@@ -461,7 +461,8 @@ Attributes may be of any of the following types: | |||
</td> | |||
|
|||
<td> | |||
(unsupported) | |||
Arrays will be _stringified_ and stored as strings. In the case of OpenTelemetry logs, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion:
Arrays will be _stringified_ and stored as strings. In the case of OpenTelemetry logs, | |
Arrays are converted to strings and then stored. OpenTelemetry logs support |
@@ -461,7 +461,8 @@ Attributes may be of any of the following types: | |||
</td> | |||
|
|||
<td> | |||
(unsupported) | |||
Arrays will be _stringified_ and stored as strings. In the case of OpenTelemetry logs, | |||
homogeneous arrays are supported. For more information see [arrays in OpenTelemetry](/docs/nrql/using-nrql/arrays-in-nrql/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
homogeneous arrays are supported. For more information see [arrays in OpenTelemetry](/docs/nrql/using-nrql/arrays-in-nrql/). | |
homogeneous arrays. For more information see [arrays in OpenTelemetry](/docs/nrql/using-nrql/arrays-in-nrql/). |
We've never clarified the difference in array processing between opentelemetry and the rest of ingestion mechanisms.
This PR aims to fix that.
Bascially, we stringify all arrays except for Opentelemetry homogeneous (one type) arrays.