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

change ulimit, open files and maxprocs to debug log level #855

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

Unreleased changes are available as `coupergateway/couper:edge` container.

* **Changed**
* `ulimit`, open files and max procs values are now logged with `debug` log level

---

## [1.13.0](https://github.com/coupergateway/couper/releases/tag/v1.13.0)
Expand Down
2 changes: 1 addition & 1 deletion command/run_syscall.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ func logRlimit(logEntry *logrus.Entry) {
if err != nil {
logEntry.Warnf("ulimit: error retrieving file descriptor limit")
} else {
logEntry.Infof("ulimit: max open files: %d (hard limit: %d)", lim.Cur, lim.Max)
logEntry.Debugf("ulimit: max open files: %d (hard limit: %d)", lim.Cur, lim.Max)
}
}
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func realmain(ctx context.Context, arguments []string) int {
logger := newLogger(confFile.Settings.LogFormat, confFile.Settings.LogLevel, confFile.Settings.LogPretty)

// respect assigned CPU limits
_, err = maxprocs.Set(maxprocs.Logger(logger.Infof))
_, err = maxprocs.Set(maxprocs.Logger(logger.Debugf))
if err != nil {
logrus.Error("maxprocs.Set: ", err)
}
Expand Down
Loading