Alexander Marshalov

Results 11 issues of Alexander Marshalov

``` class ArgsList(object): def __init__(self, args=None):  self._args = args or [] @property def all(self):  return self._args @property def copy(self):  return ArgsList(self.all) my_args = ArgsList([1,2,3,4,5]) tmp_args = my_args.copy tmp_args.all[0] = 999...

for subqueries fixed behavior of functions that use query time range in their logic (like `start`, `end`, and `running_*`), from now on when using in subqueries they respect time range...

metricsql

At the moment it is not obvious how to use vmalert only for recording rules (without notifier) in k8s-stack chart. I think that disabling of vmalertmanager (without adding notifiers) should...

bug
k8s-stack

- Added alerting rules for VictoriaMetrics operator - +Updated alerting rules for VictoriaMetrics components --- - issue: https://github.com/VictoriaMetrics/operator/issues/526 - should be merged after: https://github.com/VictoriaMetrics/operator/pull/828

k8s-stack

At the moment health check scheme for vmauth is hardcoded in chart templates, and if a user has enabled TLS, the health check does not work. More details: https://victoriametrics.slack.com/archives/CGZF1H6L9/p1683041088067339

enhancement
auth

### Describe the bug The browser "go back" button doesn't work properly after time range change. ### To Reproduce 1. Open [play.victoriametrics.com](https://play.victoriametrics.com/select/0/vmui/#/?g0.expr=sum%28up%29&g0.range_input=30m&g0.end_input=2024-04-17T07%3A45%3A32&g0.tab=0&g0.relative_time=last_30_minutes&g0.tenantID=0) ![image](https://github.com/VictoriaMetrics/VictoriaMetrics/assets/495795/6b91fb64-7838-43ea-a5a5-6dc8e212f663) 2. Change the interval to `` ->...

bug
vmui

### Is your feature request related to a problem? Please describe We need to add the ability to set the tenant through HTTP headers as an alternative [Multitenancy via labels](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html?highlight=/multitenant/#multitenancy-via-labels)....

enhancement