The code in pusher.py hardcodes the path to be PATH = "/metrics" this is incompatible with VictoriaMetrics which uses the path /api/v1/import/prometheus but uses the same export format.
I suggest adding path: str = "/metrics" to the constructor of the pusher class this default value can be overwritten for VictoriaMetrics.
The code in pusher.py hardcodes the path to be
PATH = "/metrics"
this is incompatible with VictoriaMetrics which uses the path/api/v1/import/prometheus
but uses the same export format.I suggest adding
path: str = "/metrics"
to the constructor of the pusher class this default value can be overwritten for VictoriaMetrics.