Roman Vynar

Results 71 comments of Roman Vynar

You don't need a new metric for this, you can use any existing ones `mysql_slave_status_*`. For example ``` absent(mysql_slave_status_connect_retry{instance="foobar"}) ``` returns 1 if slave is not configured or nothing if...

All you need is a regex to match all your mysql hosts `{instance=~"foo\d{3}"}` or some any other label you may want to tag your mysql instances to be captured.

You can filter out the list to a single domain, e.g. ``` login_url = "https://accounts.google.com/o/oauth2/auth?access_type=online&hd=mydomain.com" ```

Ansible 2.13.2 when doing "with_fileglob" on `template` task. Using the master version of mitogen as of today. ``` - name: Copy template files template: src={{item}} dest=/usr/local/folder/ with_fileglob: - "../templates/*.conf" register:...

Same here, ubuntu2004 repo is broken because the previous key `7fa2af80.pub` stopped working. The right one can be found here `ubuntu1804/x86_64/3bf863cc.pub` 😐

You can easily disable the default json logger: ``` e := echo.New() e.Logger.SetLevel(99) ``` Then define you own LoggingMiddleware.

It would be great if the image for a security tool in particular is signed.

Yea, it's not supported with auto-builds but as long as the releases are not often, it may be ok pushing by some other mean of automation. From my side, I...

You can create a container with the command like `-config-file=....` w/o rebuilding an image.

We implemented this using nginx + oauth2_proxy. The last one can set `X-Auth-Request-User` and `X-Auth-Request-Email` headers and UI can check it against configured `admins` in UI config. nginx config: ```...