Georgy Moiseev
Georgy Moiseev
`metrics` module supports Graphite. We should provide an example with Graphite monitoring stack, similar to Prometheus and InfluxDB ones.
Since InfluxDB 2.0 (November 2020), new query language was introduced. Flux has more features: for example, with join we may solve https://github.com/tarantool/grafana-dashboard/issues/39 or rewrite awful SQLs (like [this one](https://github.com/tarantool/grafana-dashboard/blob/c344da210ebe045ce4ee04af54a351cd040d675d/dashboard/panels/crud.libsonnet#L485-L496)). Moreover,...
Consider a possibility on how to add cluster overview panels (https://github.com/tarantool/grafana-dashboard/issues/19) to InfluxDB dashboard. https://habr.com/ru/company/raiffeisenbank/blog/490764/ may help
It would be convenient to publish new version of dashboard to Grafana Official & community built dashboards page with some sort of CI/CD, if it is possible.
It is possible to distinct docker-compose file sections with `--profile` flag: https://docs.docker.com/compose/reference/#use---profile-to-specify-one-or-more-active-profiles . Maybe it can be used to reduce copypaste in project and better organize docker infrastructure.
Run with luatest master https://github.com/tarantool/luatest/commit/18859f6a67d7f92bda12297869d56928d9d7dc88. ### Test preset Consider the following `test.lua`: ```lua local t = require('luatest') local g = t.group('integration') local helper = require('helper') g.before_all(function(cg) cg.server = t.Server:new({ env...
Despite all the retries and checks, sometimes vshard cluster fails to start from config. For example, see https://github.com/tarantool/crud/actions/runs/8541312165/job/23400336786 Log sample: ``` router | 2024-03-26 17:43:18.344 [446474] main/140/main/crud.storage_info storage_info.lua:77 E> Error...
Follows #350 Update conditions support field number ids (moreover, due to compatibility with older Tarantool, all non-number identificators are converted to number ones, see https://github.com/tarantool/crud/blob/3f2db887d13c00a0f1f402f59fba795fb39e5703/crud/common/utils.lua#L591-L618). Select/pairs are not, see #241...
`*_many` operations errors have `operation_data` field to help identify which exact records had errors. This info is used to automatize these processes: for example, in tt-ee `tt crud import`. But...
Let's consider the space with multipart unique key. One can be obtained from the playground with the following patch. ``` diff --git a/doc/playground.lua b/doc/playground.lua index d4e547f..86293a7 100755 --- a/doc/playground.lua +++...