forked from tarantool/tarantool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump metrics package submodule. Commits from PRs [1-4] affect Tarantool, the other ones are related to module infrastructure. 1. tarantool/metrics#482 2. tarantool/metrics#483 3. tarantool/metrics#484 4. tarantool/metrics#491 NO_DOC=doc is a part of submodule
- Loading branch information
1 parent
e5c4bd6
commit 2fcff2f
Showing
7 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## feature/lua | ||
|
||
* Deprecated using `cdata` values with `metrics` module `histogram:observe`. | ||
* Updated memtx metrics descriptions from `metrics` module to be consistent. | ||
* Added new metrics to `metrics` module: `tnt_memtx_tuples_data_total`, | ||
`tnt_memtx_tuples_data_read_view`, `tnt_memtx_tuples_data_garbage`, | ||
`tnt_memtx_index_total`, `tnt_memtx_index_read_view`, `tnt_vinyl_memory_tuple`, | ||
`tnt_config_alerts`, `tnt_config_status`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
require('test.metrics-luatest.helper') | ||
|
||
require('third_party.metrics.test.tarantool.config_metrics_test') |
Submodule metrics
updated
25 files
+1 −1 | .github/workflows/destroy-deployment.yml | |
+2 −2 | .github/workflows/packaging.yml | |
+2 −2 | .github/workflows/pull-translation.yml | |
+2 −2 | .github/workflows/push-translation.yml | |
+62 −22 | .github/workflows/test.yml | |
+2 −2 | .github/workflows/upload-translations.yml | |
+1 −0 | .luacheckrc | |
+25 −0 | CHANGELOG.md | |
+1 −0 | doc/monitoring/api_reference.rst | |
+74 −0 | doc/monitoring/metrics_reference.rst | |
+10 −0 | metrics/collectors/histogram.lua | |
+1 −0 | metrics/tarantool.lua | |
+76 −0 | metrics/tarantool/config.lua | |
+56 −24 | metrics/tarantool/memtx.lua | |
+7 −0 | metrics/tarantool/vinyl.lua | |
+16 −0 | metrics/utils.lua | |
+1 −1 | metrics/version.lua | |
+15 −0 | test/collectors/histogram_test.lua | |
+253 −0 | test/tarantool/config_metrics_test.lua | |
+2 −0 | test/tarantool/cpu_metrics_test.lua | |
+31 −0 | test/tarantool/memtx_metrics_test.lua | |
+3 −1 | test/tarantool/vinyl_test.lua | |
+235 −0 | test/tarantool3_helpers/server.lua | |
+146 −0 | test/tarantool3_helpers/treegen.lua | |
+7 −0 | test/utils.lua |