0

Confluent has something called Audit Logs which are written to internal topics (if configured) and which log access to Kafka resources such as clients writing or reading from particular topics. That's all great, however, there are components in a Confluent/Kafka setup such as Confluent Control Center which (should) have a RBAC access set up for users to log in and use.

It is possible to set it up and have users log in with username and password but I am having difficulties in locating where exactly Confluent provides logs of successful/unsuccessful login attempts. If I set the Control Center logs to DEBUG, I can see the HTTP communication and the password lookup for when a user tries to login but I don't see an option for admin review and control of such events. Audit Logs are apparently only for Kafka resources. Is there no other option other than building up a custom solution, scraping DEBUG logs?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
  • If I understand the question, you want HTTP access logs? Maybe you should front Control Center with Nginx/httpd reverse proxy where you can access that information better? – OneCricketeer Sep 22 '22 at 15:28

1 Answers1

0

The list of auditable events is documented here. Confluent Control Center login events are unfortunately not one of them.

Kiril
  • 998
  • 1
  • 11
  • 20
  • Any idea about Connector logs. Although it isn't in the list provided by you but still would like to check if there is any way to enable for connectors. – Dixit Singla Jun 07 '23 at 08:25