In my kibana.yml I have given the following. But I don't see kibana logs being written to the path I defined
logging:
root:
level: all
appenders:
rolling-file:
type: rolling-file
fileName: /apps/elk/logs/kibana.log
policy:
type: size-limit
size: 100mb
strategy:
type: numeric
pattern: '-%i'
max: 10
layout:
type: json
rudolf
(Rudolf Meijering)
September 14, 2021, 2:43pm
2
you've defined an appender, but your configuration isn't using it.
You can try the following:
logging:
root:
level: all
appenders: [rolling-file]
appenders:
rolling-file:
type: rolling-file
fileName: /apps/elk/logs/kibana.log
policy:
type: size-limit
size: 100mb
strategy:
type: numeric
pattern: '-%i'
max: 10
layout:
type: json
system
(system)
Closed
October 12, 2021, 2:43pm
3
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.