New Post: Embedded Linux Logging Article - #644
Draft
grace-nordic wants to merge 2 commits into
Draft
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new draft Interrupt post describing logging strategies for resource-constrained embedded Linux devices, focusing on flash wear, RAM pressure, and practical daemon/configuration tradeoffs.
Changes:
- Introduces a new draft article covering kernel logging, syslog vs journald, and storage/rate-limiting considerations.
- Adds example configurations (journald.conf options and a Fluent Bit pipeline) plus references.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+2
to
+13
| # This is a template for Interrupt posts. Use previous, more recent posts from the _posts/ | ||
| # directory for more inspiration and patterns. | ||
| # | ||
| # When submitting a post for publishing, submit a PR with the post in the _drafts/ directory | ||
| # and it will be moved to _posts/ on the date of publish. | ||
| # | ||
| # e.g. | ||
| # $ cp _drafts/_template.md _drafts/my_post.md | ||
| # | ||
| # It will now show up in the front page when running Jekyll locally. | ||
|
|
||
| title: Embedded Linux Logging |
| ForwardToSyslog=no | ||
| ``` | ||
|
|
||
| journald allows you to store logs in a few different places in memory: |
Deploying interrupt with
|
| Latest commit: |
6c87725
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a6fac1aa.interrupt.pages.dev |
| Branch Preview URL: | https://grace-linux-log.interrupt.pages.dev |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new draft article covering Embedded Linux logging strategies for resource-constrained devices. It walks through various different logging daemons available and ideas to help reduce overall log volume while still preserving critical information for debugging devices.