|
| 1 | +# Elastic-Agent logging |
| 2 | +The Elastic-Agent process defines two log outputs: |
| 3 | + - The "internal" core that is used by monitoring components and |
| 4 | + collected in the diagnostics. It's configuration is **hardcoded**. |
| 5 | + This output always logs to files in |
| 6 | + `data/elastic-agent-<hash>/logs` and uses the default configuration |
| 7 | + defined in `elastic-agent-libs/logp`. |
| 8 | + - The "default" logger that is the user-configurable logger, it logs |
| 9 | + to the Elastic-Agent's root folder, it can also be configured to |
| 10 | + log to `stderr`. When running in a container environment, it |
| 11 | + defaults to logging to `stderr`. |
| 12 | + |
| 13 | +## Logger initialization |
| 14 | +The logger initialization is **not** one of the first things done by |
| 15 | +the Elastic-Agent. Looking at the normal Elastic-Agent run, here is |
| 16 | +the stack trace from the logging initialization. |
| 17 | +``` |
| 18 | + 0 0x00005e8768fea7ac in github.com/elastic/elastic-agent/pkg/core/logger.new |
| 19 | + at /devel/elastic-agent/pkg/core/logger/logger.go:83 |
| 20 | + 1 0x00005e8768fea54f in github.com/elastic/elastic-agent/pkg/core/logger.NewFromConfig |
| 21 | + at /devel/elastic-agent/pkg/core/logger/logger.go:65 |
| 22 | + 2 0x00005e876b511dba in github.com/elastic/elastic-agent/internal/pkg/agent/cmd.runElasticAgent |
| 23 | + at /devel/elastic-agent/internal/pkg/agent/cmd/run.go:151 |
| 24 | + 3 0x00005e876b5119e5 in github.com/elastic/elastic-agent/internal/pkg/agent/cmd.run |
| 25 | + at /devel/elastic-agent/internal/pkg/agent/cmd/run.go:138 |
| 26 | + 4 0x00005e876b51127e in github.com/elastic/elastic-agent/internal/pkg/agent/cmd.newRunCommandWithArgs.func1 |
| 27 | + at /devel/elastic-agent/internal/pkg/agent/cmd/run.go:78 |
| 28 | +``` |
| 29 | +This means some log entries might not be collected by diagnostics or |
| 30 | +shipped to the monitoring output. Everything in the `run` function |
| 31 | +happens before the logger initialization. |
| 32 | + |
| 33 | +https://github.com/elastic/elastic-agent/blob/574aa5db629231d56062ab40d27ccceb02cbbe4d/internal/pkg/agent/cmd/run.go#L104-L138 |
| 34 | + |
| 35 | +## Internal logging |
| 36 | +The internal logging output is crucial for the Elastic-Agent |
| 37 | +self-monitoring and diagnostics. It is instantiated by |
| 38 | +[MakeInternalFileOutput](https://github.com/elastic/elastic-agent/blob/574aa5db629231d56062ab40d27ccceb02cbbe4d/pkg/core/logger/logger.go#L153-L182) |
| 39 | +function that is called when a new logger is created. Its default |
| 40 | +configuration is: |
| 41 | + - 10Mb per log file |
| 42 | + - Maximum of 7 log files |
| 43 | + - Rotated on startup |
| 44 | + - ECS/JSON encoded |
| 45 | + - UTC timestamps |
| 46 | + |
| 47 | +## Default logging |
| 48 | +The default logger is the easiest to discover because it's user |
| 49 | +configurable, logs to the Agent's root directory and can output to |
| 50 | +`stderr`. It's default configuration comes from |
| 51 | +https://github.com/elastic/elastic-agent/blob/574aa5db629231d56062ab40d27ccceb02cbbe4d/pkg/core/logger/logger.go#L132-L148 |
| 52 | +and defaults to: |
| 53 | + - 20Mb per log file |
| 54 | + - Maximum of 7 log files |
| 55 | + - Rotated on startup |
| 56 | + - ECS/JSON are not explicitly set |
| 57 | + |
| 58 | +## Collecting logs for diagnostics |
| 59 | +The Elastic-Agent will only collect |
| 60 | +`data/elastic-agent-<hash>/logs`. The functions responsible for |
| 61 | +collecting logs during diagnostics are: |
| 62 | + - [`zipLogs`](https://github.com/elastic/elastic-agent/blob/574aa5db629231d56062ab40d27ccceb02cbbe4d/internal/pkg/diagnostics/diagnostics.go#L383-L415) |
| 63 | + - [`zipLogsWithPath`](https://github.com/elastic/elastic-agent/blob/574aa5db629231d56062ab40d27ccceb02cbbe4d/internal/pkg/diagnostics/diagnostics.go#L418-L476) |
| 64 | + |
| 65 | +`zipLogsWithPath` always appends the `/logs` to whatever path it |
| 66 | +receives. |
| 67 | + |
| 68 | +## Total footprint |
| 69 | +Given the two log outputs and their default log rotation policies, the |
| 70 | +Elastic-Agent needs about 210Mb (20Mb x 7 + 10Mb + 7 = 210Mb) of disk |
| 71 | +for logging. |
0 commit comments