Sentinel-One / helm-charts

19 stars 12 forks source link

Agent logging at `debug` (not `info`) by default #166

Closed MPV closed 1 day ago

MPV commented 2 months ago

It seems the agents (but not the helper) logs at debug level by default (and not info as it says it should default to):

Since we were seeing [debug] logs (and millions of lines per agent per hour), until we explicitly set configuration.env.agent.log_level to info.

oded-s1 commented 1 day ago

The default log level is info.

MPV commented 1 day ago

The default log level is info.

The "" (linked above) evaluated to null, which the agent seemed to evaluate to debug.

We had to add these explicitly to get it to do info-level logging:

env:
    agent:
      log_level: "info"
    helper:
      log_level: "info"