Cobertos

Results 81 comments of Cobertos

Interesting, possibly because it's packaged with PyInstaller, which is pretty off the shelf Python packaging infrastructure. I'll look for a fix but not sure if it'll be easy to get...

I believe this was when switching to `tarsafe` instead of `tarfile` as `tarsafe` does a [iteration over names](https://github.com/beatsbears/tarsafe/blob/master/tarsafe/tarsafe.py#L36) which was [a previous source of slowness](https://github.com/Cobertos/unitypackage_extractor/pull/5) Ideally `tarsafe` would need to...

I'm thinking: 1. Add an `--unsafe` flag to use `tarfile` instead of `tarsafe` 2. Add a print message right before extraction like `Extraction checks the security of every .tar file...

@catfag any thoughts maybe?

It seems that this is occurs without cors-anywhere, you just have to mount the webdav server not on the root domain, but on a path of it. I updated the...

Yes, it does look like it happens with the parent repo. I pushed a commit to use `webdav` and `.getDirectoryContents()` directly and I see the duplicated entry I will take...

Made a PR, see https://github.com/perry-mitchell/webdav-client/pull/324 . Turns out it was not where I mounted the webdav server, but just that my calls were not using the leading `/`, like all...

So the final implementation for the gauge is as follows: * Healthy = 1 * Starting = 0.5 * Unhealthy = 0 * No health information, we never publish the...

Any chance this can get merged @sandersaares ?

If anyone is looking to use this today, you can always use a git submodule. `git submodule add https://github.com/Cobertos/docker_exporter` Then in your `docker-compose.yml` ``` prometheus-docker-exporter: build: context: docker_exporter/ restart: always...