tchiotludo / akhq

Kafka GUI for Apache Kafka to manage topics, topics data, consumers group, schema registry, connect and more...
https://akhq.io/
Apache License 2.0
3.34k stars 646 forks source link

UI-options don't seem to work at all. #994

Closed dezka closed 2 years ago

dezka commented 2 years ago

I have the following docker setup:

  akhq:
    image: tchiotludo/akhq
    hostname: kafkahq
    container_name: kafkahq
    environment:
      AKHQ_CONFIGURATION: |
        akhq:
          ui-options:
            topic:
              default-view: ALL
              skip-last-record: true
          connections:
            docker-kafka-server:
              properties:
                bootstrap.servers: "kafka:9092"
              schema-registry:
                url: "http://schema-registry:8081"

Note I'm trying to set default-view to ALL and skip-last-record to true. However, when I load the UI these don't seem to take effect:

Screen Shot 2022-01-26 at 11 15 43 AM

I've noticed similar behavior for akhq.ui-options.topic.show-all-consumer-groups as well.

tchiotludo commented 2 years ago

Can you tried with a private navigation please ? There is some options that is stored on the localStorage

dezka commented 2 years ago

In private mode it works.

There is some options that is stored on the localStorage

good to know, thanks for the info!