Mathias Palmersheim
Mathias Palmersheim
I think alerting on disk usage and scaling manually is the best approach since in order for autoscaling to work properly it would require a custom aggregate metric to scale,...
You can make the timeseries panel more like the logs volume panel, changing the graph style to bar under Graph styles when you are editing the panel I believe the...
this can be solved by adding `by(_time:5m)` in the query which will give you give you the count in an hour window so the whole query would be `_time:1h {container="myapp",...
try remove ing `_time:1h` from the start of your victorialogs query, and change the `by(_time:5m)` to `by(_time:1h)` and see if that works. _time:1h is limiting the response to messages sent...
If horizontal scaling is needed for vmalert could we use a similar strategy as vmagent where each vmalert knows the number of vmalerts and the replication factor and is calculate...
VictoriaMetrics enterprise offers mtls for communication between vmselect, vminsert, and vmstorage. Placing vmselect, vminsert, and vmstorage nodes on a VPN like wireguard would also solve this problem, but that would...
I do not believe it is possible for the logs datasource to detect generated fields from the unpack_json pipe. Would it be possible for you to parse the json using...
I believe the same issue would apply with any exact or unpack JSON since the [field_values API ](https://docs.victoriametrics.com/victorialogs/querying/#querying-field-values)is used for getting log data. However, most collectors have a way to...
could the issue be caused by the fact that `tmax_over_time` is only support and metricsql and not promql? and the `ExapndWithExprs` function only expands WITH templates and doesn't translate metricsql...
Is there a VMAgent CRD in the same namespace? If there is a VMAgent CRD in that namespace, are you able to forward port 8429 and view the targets endpoint...