Дмитрий

Results 6 comments of Дмитрий

How to fix it in CRA-driven project?

Just faced this issue. I don't know golang, but I think cause in [this lines](https://github.com/roidelapluie/prometheus/blob/1fac1c783bf6bc19d6883e7cb413fbf0f6f1381a/discovery/dockerswarm/dockerswarm.go#L23-L24). Docker repo has been moved to [https://github.com/moby/moby](https://github.com/moby/moby).

Same problem. As a workaround, remove special HTML chars from description (change `< 10% left` to `&lt; 10% left`).

Look network request inside browser console %)

I've found a workaround: ```javascript axios_inst.interceptors.request.use(request => { const access_token = localStorage.getItem("access_token"); if (access_token) { request.headers['Authorization'] = `Bearer ${access_token}`; } return request; }); ``` But for some reason this additional...

> @jafnhaar > > could you provide an example? You need to remove special chars from your rules, like this: ```yaml - alert: HostOutOfMemory expr: node_memory_MemAvailable_bytes / node_memory_MemTotal_bytes * 100...