Skip to content

[CircleCI Generated] generate-scheduled-12344 #721

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions site/data/3.12/allMetrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6325,6 +6325,38 @@
It shows the block cache capacity in bytes. This can be configured with
the `--rocksdb.block-cache-size` startup option.

- name: rocksdb_block_cache_charge_per_entry
introducedIn: "3.12.6"
help: |
Average size of entries in RocksDB block cache.
unit: bytes
type: gauge
category: RocksDB
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
The metric shows the average size of cache entry value in the RocksDB
block cache.

- name: rocksdb_block_cache_entries
introducedIn: "3.12.6"
help: |
Number of entries in the RocksDB block cache.
unit: number
type: gauge
category: RocksDB
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
This metric shows the total number of entries present in the RocksDB block
cache.

- name: rocksdb_block_cache_pinned_usage
introducedIn: "3.6.1"
help: |
Expand Down Expand Up @@ -7132,6 +7164,41 @@
nasty delays in database operations are incurred. If in doubt,
contact ArangoDB support.

- name: rocksdb_live_blob_file_garbage_size
introducedIn: "3.12.6"
help: |
Size of garbage in live RocksDB .blob files.
unit: bytes
type: gauge
category: RocksDB
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
This metric exhibits the RocksDB metric `rocksdb-live-blob-file-garbage-size`.
It shows the total amount of garbage (obsolete, unreferenced blobs) in bytes
over in .blob files belonging to the latest LSM tree, summed over all
column families that use blob files.

- name: rocksdb_live_blob_file_size
introducedIn: "3.12.6"
help: |
Size of live RocksDB .blob files.
unit: bytes
type: gauge
category: RocksDB
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
This metric exhibits the RocksDB metric `rocksdb-live-blob-file-size`.
It shows the total size in bytes of all .blob files belonging to the latest
LSM tree, summed over all column families that use blob files.

- name: rocksdb_live_sst_files_size
introducedIn: "3.6.1"
help: |
Expand Down Expand Up @@ -7216,6 +7283,23 @@
This metric exhibits the RocksDB metric `rocksdb-min-log-number-to-keep`.
It shows the minimum log number of the log files that should be kept.

- name: rocksdb_num_blob_files
introducedIn: "3.12.6"
help: |
Number of live RocksDB .blob files.
unit: number
type: gauge
category: RocksDB
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
This metric exhibits the RocksDB metric `rocksdb-num-blob-files`.
It shows the total number of .blob files belonging to the latest
LSM tree, summed over all column families that use blob files.

- name: rocksdb_num_deletes_active_mem_table
introducedIn: "3.6.1"
help: |
Expand Down
4 changes: 2 additions & 2 deletions site/data/3.12/arangobackup.json
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@
},
"server.authentication" : {
"category" : "option",
"default" : false,
"default" : true,
"deprecatedIn" : null,
"description" : "Require authentication credentials when connecting (does not affect the server-side authentication settings).",
"dynamic" : false,
Expand Down Expand Up @@ -1067,7 +1067,7 @@
"server.endpoint" : {
"category" : "option",
"default" : [
"http+tcp://127.0.0.1:8529"
"tcp://127.0.0.1:8529"
],
"deprecatedIn" : null,
"description" : "The endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp:// or unix://",
Expand Down
4 changes: 2 additions & 2 deletions site/data/3.12/arangobench.json
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@
},
"server.authentication" : {
"category" : "option",
"default" : false,
"default" : true,
"deprecatedIn" : null,
"description" : "Require authentication credentials when connecting (does not affect the server-side authentication settings).",
"dynamic" : false,
Expand Down Expand Up @@ -1336,7 +1336,7 @@
"server.endpoint" : {
"category" : "option",
"default" : [
"http+tcp://127.0.0.1:8529"
"tcp://127.0.0.1:8529"
],
"deprecatedIn" : null,
"description" : "The endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp:// or unix://",
Expand Down
Loading