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

Fix logging to stdout #1489

Merged
merged 5 commits into from
Feb 29, 2024
Merged

Fix logging to stdout #1489

merged 5 commits into from
Feb 29, 2024

Conversation

schans
Copy link
Contributor

@schans schans commented Feb 10, 2024

Allow for setting logFile to /dev/stdout for logging to stdout. Log settings are set directly in the mongodb-agent comment instead of passing through the environment (which is not the most secure way).

All Submissions:

  • Have you opened an Issue before filing this PR?
  • Have you signed our CLA?
  • Have you checked to ensure there aren't other open Pull Requests for the same update/change?
  • Put closes #XXXX in your comment to auto-close the issue that your PR fixes (if such).

Allow for setting logFile to /dev/stdout for logging to stdout.
Log settings are set directly in the mongodb-agent comment instead of passing through the environment (which is not the most secure way).
@schans
Copy link
Contributor Author

schans commented Feb 10, 2024

This addresses #1439

closes #1439

@slaskawi
Copy link
Contributor

Let me assign this to @lsierant for review

@schans
Copy link
Contributor Author

schans commented Feb 15, 2024

Thanks!

@schans
Copy link
Contributor Author

schans commented Feb 19, 2024

Hi @lsierant ,

Please don't hesitate to reach out to me if you need some extra info or if you would like some update to the PR. I'm happy to work with you to find a solution for this as it is blocking our upgrades to newer mongo versions.

Thanks
Bart

@schans
Copy link
Contributor Author

schans commented Feb 21, 2024

Noticed the unit test failed. I probably overlooked something there. I will update the PR

Run go test -v ./controllers/...
# github.com/mongodb/mongodb-kubernetes-operator/controllers/construct [github.com/mongodb/mongodb-kubernetes-operator/controllers/construct.test]
Error: controllers/construct/build_statefulset_test.go:18[4](https://github.com/mongodb/mongodb-kubernetes-operator/actions/runs/7858171594/job/21809088638?pr=1489#step:6:5):19: undefined: agentLogFileEnv
Error: controllers/construct/build_statefulset_test.go:18[6](https://github.com/mongodb/mongodb-kubernetes-operator/actions/runs/7858171594/job/21809088638?pr=1489#step:6:7):19: undefined: agentLogLevelEnv
Error: controllers/construct/build_statefulset_test.go:188:19: undefined: agentMaxLogFileDurationHoursEnv

@schans
Copy link
Contributor Author

schans commented Feb 21, 2024

Updated unit test. Instead of testing for the env variables it now test for the construction of the agent command.

@schans
Copy link
Contributor Author

schans commented Feb 21, 2024

Sorry. Missed the env count check, should be all green now.

@schans
Copy link
Contributor Author

schans commented Feb 25, 2024

Hi @slaskawi and @lsierant,

Thank you for all your support so far. Please let me know how I can help to get this merged/fixed!

@mircea-cosbuc mircea-cosbuc added the safe-to-test Add this label to PRs from forks to trigger E2E tests label Feb 26, 2024
@nammn nammn assigned nammn and unassigned lsierant Feb 28, 2024
Copy link
Collaborator

@nammn nammn left a comment

Choose a reason for hiding this comment

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

LGTM and thanks for your contribution!

// To keep consistent with old behavior not setting the logFile in the config does not log to stdout but keeps
// the default logFile as defined by DefaultAgentLogFile. Setting the logFile explictly to "/dev/stdout" will log to stdout.
agentLogOptions := ""
if logFile != "/dev/stdout" {
Copy link
Collaborator

Choose a reason for hiding this comment

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

From a reading perspective I prefer the inverse:

if logFile == ...{}

else:
{}

@nammn nammn merged commit 238e094 into mongodb:master Feb 29, 2024
45 checks passed
@legal90
Copy link

legal90 commented Apr 3, 2024

@schans Thank you for fixing this issue! 👍

@nammn Do you have any estimates when there could be a new version of community operator with this fix included? Thanks!

@nammn
Copy link
Collaborator

nammn commented Apr 23, 2024

@legal90 there are plans to release in about 2-3 weeks
cc. @dan-mckean

@uttammeena
Copy link

@legal90 there are plans to release in about 2-3 weeks cc. @dan-mckean

Any date in sight for this release?

@jlestrange
Copy link

Hi @nammn

Any update on when this is going to be released, we need this update to be able to use the latest version of the app?

Thanks

@nammn
Copy link
Collaborator

nammn commented Jun 26, 2024

@jlestrange @uttammeena @legal90 @laiminhtrung1997 sorry for the late reply and release, but its out now!
https://github.com/mongodb/mongodb-kubernetes-operator/releases/tag/v0.10.0

@laiminhtrung1997
Copy link

Dear @nammn @schans
I’m currently utilizing MongoDB Operator version 0.9.0 and have configured the agent.logFile to /dev/stdout. As per my understanding from issue #1439, all log levels will now be directed to stdout instead of just agent.logLevel: INFO, correct? If that’s the case, wouldn’t this lead to the occurrence of issue #1226? Could you please help me confirm this?

@nammn
Copy link
Collaborator

nammn commented Jul 5, 2024

Hey @laiminhtrung1997

  • if configured to stdout all loglevels will go to stdout
  • no, the volume shouldn't fill up - since all logs go to stdout and not to a file, can you clarify what you mean?

@laiminhtrung1997
Copy link

Dear @nammn
Sorry for my silly question, I want to ensure the issue from #1226 has not occurred in my environment. Thanks for your quick reply.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
safe-to-test Add this label to PRs from forks to trigger E2E tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants