Dmytro
Dmytro
### Relevant telegraf.conf ```toml [[inputs.zookeeper]] servers = ["zookeeper-0.zookeeper.zookeeper-ns.svc.cluster.local:2181"] timeout = "5s" insecure_skip_verify = true ``` ### Logs from Telegraf ```text E! [inputs.zookeeper] Error in plugin: unexpected line in mntr response:...
I'm trying to resolve the issue with frontend (next.js) served over HTTPS and gRPC via HTTP. The issue is in content security policy. Due to CSP and HTTPS ``` new...
I have set a custom delete action for one of models. Same as in this article: [article](https://davejlong.com/2017/05/24/writing-a-custom-action-in-exadmin/) But instead of index GET redirection it sends DELETE. Any idea how to...
Please help, how to sort `grid index as: :grid, columns: 4`? I have tried to define order in `scope :all` but it doesn't call `all` even by clicking it in...
Any idea how to use ex_admin with abstract tables which contain arc_ecto type? ``` schema "abstract table: images" do field :image, ImageUploader.Type field :assoc_id, Ecto.UUID timestamps() end ```
There is a many-to-many association between users. It describes follower-following relationships. MyApp.User module contains: ``` has_many :connections, MyApp.Connection has_many :followings, through: [:connections, :following], foreign_key: :following_id has_many :followers, through: [:connections, :follower],...
There is a new problem appeared today after I have updated deps. Google says possibly it's tls version error. Any idea how to fix it? ``` ** (Mix) Could not...
adding cache config with ``` CacheConfiguration cacheConfig = new CacheConfiguration(); new IgniteConfiguration() .setCacheConfiguration(cacheConfig); ``` in Spring Boot 3.2.1, Java 21. The result is `Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with...
### Issue submitter TODO list - [X] I've looked up my issue in [FAQ](https://docs.kafka-ui.provectus.io/faq/common-problems) - [X] I've searched for an already existing issues [here](https://github.com/provectus/kafka-ui/issues) - [X] I've tried running `master`-labeled...