Skip to content
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

stackdriver: Refactor special fields docs #1585

Merged
merged 3 commits into from
Mar 13, 2025

Conversation

braydonk
Copy link
Contributor

The special fields documentation as it existed was a bit of a mishmash of old documentation for a previous logging agent solution and a lot of additions over the years trying to match the old format. It ends up reproducing a lot of information that is better stated by the existing Cloud Logging docs, while missing crucial details about how the plugin handled these cases. Certain fields were also missing.

This PR rewrites the documentation, doing more linking out to Google Cloud Logging documentation in place of rewording the same information. It also guides more generally on some of the edge cases for how the special fields are handled, calling out the exceptions in a clearer way. It also adds some fields that were previously missing from this document.

The special fields documentation as it existed was a bit of a mishmash
of old documentation for a previous logging agent solution and a lot of
additions over the years trying to match the old format. It ends up
reproducing a lot of information that is better stated by the existing
Cloud Logging docs, while missing crucial details about how the plugin
handled these cases. Certain fields were also missing.

This PR rewrites the documentation, doing more linking out to Google
Cloud Logging documentation in place of rewording the same information.
It also guides more generally on some of the edge cases for how the
special fields are handled, calling out the exceptions in a clearer way.
It also adds some fields that were previously missing from this
document.

Signed-off-by: braydonk <[email protected]>
| timestampSecond & timestampNanos | timestamp | The seconds and nanos that represents the time |
| JSON log field | [LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) field | type | Description |
| :--- | :--- | :--- | :--- |
| `logging.googleapis.com/logName` | `logName` | `string` | The log name to write this log to. |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we mention here or in this doc that each of those fields must no exceed a cardinality of 30k (https://cloud.google.com/logging/docs/logs-based-metrics/troubleshooting#too-many-time-series) if one wants to use log based metrics?

Copy link
Contributor Author

@braydonk braydonk Mar 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The particular way that log name happens to interact with log based metrics strikes me as something Fluent Bit itself shouldn't be concerned about, so I wasn't sure the right way to bring that in. I think I found a nice way to bring it in, while still mostly leaning on linking out to our own docs on the subjects. In 95ce2ea I add a new section to the main stackdriver plugin docs about default Log Name behaviour, along with how to customize it and some examples for why you may want to do this. Hopefully this should get across the point for anyone else who may encounter the same problem.

Side note: I think our own docs on this aren't amazing on this front either, and could probably do with some polishing. I'll raise it with the technical writers who (I think might) work on this internally.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot! An extra section makes a lot of sense.

Copy link
Contributor

@esmerel esmerel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lots of good updates here! I'm only not approving it because of the one spot where it looks like a URL is missing and I don't want to see broken render or bad links =)

@@ -55,7 +55,7 @@ If you are using a _Google Cloud Credentials File_, the following configuration

Example configuration file for k8s resource type:

local_resource_id is used by stackdriver output plugin to set the labels field for different k8s resource types. Stackdriver plugin will try to find the local_resource_id field in the log entry. If there is no field logging.googleapis.com/local_resource_id in the log, the plugin will then construct it by using the tag value of the log.
`local_resource_id` is used by stackdriver output plugin to set the labels field for different k8s resource types. Stackdriver plugin will try to find the local_resource_id field in the log entry. If there is no field logging.googleapis.com/local_resource_id in the log, the plugin will then construct it by using the tag value of the log.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`local_resource_id` is used by stackdriver output plugin to set the labels field for different k8s resource types. Stackdriver plugin will try to find the local_resource_id field in the log entry. If there is no field logging.googleapis.com/local_resource_id in the log, the plugin will then construct it by using the tag value of the log.
`local_resource_id` is used by the Stackdriver output plugin to set the labels field for different k8s resource types. Stackdriver plugin will try to find the `local_resource_id` field in the log entry. If there is no field `logging.googleapis.com/local_resource_id` in the log, the plugin will then construct it by using the tag value of the log.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in f2f67cf

There are likely a number of little cleanups to do here that I will try and find time to do. Nobody who has worked on these docs from the Google side is a technical writer by trade (nor am I) so a lot of it could be cleaner. Fixing these things ends up being sadly a bit of a side priority, but I will still try and come back and clean stuff up when the opportunity presents itself.


The JSON representation is as followed:
**If the field itself is not a map, the plugin will leave this field untouched.** For example:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
**If the field itself is not a map, the plugin will leave this field untouched.** For example:
If the field itself is not a map, the plugin will leave this field untouched. For example:

Copy link
Contributor Author

@braydonk braydonk Mar 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 95ce2ea

HttpRequest field is a common proto for logging HTTP requests.

The JSON representation is as followed:
**If there are extra subfields, the plugin will add the recognized fields to the corresponding field in the LogEntry, and preserve the extra subfields in jsonPayload.** For example:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
**If there are extra subfields, the plugin will add the recognized fields to the corresponding field in the LogEntry, and preserve the extra subfields in jsonPayload.** For example:
If there are extra subfields, the plugin will add the recognized fields to the corresponding field in the LogEntry, and preserve the extra subfields in jsonPayload. For example:

Copy link
Contributor Author

@braydonk braydonk Mar 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 95ce2ea


The span ID within the trace associated with the log entry.
The `labels` field is expected to be an `object<string, string>`. If any fields have a value that is not a string, the value will be ignored and **not preserved**. The plugin will log an error and drop the field.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The `labels` field is expected to be an `object<string, string>`. If any fields have a value that is not a string, the value will be ignored and **not preserved**. The plugin will log an error and drop the field.
The `labels` field is expected to be an `object<string, string>`. If any fields have a value that is not a string, the value will be ignored and not preserved. The plugin logs an error and drops the field.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in f2f67cf

@braydonk
Copy link
Contributor Author

the one spot where it looks like a URL is missing

Oops! Thanks, fixed in 40631d3.

@braydonk
Copy link
Contributor Author

Ah oops, I don't have automatic commit signing set up in my local environment for this repo. Force-push coming to fix the signing sorry!

@braydonk braydonk force-pushed the sd-refactor-special-fields branch from df54b1f to feed5e5 Compare March 12, 2025 19:55
@braydonk braydonk force-pushed the sd-refactor-special-fields branch from feed5e5 to f2f67cf Compare March 12, 2025 19:58
@braydonk
Copy link
Contributor Author

All open feedback should be addressed now, thanks!

@braydonk braydonk requested review from ensonic and esmerel March 12, 2025 20:01
@patrick-stephens patrick-stephens merged commit 096aab5 into fluent:master Mar 13, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants