wojas
wojas
It would make sense to just add a handler for `/health` that always returns 200. I can think of the following additional things to check: - Check if the `.htpasswd`...
As a workaround, you could set the `-prometheus-no-auth` flag to disable auth on the `/metrics` endpoint, if you do not mind exposing the metrics or have a reverse proxy that...
I guess it depends on whether we consider `Error` to just be a friendly alias for `Info` that makes it easier to log an `error`, or a different part of...
Regardless, we probably do not want to panic on any kind of log input. If the log sink requires a non-nil error, it should check the value and do something...
> There is one major conceptual difference: `Error` is always logged, `Info` only when it meets the verbosity threshold. The way I have implemented it, Error is always logged at...
There is overlap with the funcr indeed. Feel free to remove it from the list. If I update it and feel that it's still useful, I will create a PR...
I noticed that @jelmer has just created a PR to update genericr, thanks for that! I will try to find some time this week to test it.
The current filesystem format is made to be compatible with how restic stores repositories on disk. You can directly run restic commands on a rest-server repo, which would not be...
I encountered the same issue when I needed to read multiple values with the same key set by a Go client. As mentioned above, the Go API suggests that multiple...
The rest-server does not know when a backup has ended. The protocol is stateless and any changes are driven by the client manipulating objects. There can also be more than...