Hugo Hromic

Results 99 comments of Hugo Hromic

Thanks for the heads-up! I will test once more to ensure transmission is selectively directed to different interfaces and the same for receiving, then I will merge the code for...

+1 I was also expecting `base_url` to allow for any base URL, not just absolute. Moreover, I just tried using a `URL` object for `base_url`, and while the assertion doesn't...

We are also affected by this. Unfortunately, this is a long-standing known issue in Docker itself: https://github.com/moby/moby/issues/35437 A good summary explanation is in here: https://github.com/moby/moby/issues/35437#issuecomment-504104947 This bug has also been...

As an alternative to modifying Prometheus, one can get the address from the `__meta_dockerswarm_node_manager_address` label when `__meta_dockerswarm_node_address` is `0.0.0.0` or when `__meta_dockerswarm_node_manager_leader` is `true` via relabelling (as shown in your...

This is the relabelling configuration we are using successfully so far to scrape node exporters on the nodes: ```yaml - job_name: dockerswarm_node dockerswarm_sd_configs: - host: unix:///var/run/docker.sock role: nodes relabel_configs: #...

> Thanks for posting your solution. Prometheus SD generally only dump what we receive from the API's, so I don't think we should change something here on our side. That's...

> Hey @hhromic , just checking if you have any further thoughts on this before it gets merged in! Hi @neuronull, appreciate the consideration! From my side I think there...

Hello, I'm on the same boat here in my company. We started our Docker Swarm adventure last year with Portainer and the integrated Agent setup in a Swarm stack. Then,...

@till of course! From my initial assessment, the trick here will be to align the `endpointId` values where relevant. For instance, all existing stacks will have `endpointId` set to the...

> Also, ideally, the Agent should be able to read a dedicated Agent Shared Secret from a Swarm secret (i.e. a file) instead of an environment variable so we do...