From 7b28fdfa429581ded52cf82274508eae9f1b9445 Mon Sep 17 00:00:00 2001 From: "a.sabirov" <a.sabirov@picodata.io> Date: Fri, 12 Jul 2024 21:09:02 +0300 Subject: [PATCH 1/2] style.css: set custom bullets for nested lists --- docs/extra/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/extra/style.css b/docs/extra/style.css index 0df72a2b..bd184c9d 100644 --- a/docs/extra/style.css +++ b/docs/extra/style.css @@ -227,6 +227,21 @@ article ul ul ul { list-style-type: "\2212" !important; } +/* Set custom bullets for level 4 <ul> lists — open centre asterisk */ +article ul ul ul ul { + list-style-type: "\2732" !important; +} + +/* Set custom bullets for level 5 <ul> lists — black four pointed star */ +article ul ul ul ul ul { + list-style-type: "\2726" !important; +} + +/* Set custom bullets for level 6 <ul> lists — white four pointed star */ +article ul ul ul ul ul ul { + list-style-type: "\2727" !important; +} + /* Set padding for level 3 <ul> list items*/ article ul ul ul li { padding-left: 0.5rem; -- GitLab From b8cb9cefa9a1ed20a3261b4a590e0712cfd89b6a Mon Sep 17 00:00:00 2001 From: "a.sabirov" <a.sabirov@picodata.io> Date: Fri, 12 Jul 2024 21:09:15 +0300 Subject: [PATCH 2/2] rpc_api.md: add .proc_get_config --- docs/architecture/rpc_api.md | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/docs/architecture/rpc_api.md b/docs/architecture/rpc_api.md index cfbcede7..c0a45edc 100644 --- a/docs/architecture/rpc_api.md +++ b/docs/architecture/rpc_api.md @@ -791,5 +791,31 @@ fn proc_expel_redirect(cluster_id, instance_id) - `instance_id`: (MP_STR), -<!-- ------------------------------------------------------------------------------—- -### to be continued {: #TBC } --> +-------------------------------------------------------------------------------- +### .proc_get_config {: #.proc_get_config } + +```rust +fn proc_get_config() -> Result +``` + +Возвращает Ñовокупную конфигурацию инÑтанÑа, в которой Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ параметра +указано значение `value` и его иÑточник `source`. + +Возможные типы данных: + +* `value`: (MP_MAP | MP_INT | MP_STR | MP_BOOL | MP_ARRAY | MP_FLOAT) +* `source`: (MP_STR) + +Возможные иÑточники значений параметров — поле `source`: + +* `"default"` — по умолчанию +* `"config_file"` — [файл конфигурации] +* `"commandline_or_environment"` — параметры команды [picodata + run](../reference/cli.md#run) или переменные Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ + +Возвращаемое значение: + +* `config` (MP_MAP) — Ñловарь, повторÑющий формат [файла конфигурации] + +[файл конфигурации]: ../reference/config.md#config_file_description +[файла конфигурации]: ../reference/config.md#config_file_description -- GitLab