raphaelauv

Results 99 issues of raphaelauv

### Which version of the app are you running? provectuslabs/kafka-ui:30f836645de7635fffe13a4f24ad37965e4fb98c ### Is your proposal related to a problem? I can't order the topics depending theses two columns ![Screenshot from 2022-07-21...

type/enhancement
scope/backend
status/needs-attention

### Which version of the app are you running? provectuslabs/kafka-ui:30f836645de7635fffe13a4f24ad37965e4fb98c ### Is your proposal related to a problem? I would like to see Retention Hours , Retention Bytes , Cleanup...

type/enhancement
scope/backend
scope/frontend
status/needs-attention

**Describe the bug** provectus on the page listing the connectors is failing ( and not showing any connector ) when one connector is on FAILED state with a BIG trace...

type/bug
good first issue
scope/backend
status/accepted
status/confirmed

In a project A I want use a sslCertificates from a project B I tried : ```yaml ingress.gcp.kubernetes.io/pre-shared-cert: https://www.googleapis.com/compute/v1/projects/B/global/sslCertificates/ssl-cert-in-b ``` or ```yaml ingress.gcp.kubernetes.io/pre-shared-cert: projects/B/global/sslCertificates/ssl-cert-in-b ``` But it's not working ,...

Hi , it say that datastream have kafka has a destination , where do you see that ? I could not fund that information in the documentation Are you sure...

same than https://github.com/confluentinc/kafka-rest/issues/1030 impossible to produce an avro event that have a namespace ```python import requests headers = { 'Content-Type': 'application/vnd.kafka.avro.v2+json', "Accept": "application/vnd.kafka.v2+json" } event = { "event_id": "", }...

produce an avro message where the schema have a namespace is impossible ```json { "namespace": "team_a.service_b", "type":"record", "name":"access", "doc":"something", "fields":[ { "name":"event_id", "type":"string", "doc":"lalala" } ] } ``` ```python import...

same than https://github.com/confluentinc/kafka-rest/issues/1029 impossible to produce an avro event that have a field with a default value ```python import requests headers = { 'Content-Type': 'application/vnd.kafka.avro.v2+json', "Accept": "application/vnd.kafka.v2+json" } event =...

# if you specify the type AVRO it fail ```python import requests headers = { 'Content-Type': 'application/json', } data = { "key": { "type": "AVRO", "data": "AAAAAA" } } response...

produce an avro message where the schema have a default value is impossible ```json { "type":"record", "name":"access", "doc":"something", "fields":[ { "name":"event_id", "type":"string", "default":"", "doc":"lalala" } ] } ``` ```python import...