Reputation: 158
I am trying to find information about logging system in kafka, what logs write to controller.log
, log-cleaner.log
, kafka-request.log
, state-change.log
, server.log
, kafka-authorizer.log
.
I didn't find it kafka documentation and by googling, what i find is how to load logs into kafka.
I need some description for this logs.
Upvotes: 0
Views: 1784
Reputation: 191983
what logs write to ...
You mean classes? Those are all listed in log4j.properties
server.log
- main broker processkafka-request.log
- Kafka protocol network requests on the brokercontroller.log
- controller of the clusterlog-cleaner.log
- details topic-log rotation and compaction eventskafka-authorizer.log
- generated from Kafka ACL authorization eventsstate-change.log
- Not sure, but source code seems to indicate it is a subprocess of monitoring the Controller stateUpvotes: 1