Sven Walter

Results 70 comments of Sven Walter

Hello. It looks like this is a concurrency issue. We wrapped `Image.Process` around a mutex and the issues seem to be disappeared. This slows everything a bit down, but we...

I think Prometheus is also used very often with Kubernetes and using exec isn't a working solution there. I tried to figure out how `varnishstat` actually gets its data. Also...

It tried to implement this, but I failed because `varnishstat` demanded a running `varnishd`. Fortunately this idea is already impemented in [lswith/varnish_exporter](https://github.com/lswith/varnish_exporter). I don't know why the fork is diverging...

It turns out, that my previous try did not succeed, because I had varnish v4 for the actual proxy and varnish v5 for the exporter. This means sharing `/var/lib/varnish` between...

Hello. The indentation matters in yaml documents. `EC2Instance: true` is part of `disable-deletion-protection`: ```yaml feature-flags: disable-deletion-protection: RDSInstance: true EC2Instance: true CloudformationStack: true force-delete-lightsail-addons: true ``` This means setting `feature-flags` →...

Hello @leflamm, thanks for your issue. This feature is missing on purpose. *aws-nuke* is a very destructive tool and environment variables are usually invisible. You could for example pick up...

Hello. This is hard to do correctly, because not all resources support tags. And even if we add reliable tag support to all resources, there would be still virtual resources...

Hello. You have to specify the duration in hours. For example 90 days would be `2160h`. For example: ```yaml EC2Instance: - property: dateOlderThan value: "2160h" ``` ⚠️ It might also...

> Does property "dateOlderThan" support for all of the resource types nuke supports? No, only properties that look like a date. > By the way, this condition does not work....

Sounds like a duplicate of https://github.com/rebuy-de/aws-nuke/issues/613. Please try to exclude S3 Objects: ```yaml resource-types: excludes: - S3Object ``` If this does not work try to enable the verbose output (`-v`...