Compare commits
65 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
db810c178e | |
|
|
3657720074 | |
|
|
0ba5ff0e9f | |
|
|
24e486410e | |
|
|
e72310f8ab | |
|
|
5c62677ca5 | |
|
|
e4b8cf2d54 | |
|
|
eaa551be50 | |
|
|
903ace3197 | |
|
|
91acb6da23 | |
|
|
0a1324b28a | |
|
|
e3761f5513 | |
|
|
b1196d5177 | |
|
|
5de11c05ff | |
|
|
0cf7565dff | |
|
|
fd813b04b6 | |
|
|
c8bf5e7cd9 | |
|
|
04b4ffac2d | |
|
|
2f1de2b4f4 | |
|
|
dfe52ddc49 | |
|
|
f360b8158f | |
|
|
66b66b966b | |
|
|
7cc7c0799a | |
|
|
af604c55a6 | |
|
|
03c9a12ffa | |
|
|
f4b560a454 | |
|
|
adb1ba4c07 | |
|
|
774a517def | |
|
|
3cca316978 | |
|
|
05b173408e | |
|
|
7c7db5e510 | |
|
|
f943abeed2 | |
|
|
e60d4d08e7 | |
|
|
2430581948 | |
|
|
a0b9365120 | |
|
|
cf2fa453db | |
|
|
f1868cd300 | |
|
|
b41090578d | |
|
|
cd7a7c5c82 | |
|
|
1d8c0d5fc2 | |
|
|
12ee29d699 | |
|
|
0ea8213346 | |
|
|
b58c58b165 | |
|
|
97369e6452 | |
|
|
0d449468de | |
|
|
8d7dea30e9 | |
|
|
4b1a136e1e | |
|
|
f71f38c666 | |
|
|
2e8fd1d17d | |
|
|
76beff02ac | |
|
|
fa0895122c | |
|
|
91ead7d1ba | |
|
|
a30fb0d834 | |
|
|
8a80cc6844 | |
|
|
dc50f4e614 | |
|
|
dfeb0dbfa9 | |
|
|
ff68178e42 | |
|
|
5344242ce8 | |
|
|
1ba496f053 | |
|
|
f069a81b0d | |
|
|
2847a5a1e9 | |
|
|
9d2e8100df | |
|
|
48285eeb40 | |
|
|
68bee74756 | |
|
|
c6e24cae42 |
|
|
@ -0,0 +1,4 @@
|
||||||
|
/target
|
||||||
|
Cargo.lock
|
||||||
|
*.sock
|
||||||
|
.env
|
||||||
25
.env.example
25
.env.example
|
|
@ -1,22 +1,47 @@
|
||||||
# Template .env for API grabber
|
# Template .env for API grabber
|
||||||
|
|
||||||
# PostgreSQL connection [DEPRECATED]
|
# PostgreSQL connection [DEPRECATED]
|
||||||
|
# -------------------------------
|
||||||
DB_HOST = "ip.addr.postgresql.server"
|
DB_HOST = "ip.addr.postgresql.server"
|
||||||
DB_USER = "db_user"
|
DB_USER = "db_user"
|
||||||
DB_PASSWORD = "db_user_password"
|
DB_PASSWORD = "db_user_password"
|
||||||
DB_DBNAME = "db_name"1
|
DB_DBNAME = "db_name"1
|
||||||
|
|
||||||
# Prometheus-Exporter info
|
# Prometheus-Exporter info
|
||||||
|
# -------------------------------
|
||||||
EXPORTER_URL = "http(s)://ip.ip.ip.ip:port"
|
EXPORTER_URL = "http(s)://ip.ip.ip.ip:port"
|
||||||
|
|
||||||
|
# VINTEO Jitter puller (needed to init Jitter native grab)
|
||||||
|
# -------------------------------
|
||||||
|
VINTEO_URL_BASE = "http(s)://ip.ip.ip.ip:port"
|
||||||
|
VINTEO_ENDPOINT_CONFERENCES = "/api/v1/to/something"
|
||||||
|
VINTEO_ENDPOINT_PARTICIPANTS = "/api/v1/to/something"
|
||||||
|
VINTEO_API_KEY = "6fe8b0db-62b4-4065-9c1e-441ec4228341.9acec20bd17d7178f332896f8c006452877a22b8627d089105ed39c5baef9711"
|
||||||
|
|
||||||
|
# Status Model API support
|
||||||
|
# > if exists, ignore `EXPORTER_URL` var
|
||||||
|
STATUS_SYSTEM_URL = "http://192.168.2.39:9999/api/input"
|
||||||
|
|
||||||
# eNODE.Monitoring configuration
|
# eNODE.Monitoring configuration
|
||||||
|
# -------------------------------
|
||||||
|
# eNODE.Monitoring server IP
|
||||||
ENODE_MONITORING_IP = "ip.ip.ip.ip"
|
ENODE_MONITORING_IP = "ip.ip.ip.ip"
|
||||||
|
# eNODE.Monitoring credentials
|
||||||
ENODE_MONITORING_LOGIN = "admin_user_enode_monitoring" # admin user is required
|
ENODE_MONITORING_LOGIN = "admin_user_enode_monitoring" # admin user is required
|
||||||
ENODE_MONITORING_PASSWORD = "admin_password_enode_monitoring" # # admin password is required
|
ENODE_MONITORING_PASSWORD = "admin_password_enode_monitoring" # # admin password is required
|
||||||
|
# List of target devices
|
||||||
|
ENODE_TARGET_DEVICES = "18, 19"
|
||||||
|
# to work with unlimit API-Token
|
||||||
|
ENODE_API_TOKEN = "sssswwwwaaaaffff"
|
||||||
|
|
||||||
|
# OPTIONAL SETTINGS
|
||||||
|
# -------------------------------
|
||||||
# IM configuration for max level of logging info
|
# IM configuration for max level of logging info
|
||||||
# for example DEBUG, INFO, WARN, ERROR, TRACE
|
# for example DEBUG, INFO, WARN, ERROR, TRACE
|
||||||
IM_LOG_INFO = "INFO"
|
IM_LOG_INFO = "INFO"
|
||||||
# IM configuration for setting up API connetion
|
# IM configuration for setting up API connetion
|
||||||
# timeout (in secs). Default value - 10
|
# timeout (in secs). Default value - 10
|
||||||
IM_CONNECTION_TIMEOUT = "10"
|
IM_CONNECTION_TIMEOUT = "10"
|
||||||
|
# IM configuration for delay of requests
|
||||||
|
# delay (in secs). Default value - 5
|
||||||
|
IM_REQUEST_DELAY = "20"
|
||||||
|
|
@ -5,7 +5,11 @@ RUN apt update && apt install -y musl-tools
|
||||||
RUN rustup target add x86_64-unknown-linux-musl
|
RUN rustup target add x86_64-unknown-linux-musl
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN cargo test
|
|
||||||
|
ENV CARGO_HTTP_DEBUG=true
|
||||||
|
ENV CARGO_HTTP_TIMEOUT=100
|
||||||
|
|
||||||
|
RUN cargo test --verbose
|
||||||
RUN cargo build --release --target=x86_64-unknown-linux-musl
|
RUN cargo build --release --target=x86_64-unknown-linux-musl
|
||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,22 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
env.IMAGE_TAG = sh(script: "git describe --tags --abbrev=0", returnStdout: true).trim()
|
def hasTags = sh(script: "git tag -l | wc -l", returnStdout: true).trim().toInteger() > 0
|
||||||
|
|
||||||
|
def lastVersion = "0.0.0"
|
||||||
|
|
||||||
|
if (hasTags) {
|
||||||
|
lastVersion = sh(script: "git describe --tags --abbrev=0", returnStdout: true).trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Last version: ${lastVersion}"
|
||||||
|
|
||||||
|
def (major, minor, patch) = lastVersion.tokenize('.')
|
||||||
|
def newVersion = "${major}.${minor}.${patch.toInteger() + 1}"
|
||||||
|
echo "New version: ${newVersion}"
|
||||||
|
|
||||||
|
env.IMAGE_TAG = newVersion
|
||||||
|
env.NEW_VERSION = newVersion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -79,18 +94,30 @@ pipeline {
|
||||||
echo "Attempting to merge PR ${env.CHANGE_ID} into master..."
|
echo "Attempting to merge PR ${env.CHANGE_ID} into master..."
|
||||||
withCredentials([usernamePassword(credentialsId: 'gitea_creds', usernameVariable: 'GITEA_USER', passwordVariable: 'GITEA_PASS')]) {
|
withCredentials([usernamePassword(credentialsId: 'gitea_creds', usernameVariable: 'GITEA_USER', passwordVariable: 'GITEA_PASS')]) {
|
||||||
def prId = env.CHANGE_ID
|
def prId = env.CHANGE_ID
|
||||||
|
|
||||||
sh """
|
sh """
|
||||||
curl -X POST \
|
curl -X POST \
|
||||||
-u "${GITEA_USER}:${GITEA_PASS}" \
|
-u "${GITEA_USER}:${GITEA_PASS}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d '{"do":"merge"}' \
|
-d '{"do":"merge"}' \
|
||||||
http://git.entcor/api/v1/repos/deployer3000/integration-module/pulls/${prId}/merge
|
http://git.entcor/api/v1/repos/deployer3000/${env.IMAGE_NAME}/pulls/${prId}/merge
|
||||||
"""
|
"""
|
||||||
|
def commitHash = sh(script: "git rev-parse HEAD~1", returnStdout: true).trim() // необходим для корректного отображения статусов
|
||||||
echo "PR ${prId} merged successfully into master!"
|
echo "PR ${prId} merged successfully into master!"
|
||||||
|
sleep(time: 15, unit: 'SECONDS')
|
||||||
|
sh "git checkout master && git pull origin master"
|
||||||
|
|
||||||
def context = "test-org/integration-module/pipeline/pr-${env.CHANGE_TARGET}"
|
sh """
|
||||||
def commitHash = sh(script: "git rev-parse HEAD~1", returnStdout: true).trim()
|
curl -v -X POST -u "${GITEA_USER}:${GITEA_PASS}" \
|
||||||
notify(context, GITEA_USER, GITEA_PASS, env.GITEA_REPOSITORY_URL, "integration-module", commitHash, "success")
|
-H "Content-Type: application/json" \
|
||||||
|
-d '{"tag_name": "${env.NEW_VERSION}", "name": "Release ${env.NEW_VERSION}", "target_commitish": "master"}' \
|
||||||
|
"${env.GITEA_REPOSITORY_URL}deployer3000/${env.IMAGE_NAME}/releases"
|
||||||
|
"""
|
||||||
|
|
||||||
|
echo "New release succeeded!"
|
||||||
|
|
||||||
|
def context = "test-org/${env.IMAGE_NAME}/pipeline/pr-${env.CHANGE_TARGET}"
|
||||||
|
notify(context, GITEA_USER, GITEA_PASS, env.GITEA_REPOSITORY_URL, env.IMAGE_NAME, commitHash, "success")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
158
README.md
158
README.md
|
|
@ -1,39 +1,173 @@
|
||||||
# Интеграционный модуль для проекта "Буревестник ВКС"
|
# Интеграционный модуль для проекта "Буревестник ВКС"
|
||||||
|
|
||||||
## Описание
|
## Описание
|
||||||
`integr_mod` - Rust-пакет, предоставляющий функционал интеграционного модуля в проекте "Буревестник ВКС", состоящий из бинарных крейтов для:
|
`Интеграционный модуль (ИМ)` - Rust-пакет, предоставляющий функционал интеграционного модуля в проекте "Буревестник ВКС", состоящий из бинарных крейтов для:
|
||||||
- получение данных через API ВКС
|
- получение данных через API ВКС
|
||||||
- поддержку хранения, валидации и актуализации собственных конфигураций
|
- поддержку хранения, валидации и актуализации собственных конфигураций
|
||||||
- предобработку полученных данных и ~~отправку `Системе Мониторинга`~~ сохранение в БД
|
- предобработку полученных данных и сохранение в БД
|
||||||
|
- интеграции с `еНОД.Мониторинг`
|
||||||
|
|
||||||
|
## Специфика работы
|
||||||
|
|
||||||
|
На даннный момент предусмотрено два режима работы:
|
||||||
|
|
||||||
|
1) **Нативный** - режим работы, производящий прямой опрос сервиса видео-конференц связи `Vinteo` и соотвествующий процесс `ETL`
|
||||||
|
|
||||||
|
2) **Статичный** - режим работы *"посредник"*, когда все метрические данные ВКС `Vinteo` получаются через `REST-Full API` средства `еНОД.Мониторинг`
|
||||||
|
|
||||||
|
3) **Системный** - аналогичный **статичному** режиму, но метрические данные (заведомо обогащенные нулевым статусом) отправялются не напрямую в модуль `Prometehus exporter`, а в `Статусную модель`
|
||||||
|
|
||||||
|
4) **Vinteo** - особый режим работы, предполагающий сбор определенного набора метрик напрямую с ВКС `Vinteo` механизмом многоэтапного `API-запроса`
|
||||||
|
|
||||||
|
> **Примечание**
|
||||||
|
По стандарту `ИМ` работает в **НАТИВНОМ** режиме и ожидает конфигурации в формате `.json`, однако приоритетным считается **СТАТИЧНЫЙ** режим. Подробная информация о настройке в пункте `Руководство`
|
||||||
|
|
||||||
## Руководство
|
## Руководство
|
||||||
|
|
||||||
1. Заполнить .env файл или установить переменные окружения в соотвествии с примером в `.env.example` файле
|
В данном разделе опсиан алгоритм настройки, сборки и запуска программного модуля `ИМ`
|
||||||
|
|
||||||
|
### Преднастройка
|
||||||
|
|
||||||
|
1. Выбор режима работы модуля, который скорректирует принцип настройки:
|
||||||
|
|
||||||
|
| Режим работы | .env | config-api.json | $STATUS_SYSTEM_URL | $EXPORTER_URL |
|
||||||
|
|---|---|---|---|---|
|
||||||
|
| Нативный | ❌ | ✅ | ❌ | ❌ |
|
||||||
|
| Статичный | ✅ | ❌ | ❌❌❌ | ✅ |
|
||||||
|
| Системный | ✅ | ❌ | ✅ | ❌ |
|
||||||
|
, где:
|
||||||
|
|
||||||
|
✅ -- следует настроить (предпринять)
|
||||||
|
|
||||||
|
❌ -- игнорируется системой, не стоит настраивать
|
||||||
|
|
||||||
|
❌❌❌ -- **НЕЛЬЗЯ** настраивать (предпринимать), возможны ошибки в работе
|
||||||
|
|
||||||
|
> Режим работы `Vinteo` *не описан* в таблице **намеренно**
|
||||||
|
|
||||||
|
### Настройка режима работы "Нативный"
|
||||||
|
|
||||||
|
Для настройки данного режима необходимо расположить в **активной** директории конфигурационный `config_api.json` файл:
|
||||||
|
|
||||||
|
``` json
|
||||||
|
{
|
||||||
|
"config": [
|
||||||
|
{
|
||||||
|
"id":"zvks",
|
||||||
|
"login" : "",
|
||||||
|
"pass" : "",
|
||||||
|
"api_key" : "6fe8b0db-62b4-4065-9c1e-441ec4228341.9acec20bd17d7178f332896f8c006452877a22b8627d089105ed39c5baef9711",
|
||||||
|
"period" : "",
|
||||||
|
"timeout" : "5",
|
||||||
|
"metrics" : [
|
||||||
|
{
|
||||||
|
"name": "conferences",
|
||||||
|
"url": "https://demo.vcs.vinteo.dev/api/v1/conferences",
|
||||||
|
"measure": [
|
||||||
|
{ "id":"number", "type": "text", "addr": "data.conferences[].number" },
|
||||||
|
{ "id":"total", "type": "integer", "addr": "data.total" },
|
||||||
|
{ "id":"participants_total", "type": "integer", "addr": "data.conferences[].participants.total" },
|
||||||
|
{ "id":"parts_total_in_each", "type": "integer", "addr": "data.conferences[description].participants.total" },
|
||||||
|
{ "id":"participants_online", "type": "integer", "addr": "data.conferences[].participants.online" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "abonents",
|
||||||
|
"url": "https://demo.vcs.vinteo.dev/api/v1/accounts",
|
||||||
|
"measure": [
|
||||||
|
{ "id":"total", "type": "integer", "addr": "data.total" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
> **Примечание**
|
||||||
|
Название конфигурационного файла должно быть как в примере - `config_api.json`
|
||||||
|
|
||||||
|
|
||||||
|
### Настройка режима работы "Статичный"
|
||||||
|
|
||||||
|
Для настройки данного режима необходимо пополнить данными о сервере в `.env` файле по примеру:
|
||||||
|
|
||||||
``` toml
|
``` toml
|
||||||
# Template .env for API grabber
|
...
|
||||||
|
EXPORTER_URL = "http(s)://ip.ip.ip.ip:port" # <--- экспорт данных (обязательно)
|
||||||
# Prometheus-Exporter info
|
|
||||||
EXPORTER_URL = "http(s)://ip.ip.ip.ip:port"
|
|
||||||
|
|
||||||
# eNODE.Monitoring configuration
|
# eNODE.Monitoring configuration
|
||||||
ENODE_MONITORING_IP = "ip.ip.ip.ip"
|
ENODE_MONITORING_IP = "ip.ip.ip.ip"
|
||||||
# admin user is required
|
# admin user is required
|
||||||
ENODE_MONITORING_LOGIN = "admin_user_enode_monitoring"
|
ENODE_MONITORING_LOGIN = "admin_user_enode_monitoring"# ---> получение данных
|
||||||
# admin password is required
|
# admin password is required
|
||||||
ENODE_MONITORING_PASSWORD = "admin_password_enode_monitoring"
|
ENODE_MONITORING_PASSWORD = "admin_password_enode_monitoring"
|
||||||
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Настройка режима работы "Системный"
|
||||||
|
|
||||||
|
Для настройки данного режима необходимо пополнить данными о сервере в `.env` файле по примеру:
|
||||||
|
|
||||||
|
``` toml
|
||||||
|
...
|
||||||
|
STATUS_SYSTEM_URL = "http(s)://{ip}:{port}/api/input"# <--- экспорт данных
|
||||||
|
# eNODE.Monitoring configuration
|
||||||
|
ENODE_MONITORING_IP = "{ip}.{ip}.{ip}.{ip}"
|
||||||
|
# admin user is required
|
||||||
|
ENODE_MONITORING_LOGIN = "admin_user_enode_monitoring"# ---> получение данных
|
||||||
|
# admin password is required
|
||||||
|
ENODE_MONITORING_PASSWORD = "admin_password_enode_monitoring"
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
### Настройка режима работы "Vinteo"
|
||||||
|
|
||||||
|
Для работы в данном режиме необходимо установить переменные окружения в соотвествии со списком ниже
|
||||||
|
|
||||||
|
``` toml
|
||||||
|
...
|
||||||
|
VINTEO_URL_BASE = "https://demo.vcs.vinteo.dev"
|
||||||
|
VINTEO_ENDPOINT_CONFERENCES = "/api/v1/conferences"
|
||||||
|
VINTEO_ENDPOINT_PARTICIPANTS = "/api/v1/participants/"
|
||||||
|
VINTEO_API_KEY = "00000000000111111111.aaaaaaaaaaaaaaabbbbbbbbbbbbb"
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
### Настройка экспорта полученных и обработанных данных
|
||||||
|
|
||||||
|
Настройка *точки выхода* для полученных и обработанных метрик определеяется установленными в переменных окружения параметрами, варианта два:
|
||||||
|
|
||||||
|
1) **Экспорт в статусную модель** в рамках механизма сквозного прохода данных в проекте `Буревестник ВКС`
|
||||||
|
|
||||||
|
``` toml
|
||||||
|
...
|
||||||
|
STATUS_SYSTEM_URL = "{BASE_URL}/{ROUTE}"
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
2) **Экспорт в экспортер или иной потребитель данных**
|
||||||
|
|
||||||
|
``` toml
|
||||||
|
...
|
||||||
|
EXPORTER_URL = "{BASE_URL}/{ROUTE}"
|
||||||
|
...
|
||||||
|
```
|
||||||
|
> ### **ОЧЕНЬ ВАЖНОЕ ПРИМЕЧАНИЕ**
|
||||||
|
> ---
|
||||||
|
> Одновременное использование `$STATUS_SYSTEM_URL` и `$EXPORTER_URL` **НЕДОПУСТИМО** !! Вариант со ссылкой **на статусную модель** является _по стандарту_ **БОЛЕЕ ПРИОРИТЕТНЫМ**, второй затрется, использовать необходимо только один
|
||||||
|
|
||||||
2. Произвести сборку проекта командой :
|
2. Произвести сборку проекта командой :
|
||||||
``` bash
|
``` bash
|
||||||
cargo build --release
|
cargo build --release
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Запустить
|
3. Запустить
|
||||||
> Debug версия
|
> **Debug** версия
|
||||||
``` bash
|
``` bash
|
||||||
cargo run --bin api-grub
|
cargo run --bin api-grub
|
||||||
```
|
```
|
||||||
или
|
или
|
||||||
> Release версия
|
> **Release** версия
|
||||||
``` bash
|
``` bash
|
||||||
cargo run --release --bin api-grub
|
cargo run --release --bin api-grub
|
||||||
```
|
```
|
||||||
|
|
@ -42,6 +176,6 @@ cargo run --release --bin api-grub
|
||||||
| Крейт (подмодуль) | Прогресс |
|
| Крейт (подмодуль) | Прогресс |
|
||||||
|---|---|
|
|---|---|
|
||||||
|`api-grub` | ✅✅✅✅✅✅✅✅✅🛠️ |
|
|`api-grub` | ✅✅✅✅✅✅✅✅✅🛠️ |
|
||||||
|`config-delivery [migrated]` | ❌❌❌❌❌❌❌❌❌❌ |
|
|`config-delivery` [migrated] | ❌❌❌❌❌❌❌❌❌❌ |
|
||||||
|`integrs-structs` | ✅✅✅✅✅✅✅✅✅✅ |
|
|`integrs-structs` | ✅✅✅✅✅✅✅✅✅✅ |
|
||||||
|`preproc` [temp-deprecated] | ❌❌❌❌❌❌❌❌❌❌ | (разработка временно остановлена)
|
|`preproc` [temp-deprecated] | ❌❌❌❌❌❌❌❌❌❌ | (разработка временно остановлена)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "api-grub"
|
name = "api-grub"
|
||||||
version = "1.0.2"
|
version = "1.0.15"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Vladislav Drozdov <maseeeeeeeed@gmail.com>"]
|
authors = ["Vladislav Drozdov <maseeeeeeeed@gmail.com>"]
|
||||||
description = "API poller for ZVKS project"
|
description = "API poller for ZVKS project"
|
||||||
|
|
@ -14,7 +14,7 @@ publish = ["kellnr"]
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.217", features = ["derive"] }
|
||||||
serde_json = "1.0.135"
|
serde_json = "1.0.135"
|
||||||
tokio = { version = "1.43.0", features = ["full"] }
|
tokio = { version = "1.43.0", features = ["full"] }
|
||||||
integr-structs = { version = ">=0.1.0", registry = "kellnr"}
|
integr-structs = { version = ">=0.1.0", path="../integr-structs"}
|
||||||
anyhow = "1.0.95"
|
anyhow = "1.0.95"
|
||||||
chrono = "0.4.39"
|
chrono = "0.4.39"
|
||||||
reqwest = { version = "0.12.12", features = ["rustls-tls", "json"] }
|
reqwest = { version = "0.12.12", features = ["rustls-tls", "json"] }
|
||||||
|
|
@ -27,3 +27,6 @@ sysinfo = "0.33.1"
|
||||||
openssl = { version = "0.10", features = ["vendored"] }
|
openssl = { version = "0.10", features = ["vendored"] }
|
||||||
tracing-subscriber = "0.3.19"
|
tracing-subscriber = "0.3.19"
|
||||||
tracing = "0.1.41"
|
tracing = "0.1.41"
|
||||||
|
lazy_static = "1.5.0"
|
||||||
|
futures = "0.3.31"
|
||||||
|
async-stream = "0.3.6"
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ use reqwest::Client;
|
||||||
use tokio_postgres::NoTls;
|
use tokio_postgres::NoTls;
|
||||||
use std::env;
|
use std::env;
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use tracing::{debug, error, info};
|
use tracing::{debug, error, info, trace};
|
||||||
use std::ops::Drop;
|
use std::ops::Drop;
|
||||||
|
|
||||||
/// An entity which handles DB connections.
|
/// An entity which handles DB connections.
|
||||||
|
|
@ -113,13 +113,18 @@ impl Exporter {
|
||||||
}
|
}
|
||||||
/// Exports metrics in `PrometheusMetricsExtended` format to Exporter defined
|
/// Exports metrics in `PrometheusMetricsExtended` format to Exporter defined
|
||||||
/// as env var $EXORPTER_URL
|
/// as env var $EXORPTER_URL
|
||||||
|
#[tracing::instrument(name = "Prometheus/Status System export")]
|
||||||
pub async fn export_extended_metrics(metrics: PrometheusMetricsExtended) -> Result<usize> {
|
pub async fn export_extended_metrics(metrics: PrometheusMetricsExtended) -> Result<usize> {
|
||||||
let url = env::var("EXPORTER_URL")?;
|
// let url = env::var("EXPORTER_URL")?;
|
||||||
|
let url = env::var("STATUS_SYSTEM_URL").or_else(|err| {
|
||||||
|
trace!("cannot fetch $STATUS_SYSTEM_URL var due to {}. working only with Prometheus exporter link", err);
|
||||||
|
env::var("EXPORTER_URL")
|
||||||
|
})?;
|
||||||
|
|
||||||
debug!("Exporting: {:?}", &metrics);
|
debug!("Exporting: {:?}", &metrics);
|
||||||
|
|
||||||
let req = Client::new()
|
let req = Client::new()
|
||||||
.post(url)
|
.post(&url)
|
||||||
.json(&metrics)
|
.json(&metrics)
|
||||||
.send().await;
|
.send().await;
|
||||||
req?;
|
req?;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,319 @@
|
||||||
|
use std::collections::{HashMap, HashSet};
|
||||||
|
use integr_structs::api::v3::{PrometheusMetricsExtended, MetricOutputExtended};
|
||||||
|
use std::sync::Arc;
|
||||||
|
use reqwest::Client;
|
||||||
|
use lazy_static::lazy_static;
|
||||||
|
use tracing::{error, info, trace, warn};
|
||||||
|
use std::pin::Pin;
|
||||||
|
use serde_json::{Value, from_str};
|
||||||
|
use crate::export::Exporter;
|
||||||
|
use async_stream::stream;
|
||||||
|
use futures::{future, pin_mut, stream::Stream, StreamExt};
|
||||||
|
|
||||||
|
lazy_static! {
|
||||||
|
static ref VINTEO_BASE: String = std::env::var("VINTEO_URL_BASE").unwrap_or_else(|_| String::from("https://demo.vcs.vinteo.dev"));
|
||||||
|
static ref CONFERENCES_ENDPOINT: String = std::env::var("VINTEO_ENDPOINT_CONFERENCES").unwrap_or_else(|_| String::from("/api/v1/conferences"));
|
||||||
|
static ref USERS_ENDPOINT: String = std::env::var("VINTEO_ENDPOINT_PARTICIPANTS").unwrap_or_else(|_| String::from("/api/v1/participants/"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// conferences ids
|
||||||
|
type Conferences = HashSet<(String, String)>;
|
||||||
|
type OutputConferences = HashMap<(String, String), Value>;
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
struct ConferencesDigital(OutputConferences);
|
||||||
|
|
||||||
|
impl ConferencesDigital {
|
||||||
|
pub fn new(item: OutputConferences) -> Self {
|
||||||
|
Self(item)
|
||||||
|
}
|
||||||
|
pub fn go_across(self) -> impl Stream<Item = ((String, String), Arc<Value>)> {
|
||||||
|
stream! {
|
||||||
|
for (key, value) in self.0 {
|
||||||
|
info!("Conference {} ({}) is processing ...", key.0, key.1);
|
||||||
|
yield (key, Arc::new(value));
|
||||||
|
tokio::time::sleep(std::time::Duration::from_millis(10)).await;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// to handle async http requests
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct Requester {
|
||||||
|
base: String,
|
||||||
|
api_key: String,
|
||||||
|
client: Client,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Requester {
|
||||||
|
pub fn new() -> anyhow::Result<Self> {
|
||||||
|
Ok(Self {
|
||||||
|
base: VINTEO_BASE.clone().to_owned(),
|
||||||
|
api_key: std::env::var("VINTEO_API_KEY")?,
|
||||||
|
client: Client::builder().user_agent("api-grub").build()?,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
pub async fn get_conferences(&self) -> anyhow::Result<Value> {
|
||||||
|
trace!("getting conferences list from API");
|
||||||
|
let url = format!("{}{}", self.base, *CONFERENCES_ENDPOINT);
|
||||||
|
let req = self.client.get(url)
|
||||||
|
.timeout(tokio::time::Duration::from_secs(10))
|
||||||
|
.header("accept", "application/json")
|
||||||
|
.header("x-api-key", &self.api_key);
|
||||||
|
let resp = req.send().await;
|
||||||
|
Ok(from_str(&resp?.text().await?)?)
|
||||||
|
}
|
||||||
|
pub async fn get_conferences_from_value(conferences: Value) -> anyhow::Result<Conferences> {
|
||||||
|
trace!("extracting conferences list");
|
||||||
|
let mut hashset = Conferences::new();
|
||||||
|
match conferences.get("data") {
|
||||||
|
None => return Err(anyhow::Error::msg("Invalid JSON format: no `data` field")),
|
||||||
|
Some(data) => {
|
||||||
|
match data.get("conferences") {
|
||||||
|
None => return Err(anyhow::Error::msg("Invalid JSON format: no `conferences` field")),
|
||||||
|
Some(confs) => {
|
||||||
|
if let Some(confs) = confs.as_array() {
|
||||||
|
confs.iter()
|
||||||
|
.for_each(|conf_obj| {
|
||||||
|
if let Some(id) = conf_obj.get("number") {
|
||||||
|
if let Some(id) = id.as_str() {
|
||||||
|
let id = {
|
||||||
|
if let Some(desc) = conf_obj.get("description") {
|
||||||
|
match desc.as_str() {
|
||||||
|
Some(desc) => (desc.to_string(), id.to_string()),
|
||||||
|
None => (String::new(), id.to_string())
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
(String::new(), id.to_string())
|
||||||
|
}
|
||||||
|
};
|
||||||
|
hashset.insert(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
return Err(anyhow::Error::msg("Invalid JSON format: `conferences` is not an array"))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
Ok(hashset)
|
||||||
|
}
|
||||||
|
pub async fn get_users_jitter_by_conference(&self, conferences : Conferences) -> anyhow::Result<OutputConferences> {
|
||||||
|
trace!("getting users list for each conference from API ...");
|
||||||
|
let mut output = OutputConferences::new();
|
||||||
|
for conf in conferences {
|
||||||
|
let url = format!("{}{}{}", self.base, *USERS_ENDPOINT, &conf.1);
|
||||||
|
let req = self.client.get(url)
|
||||||
|
.timeout(tokio::time::Duration::from_secs(10))
|
||||||
|
.header("accept", "application/json")
|
||||||
|
.header("x-api-key", &self.api_key);
|
||||||
|
|
||||||
|
match req.send().await {
|
||||||
|
Err(er) => error!("Cannot GET data about conference - {:?}: {}", conf, er),
|
||||||
|
Ok(resp) => {
|
||||||
|
match resp.text().await {
|
||||||
|
Err(er) => error!("Cannot convert response into text: {}", er),
|
||||||
|
Ok(resp) => {
|
||||||
|
let resp: Value = from_str(&resp)?;
|
||||||
|
output.entry(conf).or_insert(resp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(output)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fn across_participants(conf: &Value) -> impl Stream<Item = Arc<Value>> + '_ {
|
||||||
|
trace!("fetching participants for conf and going across ...");
|
||||||
|
let participants_iter = conf
|
||||||
|
.get("data")
|
||||||
|
.and_then(|data| data.get("participants"))
|
||||||
|
.and_then(|participants| participants.as_array())
|
||||||
|
.into_iter()
|
||||||
|
.flatten()
|
||||||
|
.cloned();
|
||||||
|
|
||||||
|
stream! {
|
||||||
|
for participant in participants_iter {
|
||||||
|
yield Arc::new(participant);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn gather_futures(parts: Arc<Value>, conf_id: Arc<str>, conf_desc: Arc<str>, targets: Vec<(&str, &str)>) -> Vec<Option<MetricOutputExtended>> {
|
||||||
|
trace!("extracting {} measures for current participant in current conference {} ...", targets.len(), conf_id);
|
||||||
|
let mut futures: Vec<Pin<Box<dyn futures::Future<Output = Option<MetricOutputExtended>> + Send>>> = Vec::new();
|
||||||
|
for (target, description) in targets {
|
||||||
|
futures.push(Box::pin(extract_from_participant(
|
||||||
|
parts.clone(),
|
||||||
|
target,
|
||||||
|
conf_id.clone(),
|
||||||
|
conf_desc.clone(),
|
||||||
|
description
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
future::join_all(futures).await
|
||||||
|
}
|
||||||
|
|
||||||
|
// GET participants/{conference_id} data.total
|
||||||
|
async fn extract_total_participants(conferences : Arc<Value>) -> Value {
|
||||||
|
if let Some(total) = conferences
|
||||||
|
.get("data")
|
||||||
|
.and_then(|data| data.get("total")) {
|
||||||
|
return total.clone()
|
||||||
|
}
|
||||||
|
Value::Null
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn extract_total_anon_participants(conferences : Arc<Value>) -> Value {
|
||||||
|
let sum = conferences
|
||||||
|
.get("data")
|
||||||
|
.and_then(|data| data.get("participants"))
|
||||||
|
.and_then(|parts| parts.as_array())
|
||||||
|
.iter()
|
||||||
|
.flat_map(|&val| val.iter())
|
||||||
|
.filter_map(|part| part.get("isAnonymous"))
|
||||||
|
.filter_map(|is_anon| is_anon.as_bool())
|
||||||
|
.filter(|is_anon| *is_anon == true)
|
||||||
|
.count();
|
||||||
|
Value::Number(sum.into())
|
||||||
|
}
|
||||||
|
|
||||||
|
// GET participants/{conference_id} data.participants[].isAnonymous
|
||||||
|
async fn extract_from_participant(participant : Arc<Value>, target: &str, conf_id: Arc<str>, conf_desc: Arc<str>, description: &str) -> Option<MetricOutputExtended> {
|
||||||
|
trace!("extracting `{}` measure for current participant ...", target);
|
||||||
|
if let Some(value) = participant.get("params")
|
||||||
|
.and_then(|params| params.get(target)) {
|
||||||
|
let name = participant.get("watermark").unwrap_or_else(|| &Value::Null).as_str().unwrap_or_else(|| "unknown");
|
||||||
|
let id = participant.get("id").unwrap_or_else(|| &Value::Null).as_str().unwrap_or_else(|| "unknown");
|
||||||
|
let metric_name = format!("{}_{}_{}", target, conf_id, id);
|
||||||
|
return Some(
|
||||||
|
MetricOutputExtended::new_with_slices(
|
||||||
|
&metric_name,
|
||||||
|
&metric_name,
|
||||||
|
"type",
|
||||||
|
"Vinteo native",
|
||||||
|
format!(
|
||||||
|
"{} для пользователя {} ({}) в конференции {} ({})",
|
||||||
|
description,
|
||||||
|
name,
|
||||||
|
id,
|
||||||
|
conf_desc,
|
||||||
|
conf_id
|
||||||
|
).as_ref(),
|
||||||
|
Some(18),
|
||||||
|
Some("module$12".to_string()),
|
||||||
|
value.clone()
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn init_grubbing_jitter() -> anyhow::Result<()> {
|
||||||
|
// create requester
|
||||||
|
let requester = Requester::new()?;
|
||||||
|
// get conference id's
|
||||||
|
loop {
|
||||||
|
info!("Getting conferences array ...");
|
||||||
|
let conferences = requester.get_conferences().await?;
|
||||||
|
let conferences = Requester::get_conferences_from_value(conferences).await?;
|
||||||
|
|
||||||
|
info!("Getting jitter metrics by user in each conference ...");
|
||||||
|
let confs = requester.get_users_jitter_by_conference(conferences).await?;
|
||||||
|
|
||||||
|
info!("Initializing extraction mechanism ...");
|
||||||
|
let conferences = ConferencesDigital::new(confs);
|
||||||
|
let extracted_conference = conferences.go_across();
|
||||||
|
let mut buffer: Vec<MetricOutputExtended> = Vec::new();
|
||||||
|
pin_mut!(extracted_conference);
|
||||||
|
|
||||||
|
while let Some(((desc, id), item)) = extracted_conference.next().await {
|
||||||
|
let parts_stream = across_participants(&item);
|
||||||
|
pin_mut!(parts_stream);
|
||||||
|
|
||||||
|
let total_participants = MetricOutputExtended::new_with_slices(
|
||||||
|
format!("TotalParticipants_{}", id).as_ref(),
|
||||||
|
format!("TotalParticipants_{}", id).as_ref(),
|
||||||
|
"type",
|
||||||
|
"Vinteo Native",
|
||||||
|
format!("Общее количество участников в конференции {}", &desc).as_ref(),
|
||||||
|
Some(18),
|
||||||
|
Some(String::from("module$12")),
|
||||||
|
extract_total_participants(item.clone()).await
|
||||||
|
);
|
||||||
|
// anon NON_STABLE
|
||||||
|
let total_anon_participants = MetricOutputExtended::new_with_slices(
|
||||||
|
format!("TotalAnonymousParticipants_{}", id).as_ref(),
|
||||||
|
format!("TotalAnonymousParticipants_{}", id).as_ref(),
|
||||||
|
"type",
|
||||||
|
"Vinteo Native",
|
||||||
|
format!("Общее количество анонимных участников в конференции {}", &desc).as_ref(),
|
||||||
|
Some(18),
|
||||||
|
Some(String::from("module$12")),
|
||||||
|
extract_total_anon_participants(item.clone()).await
|
||||||
|
);
|
||||||
|
// description
|
||||||
|
|
||||||
|
buffer.push(total_participants);
|
||||||
|
buffer.push(total_anon_participants);
|
||||||
|
|
||||||
|
while let Some(participant) = parts_stream.next().await {
|
||||||
|
buffer.append(
|
||||||
|
&mut gather_futures(
|
||||||
|
participant,
|
||||||
|
Arc::from(id.as_ref()),
|
||||||
|
Arc::from(desc.as_ref()),
|
||||||
|
vec![
|
||||||
|
("txBitrate", "Скорость отправки данных"),
|
||||||
|
("rxBitrate", "Скорость приёма данных"),
|
||||||
|
("txFPS", "Количество отправляемых кадров в секунду"),
|
||||||
|
("rxFPS", "Количество получаемых кадров в секунду"),
|
||||||
|
("rxLost", "Количество потерянных пакетов на приёме"),
|
||||||
|
("txLost", "Количество потерянных пакетов на отправке"),
|
||||||
|
("jBLen", "Фазовое отклонение на цифровом канале"),
|
||||||
|
("txLostPercent", "Процент потерянных пакетов на отправке"),
|
||||||
|
("rxLostPercent", "Процент потерянных пакетов на приёме"),
|
||||||
|
("txH239Bitrate", "Скорость передачи данных в дополнительном видео-потоке"),
|
||||||
|
("rxH239Bitrate", "Скорость приёма данных в дополнительном видео-потоке"),
|
||||||
|
("txVideoCodec", "Используемый видеокодек на отправке"),
|
||||||
|
("rxVideoCodec", "Используемый видеокодек на приёме"),
|
||||||
|
("txAudioCodec", "Используемый аудиокодек на отправке"),
|
||||||
|
("rxAudioCodec", "Используемый аудиокодек на приёме"),
|
||||||
|
("txResolution", "Разрешение передаваемого видео"),
|
||||||
|
("rxResolution", "Разрешение принимаемого видео"),
|
||||||
|
("txH239Resolution", "Разрешение дополнительного видео-потока"),
|
||||||
|
("rxH239Resolution", "Разрешение дополнительного видео-потока на принимающей стороне"),
|
||||||
|
("duration", "Длительсность сеанса (в минутах)"),
|
||||||
|
],
|
||||||
|
).await
|
||||||
|
.into_iter()
|
||||||
|
.filter(|metric| metric.is_some())
|
||||||
|
.map(|metric| metric.unwrap() )
|
||||||
|
.collect::<Vec<MetricOutputExtended>>()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// let metrics = Requester::get_metrics_from_jitter(jitter).await;
|
||||||
|
|
||||||
|
if !buffer.is_empty() {
|
||||||
|
let metrics = PrometheusMetricsExtended::new_zvks(buffer).await;
|
||||||
|
match Exporter::export_extended_metrics(metrics).await {
|
||||||
|
Ok(bytes) => info!("Successfully transmitted metrics ({} bytes)", bytes),
|
||||||
|
Err(er) => error!("Cannot export data: {}", er),
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
warn!("Metrics array is empty. Ignoring exporting ...");
|
||||||
|
}
|
||||||
|
tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;
|
||||||
|
}
|
||||||
|
// get users' jitter info
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
|
||||||
use chrono::Local;
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use tracing::info;
|
use tracing::info;
|
||||||
|
|
||||||
|
|
@ -21,20 +19,6 @@ use tracing::info;
|
||||||
/// *depends on* : -
|
/// *depends on* : -
|
||||||
///
|
///
|
||||||
pub async fn setup_logger() -> Result<()> {
|
pub async fn setup_logger() -> Result<()> {
|
||||||
// Builder::new()
|
|
||||||
// .format(move |buf, record| {
|
|
||||||
// writeln!(
|
|
||||||
// buf,
|
|
||||||
// "|{}| {} [{}] - {}",
|
|
||||||
// "api-grubber",
|
|
||||||
// Local::now().format("%d-%m-%Y %H:%M:%S"),
|
|
||||||
// record.level(),
|
|
||||||
// record.args(),
|
|
||||||
// )
|
|
||||||
// })
|
|
||||||
// .filter(None, LevelFilter::Info)
|
|
||||||
// .target(env_logger::Target::Stdout)
|
|
||||||
// .init();
|
|
||||||
let log_level = std::env::var("IM_LOG_INFO").unwrap_or_else(|_| String::from("INFO"));
|
let log_level = std::env::var("IM_LOG_INFO").unwrap_or_else(|_| String::from("INFO"));
|
||||||
|
|
||||||
tracing_subscriber::fmt()
|
tracing_subscriber::fmt()
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ mod logger;
|
||||||
mod json;
|
mod json;
|
||||||
mod export;
|
mod export;
|
||||||
mod monitoring;
|
mod monitoring;
|
||||||
|
mod jitter;
|
||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use integr_structs::api::v3::Config;
|
use integr_structs::api::v3::Config;
|
||||||
|
|
@ -12,7 +13,10 @@ use config::{pull_local_config, init_config_grub_mechanism};
|
||||||
use net::init_api_grub_mechanism;
|
use net::init_api_grub_mechanism;
|
||||||
use tokio::sync::mpsc;
|
use tokio::sync::mpsc;
|
||||||
use tracing::{error, info, warn};
|
use tracing::{error, info, warn};
|
||||||
|
// ENODE_MONITORING_IP
|
||||||
use monitoring::get_metrics_from_monitoring;
|
use monitoring::get_metrics_from_monitoring;
|
||||||
|
// VINTEO_API_KEY
|
||||||
|
use jitter::init_grubbing_jitter;
|
||||||
|
|
||||||
#[tokio::main(flavor = "multi_thread")]
|
#[tokio::main(flavor = "multi_thread")]
|
||||||
async fn main() -> Result<()>{
|
async fn main() -> Result<()>{
|
||||||
|
|
@ -32,24 +36,30 @@ async fn main() -> Result<()>{
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
let request_delay = std::env::var("IM_REQUEST_DELAY")
|
||||||
|
.unwrap_or_else(|_| String::from("5"))
|
||||||
|
.parse::<u32>()
|
||||||
|
.unwrap_or_else(|_| {
|
||||||
|
warn!("No delay was set, setting up as 5 secs ..."); 5
|
||||||
|
});
|
||||||
let event_grub = tokio::spawn(async move {
|
let event_grub = tokio::spawn(async move {
|
||||||
|
// GRAB USING eNODE.MONITORING API GATEWAY
|
||||||
if std::env::var("ENODE_MONITORING_IP").is_ok() {
|
if std::env::var("ENODE_MONITORING_IP").is_ok() {
|
||||||
match get_metrics_from_monitoring(0, 5).await {
|
match get_metrics_from_monitoring(0, request_delay as usize).await {
|
||||||
Ok(_) => {
|
Ok(_) => info!("Grabing (eNODE.Monitoring) task de-initialized"),
|
||||||
info!("Grabing (eNODE.Monitoring) task deinitialized");
|
Err(er) => error!("Grabing task returned an error : {}", er),
|
||||||
},
|
|
||||||
Err(er) => {
|
|
||||||
error!("Grabing task returned an error : {}", er);
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
// JITTER NATIVE GRAB TASK
|
||||||
|
} else if std::env::var("VINTEO_API_KEY").is_ok() {
|
||||||
|
match init_grubbing_jitter().await {
|
||||||
|
Ok(_) => info!("Grabing (Vinteo - Jitter native) task de-initialized"),
|
||||||
|
Err(er) => error!("Jitter grabing mechanism crushed : {}", er),
|
||||||
|
}
|
||||||
|
// NATIVE GRAB TASK USING `config_api.json`
|
||||||
} else {
|
} else {
|
||||||
match init_api_grub_mechanism(config, &mut rx).await {
|
match init_api_grub_mechanism(config, &mut rx).await {
|
||||||
Ok(_) => {
|
Ok(_) => info!("Grabing task de-initialized"),
|
||||||
info!("Grabing task deinitialized");
|
Err(er) => error!("Grabing task returned an error : {}", er),
|
||||||
},
|
|
||||||
Err(er) => {
|
|
||||||
error!("Grabing task returned an error : {}", er);
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ use serde_json::{Map, Value};
|
||||||
use reqwest::Client;
|
use reqwest::Client;
|
||||||
use tokio::sync::Semaphore;
|
use tokio::sync::Semaphore;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use integr_structs::api::enode_monitoring::{AuthResponse, ForTokenCredentials, GenericUrl, LazyUnzip, get_chunk_size};
|
use integr_structs::api::enode_monitoring::{AuthResponse, ForTokenCredentials, get_chunk_size};
|
||||||
use integr_structs::api::enode_monitoring::cmdb::Query;
|
use integr_structs::api::enode_monitoring::cmdb::Query;
|
||||||
use tokio::task::JoinHandle;
|
use tokio::task::JoinHandle;
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
|
|
@ -13,7 +13,110 @@ use integr_structs::api::v3::{MetricOutputExtended, PrometheusMetricsExtended};
|
||||||
use tracing::{error, info, warn};
|
use tracing::{error, info, warn};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
// const IM_CONNECTION_TIMEOUT: String = std::env::var("IM_CONNECTION_TIMEOUT").unwrap_or_else(|_| "10".to_string());
|
trait AsDeviceRequest {
|
||||||
|
fn as_devices(self) -> Vec<String>;
|
||||||
|
}
|
||||||
|
trait IntoEnodeRequset {
|
||||||
|
fn into_enode_request(self) -> String;
|
||||||
|
}
|
||||||
|
impl AsDeviceRequest for Vec<String> {
|
||||||
|
fn as_devices(mut self) -> Vec<String> {
|
||||||
|
self.iter_mut()
|
||||||
|
.for_each(|dev| *dev = format!("/measures/device${}", dev));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct MetricInstance {
|
||||||
|
dola_id : String,
|
||||||
|
name : String,
|
||||||
|
desc : String,
|
||||||
|
device : String,
|
||||||
|
source : String,
|
||||||
|
}
|
||||||
|
impl IntoEnodeRequset for &[MetricInstance] {
|
||||||
|
fn into_enode_request(self) -> String {
|
||||||
|
let mut vec: Vec<String> = Vec::new();
|
||||||
|
vec.push("%5B".to_owned());
|
||||||
|
self.iter()
|
||||||
|
.enumerate()
|
||||||
|
.for_each(|(id, val)| {
|
||||||
|
if id > 0 {
|
||||||
|
vec.push(",".to_owned());
|
||||||
|
}
|
||||||
|
vec.push(format!("%22{}%22", val.dola_id));
|
||||||
|
});
|
||||||
|
vec.push("%5D".to_owned());
|
||||||
|
vec.concat()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct MetricMeta {
|
||||||
|
name : String,
|
||||||
|
desc : String,
|
||||||
|
device : String,
|
||||||
|
source : String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for MetricMeta {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
name : String::new(),
|
||||||
|
desc : String::new(),
|
||||||
|
device : String::new(),
|
||||||
|
source : String::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(private_interfaces)]
|
||||||
|
pub trait LazyUnzipInstance {
|
||||||
|
fn lazy_unzip(&self) -> HashMap<String, MetricMeta>;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl LazyUnzipInstance for &[MetricInstance] {
|
||||||
|
fn lazy_unzip(&self) -> HashMap<String, MetricMeta> {
|
||||||
|
self.iter().map(
|
||||||
|
|obj|
|
||||||
|
(
|
||||||
|
obj.dola_id.to_string(),
|
||||||
|
MetricMeta::new(
|
||||||
|
&obj.name,
|
||||||
|
&obj.desc,
|
||||||
|
&obj.device,
|
||||||
|
&obj.source
|
||||||
|
)
|
||||||
|
)
|
||||||
|
).collect()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MetricInstance {
|
||||||
|
fn new(id : &str, name : &str, desc : &str, device : &str, source : &str) -> Self {
|
||||||
|
Self {
|
||||||
|
dola_id : id.to_owned(),
|
||||||
|
name : name.to_owned(),
|
||||||
|
desc : desc.to_owned(),
|
||||||
|
device : device.to_owned(),
|
||||||
|
source : source.to_owned(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MetricMeta {
|
||||||
|
fn new(name : &str, desc : &str, device : &str, source : &str) -> Self {
|
||||||
|
Self {
|
||||||
|
name : name.to_owned(),
|
||||||
|
desc : desc.to_owned(),
|
||||||
|
device : device.to_owned(),
|
||||||
|
source : source.to_owned(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// # Fn `get_metrics_from_monitoring`
|
/// # Fn `get_metrics_from_monitoring`
|
||||||
///
|
///
|
||||||
|
|
@ -61,10 +164,6 @@ pub async fn get_metrics_from_monitoring(duration: usize, delay: usize) -> anyho
|
||||||
warn!("Session dropped, creating new ...");
|
warn!("Session dropped, creating new ...");
|
||||||
break 'inner;
|
break 'inner;
|
||||||
}
|
}
|
||||||
// if let Err(_) = a.get_measure_info(vec.clone()).await {
|
|
||||||
// warn!("Session dropped, creating new ...");
|
|
||||||
// break 'inner;
|
|
||||||
// }
|
|
||||||
tokio::time::sleep(tokio::time::Duration::from_secs(delay as u64)).await
|
tokio::time::sleep(tokio::time::Duration::from_secs(delay as u64)).await
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -95,6 +194,7 @@ pub struct MonitoringImporter {
|
||||||
login : String,
|
login : String,
|
||||||
password : String,
|
password : String,
|
||||||
access_token : String,
|
access_token : String,
|
||||||
|
api_token : String,
|
||||||
ts : String,
|
ts : String,
|
||||||
timeout : usize,
|
timeout : usize,
|
||||||
}
|
}
|
||||||
|
|
@ -117,6 +217,7 @@ impl MonitoringImporter {
|
||||||
login : env::var("ENODE_MONITORING_LOGIN").unwrap_or_else(|_| String::new()),
|
login : env::var("ENODE_MONITORING_LOGIN").unwrap_or_else(|_| String::new()),
|
||||||
password : env::var("ENODE_MONITORING_PASSWORD").unwrap_or_else(|_| String::new()),
|
password : env::var("ENODE_MONITORING_PASSWORD").unwrap_or_else(|_| String::new()),
|
||||||
access_token : String::new(),
|
access_token : String::new(),
|
||||||
|
api_token : env::var("ENODE_API_TOKEN").unwrap_or_else(|_| String::new()),
|
||||||
ts : String::new(),
|
ts : String::new(),
|
||||||
timeout : std::env::var("IM_CONNECTION_TIMEOUT").unwrap_or_else(|_| "10".to_string()).parse().unwrap_or_else(|_| 10)
|
timeout : std::env::var("IM_CONNECTION_TIMEOUT").unwrap_or_else(|_| "10".to_string()).parse().unwrap_or_else(|_| 10)
|
||||||
}
|
}
|
||||||
|
|
@ -125,7 +226,13 @@ impl MonitoringImporter {
|
||||||
/// and can be used to pull and push info to and from CM
|
/// and can be used to pull and push info to and from CM
|
||||||
///
|
///
|
||||||
async fn is_valid(&self) -> bool {
|
async fn is_valid(&self) -> bool {
|
||||||
!self.ip.is_empty() && !self.login.is_empty() && !self.password.is_empty()
|
!self.ip.is_empty() && ((!self.login.is_empty() && !self.password.is_empty() ) || !self.api_token.is_empty())
|
||||||
|
}
|
||||||
|
/// Function that checks is current `MonitoringImporter` valid
|
||||||
|
/// and can be used to pull and push info to and from CM
|
||||||
|
///
|
||||||
|
async fn is_minimal(&self) -> bool {
|
||||||
|
(self.login.is_empty() || self.password.is_empty()) && !self.api_token.is_empty()
|
||||||
}
|
}
|
||||||
/// A setter of `timestamp`
|
/// A setter of `timestamp`
|
||||||
///
|
///
|
||||||
|
|
@ -147,38 +254,43 @@ impl MonitoringImporter {
|
||||||
#[tracing::instrument(name = "cm_fn_session_start", skip_all)]
|
#[tracing::instrument(name = "cm_fn_session_start", skip_all)]
|
||||||
pub async fn start_session(&mut self) -> anyhow::Result<()> {
|
pub async fn start_session(&mut self) -> anyhow::Result<()> {
|
||||||
if !self.is_valid().await {
|
if !self.is_valid().await {
|
||||||
|
if self.is_minimal().await {
|
||||||
|
return Err(Error::msg(format!("Given API-Token is no more actual now ({})", &self.access_token)));
|
||||||
|
}
|
||||||
return Err(Error::msg("Invalid eNODE-Monitoring configuration"));
|
return Err(Error::msg("Invalid eNODE-Monitoring configuration"));
|
||||||
}
|
}
|
||||||
let client = Client::new();
|
if !self.api_token.is_empty() {
|
||||||
let url = format!("http://{}/e-data-front/auth/login", self.ip);
|
std::mem::swap(&mut self.access_token, &mut self.api_token);
|
||||||
let fortoken = ForTokenCredentials::new(&self.login, &self.password);
|
info!("API-Token that was in the ENODE configuration was set as access-token");
|
||||||
let mut delay = 1;
|
} else {
|
||||||
|
let client = Client::new();
|
||||||
|
let url = format!("http://{}/e-data-front/auth/login", self.ip);
|
||||||
|
let fortoken = ForTokenCredentials::new(&self.login, &self.password);
|
||||||
|
let mut delay = 1;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let client = client
|
let client = client
|
||||||
.post(&url)
|
.post(&url)
|
||||||
.timeout(tokio::time::Duration::from_secs(self.timeout as u64))
|
.timeout(tokio::time::Duration::from_secs(self.timeout as u64))
|
||||||
.header("Content-Type", "application/json")
|
.header("Content-Type", "application/json")
|
||||||
.json(&fortoken);
|
.json(&fortoken);
|
||||||
// let resp = client.send().await?;
|
if let Ok(resp) = client.send().await {
|
||||||
if let Ok(resp) = client.send().await {
|
match resp.json::<AuthResponse>().await {
|
||||||
// let auth = resp.json::<AuthResponse>().await?;
|
Ok(auth) => {
|
||||||
|
self.set_ts(&fortoken.ts).await;
|
||||||
match resp.json::<AuthResponse>().await {
|
self.access_token = auth.access_token.to_owned();
|
||||||
Ok(auth) => {
|
tracing::trace!("Access key was changed");
|
||||||
self.set_ts(&fortoken.ts).await;
|
break;
|
||||||
self.access_token = auth.access_token.to_owned();
|
},
|
||||||
tracing::trace!("Access key was changed");
|
Err(er) => error!("Error with extracting access-key from CM response due to {}", er),
|
||||||
break;
|
}
|
||||||
},
|
|
||||||
Err(er) => error!("Error with extracting access-key from CM response due to {}", er),
|
|
||||||
}
|
}
|
||||||
|
error!("Error while trying to create a new session, waiting {} secs and retrying ...", delay);
|
||||||
|
tokio::time::sleep(tokio::time::Duration::from_secs(delay)).await;
|
||||||
|
delay = delay * 2;
|
||||||
}
|
}
|
||||||
error!("Error while trying to create a new session, waiting {} secs and retrying ...", delay);
|
info!("Started a new CM session");
|
||||||
tokio::time::sleep(tokio::time::Duration::from_secs(delay)).await;
|
|
||||||
delay = delay * 2;
|
|
||||||
}
|
}
|
||||||
info!("Started a new CM session");
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -189,32 +301,63 @@ impl MonitoringImporter {
|
||||||
/// , where `(String, String)` is a tuple of measure `id` and `description`
|
/// , where `(String, String)` is a tuple of measure `id` and `description`
|
||||||
/// (`name`)
|
/// (`name`)
|
||||||
#[tracing::instrument(name = "CM get metrics list mechanism", skip_all)]
|
#[tracing::instrument(name = "CM get metrics list mechanism", skip_all)]
|
||||||
pub async fn get_metrics_list(&self) -> anyhow::Result<Vec<(String, String)>> {
|
pub async fn get_metrics_list(&self) -> anyhow::Result<Vec<MetricInstance>> {
|
||||||
tracing::trace!("Trying ti get measures list from CM ...");
|
tracing::trace!("Trying ti get measures list from CM ...");
|
||||||
let client = Client::new();
|
let client = Client::new();
|
||||||
let mut vec: Vec<(String, String)> = Vec::new();
|
let mut vec: Vec<MetricInstance> = Vec::new();
|
||||||
let url = format!("http://{}/e-cmdb/api/query", self.ip);
|
let url = format!("http://{}/e-cmdb/api/query", self.ip);
|
||||||
|
let id_list = {
|
||||||
|
match std::env::var("ENODE_TARGET_DEVICES") {
|
||||||
|
Err(_) => vec![String::from("18"), String::from("19")],
|
||||||
|
Ok(var) => var.split(',').into_iter().map(|st| st.trim().to_string()).collect::<Vec<String>>(),
|
||||||
|
}
|
||||||
|
};
|
||||||
|
let list_of_devices = id_list.clone().as_devices();
|
||||||
let client = client
|
let client = client
|
||||||
.post(url)
|
.post(url)
|
||||||
.timeout(tokio::time::Duration::from_secs(self.timeout as u64))
|
.timeout(tokio::time::Duration::from_secs(self.timeout as u64))
|
||||||
.header("Content-Type", "application/json")
|
.header("Content-Type", "application/json")
|
||||||
.header("access-token", &self.access_token)
|
.bearer_auth(&self.access_token)
|
||||||
.json(&Query::default());
|
.json(&Query::device_oriented(list_of_devices));
|
||||||
|
|
||||||
let resp = client.send().await?.text().await?;
|
let resp = client.send().await?.text().await?;
|
||||||
let resp: Value = serde_json::from_str(&resp)?;
|
let resp: Value = serde_json::from_str(&resp)?;
|
||||||
|
|
||||||
if let Some(arr) = resp.as_array() {
|
if let Some(arr) = resp.as_array() {
|
||||||
for measure in arr {
|
for device in arr {
|
||||||
let id = measure.get("id");
|
let device_id = {
|
||||||
let cls = measure.get("cls");
|
match device.get("name") {
|
||||||
let name = measure.get("name");
|
Some(name) => {
|
||||||
if id.is_some() && cls.is_some() {
|
match serde_json::to_string(name) {
|
||||||
let id = id.unwrap().as_i64().unwrap_or_default();
|
Ok(name) => {
|
||||||
let cls = cls.unwrap().as_str().unwrap_or_else(|| "");
|
name.split('$').last().unwrap_or_else(|| "undefined-device").to_owned()
|
||||||
let name = name.unwrap_or_else(|| &Value::Null).as_str().unwrap_or_else(|| "null");
|
},
|
||||||
if cls.is_empty() {
|
Err(_) => "undefined-device".to_string(),
|
||||||
return Err(Error::msg("Invalid JSON in response. Wrong types of fields (`id` or `cls`)"));
|
}
|
||||||
|
},
|
||||||
|
None => "undefined-device".to_string(),
|
||||||
|
}
|
||||||
|
};
|
||||||
|
let device_id = device_id.trim_end_matches('"');
|
||||||
|
if let Some(links) = device.get("links") {
|
||||||
|
if let Some(measures) = links.as_array() {
|
||||||
|
for measure in measures.iter() {
|
||||||
|
let dola_id = measure.get("id");
|
||||||
|
let id = measure.get("measure_id");
|
||||||
|
let source = measure.get("source_id");
|
||||||
|
let desc = measure.get("name");
|
||||||
|
if id.is_some() && source.is_some() && dola_id.is_some() {
|
||||||
|
let dola_id = format!("measure${}", dola_id.unwrap().as_i64().unwrap_or_else(|| 0));
|
||||||
|
let id = id.unwrap().as_str().unwrap_or_else(|| "no-name");
|
||||||
|
let source = source.unwrap().as_str().unwrap_or_else(|| "no-source");
|
||||||
|
let desc = desc.unwrap_or_else(|| &Value::Null).as_str().unwrap_or_else(|| "no description");
|
||||||
|
if source.is_empty() {
|
||||||
|
return Err(Error::msg("Invalid JSON in response. Wrong types of fields (`measure_id` or `source_id`)"));
|
||||||
|
}
|
||||||
|
vec.push(MetricInstance::new(&dola_id, id, desc, device_id.as_ref(), source));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
vec.push((format!("{}${}", cls, id), name.to_string()));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -240,8 +383,8 @@ impl MonitoringImporter {
|
||||||
/// exprots all data by itselfs
|
/// exprots all data by itselfs
|
||||||
///
|
///
|
||||||
#[tracing::instrument(name = "CM get measures info mechanism", skip_all)]
|
#[tracing::instrument(name = "CM get measures info mechanism", skip_all)]
|
||||||
pub async fn get_measure_info(&self, measures: Arc<Vec<(String, String)>>) -> anyhow::Result<()> {
|
pub async fn get_measure_info(&self, measures: Arc<Vec<MetricInstance>>) -> anyhow::Result<()> {
|
||||||
tracing::trace!("Trying ti get info about each measure ...");
|
tracing::trace!("Trying to get info about each measure ...");
|
||||||
let mut sys = sysinfo::System::new();
|
let mut sys = sysinfo::System::new();
|
||||||
sys.refresh_cpu_all();
|
sys.refresh_cpu_all();
|
||||||
// adaptive permition on task spawm to prevent system overload
|
// adaptive permition on task spawm to prevent system overload
|
||||||
|
|
@ -258,7 +401,7 @@ impl MonitoringImporter {
|
||||||
let arc = arc.clone();
|
let arc = arc.clone();
|
||||||
let client = client.clone();
|
let client = client.clone();
|
||||||
let hm = measure.lazy_unzip();
|
let hm = measure.lazy_unzip();
|
||||||
let measure = Arc::new(measure.display());
|
let measure = Arc::new(measure.into_enode_request());
|
||||||
let _permit = permit.acquire().await.unwrap();
|
let _permit = permit.acquire().await.unwrap();
|
||||||
|
|
||||||
let jh: JoinHandle<anyhow::Result<PrometheusMetricsExtended>> = tokio::spawn(async move {
|
let jh: JoinHandle<anyhow::Result<PrometheusMetricsExtended>> = tokio::spawn(async move {
|
||||||
|
|
@ -277,8 +420,8 @@ impl MonitoringImporter {
|
||||||
match event.await {
|
match event.await {
|
||||||
Ok(val) => {
|
Ok(val) => {
|
||||||
match crate::export::Exporter::export_extended_metrics(val?).await {
|
match crate::export::Exporter::export_extended_metrics(val?).await {
|
||||||
Ok(bytes) => {info!("Successfully transmitted {} bytes to the Prometehus exporter", bytes)},
|
Ok(bytes) => {info!("Successfully transmitted {} bytes", bytes)},
|
||||||
Err(er) => error!("Cannot export data to the Prometehus exporter due to : `{}`", er),
|
Err(er) => error!("Cannot export data due to : `{}`", er),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(er) => {
|
Err(er) => {
|
||||||
|
|
@ -304,14 +447,14 @@ impl MonitoringImporter {
|
||||||
measure: Arc<String>,
|
measure: Arc<String>,
|
||||||
client: Arc<Client>,
|
client: Arc<Client>,
|
||||||
arc: Arc<Self>,
|
arc: Arc<Self>,
|
||||||
hm: &HashMap<String, String>,
|
hm: &HashMap<String, MetricMeta>,
|
||||||
) -> anyhow::Result<PrometheusMetricsExtended> {
|
) -> anyhow::Result<PrometheusMetricsExtended> {
|
||||||
tracing::trace!("Processing CM endpoint with one or more measure names");
|
tracing::trace!("Processing CM endpoint with one or more measure names");
|
||||||
let resp = client
|
let resp = client
|
||||||
.get(format!("http://{}/e-nms/mirror/measure/{}", arc.ip, &measure))
|
.get(format!("http://{}/e-nms/mirror/measure/{}", arc.ip, &measure))
|
||||||
.timeout(tokio::time::Duration::from_secs(arc.timeout as u64))
|
.timeout(tokio::time::Duration::from_secs(arc.timeout as u64))
|
||||||
.header("Content-Type", "application/json")
|
.header("Content-Type", "application/json")
|
||||||
.header("access-token", &arc.access_token)
|
.bearer_auth(&arc.access_token)
|
||||||
.send().await?
|
.send().await?
|
||||||
.text().await?;
|
.text().await?;
|
||||||
tokio::task::yield_now().await;
|
tokio::task::yield_now().await;
|
||||||
|
|
@ -336,7 +479,7 @@ impl MonitoringImporter {
|
||||||
///
|
///
|
||||||
/// 3) if `Value` is `_` -> returns error **Invalid JSON format**
|
/// 3) if `Value` is `_` -> returns error **Invalid JSON format**
|
||||||
///
|
///
|
||||||
fn extract_metric_data(json: Value, hm: &HashMap<String, String>) -> Pin<Box<dyn Future<Output = anyhow::Result<Vec<MetricOutputExtended>>> + Send + '_>> {
|
fn extract_metric_data(json: Value, hm: &HashMap<String, MetricMeta>) -> Pin<Box<dyn Future<Output = anyhow::Result<Vec<MetricOutputExtended>>> + Send + '_>> {
|
||||||
Box::pin(async move {
|
Box::pin(async move {
|
||||||
return match json {
|
return match json {
|
||||||
Value::Object(obj) => {
|
Value::Object(obj) => {
|
||||||
|
|
@ -361,52 +504,48 @@ impl MonitoringImporter {
|
||||||
///
|
///
|
||||||
/// Searches for certain fields and aggregates it in the `MetricOutputExtended`
|
/// Searches for certain fields and aggregates it in the `MetricOutputExtended`
|
||||||
/// object
|
/// object
|
||||||
async fn process_value(obj : &Map<String, Value>, hm: &HashMap<String, String>) -> anyhow::Result<MetricOutputExtended> {
|
async fn process_value(obj : &Map<String, Value>, hm: &HashMap<String, MetricMeta>) -> anyhow::Result<MetricOutputExtended> {
|
||||||
tracing::trace!("Processing atomic Object value in CM JSON-response");
|
tracing::trace!("Processing atomic Object value in CM JSON-response");
|
||||||
let id = obj.get("$id");
|
let id = obj.get("$id");
|
||||||
let val = obj.get("value");
|
let val = obj.get("value");
|
||||||
let description = {
|
|
||||||
let dola_ip = obj.get("$id").unwrap_or_else(|| &Value::Null);
|
|
||||||
let zero = String::new();
|
|
||||||
if dola_ip.is_null() {
|
|
||||||
zero
|
|
||||||
} else {
|
|
||||||
hm.get(
|
|
||||||
dola_ip.as_str().unwrap_or_else(|| "")
|
|
||||||
)
|
|
||||||
.unwrap_or_else(|| &zero)
|
|
||||||
.to_owned()
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if id.is_none() || val.is_none() {
|
if id.is_none() || val.is_none() {
|
||||||
return Err(Error::msg("Cannot get values of fields `id` and `value` from JSON Response"))
|
return Err(Error::msg("Cannot get values of fields `id` and `value` from JSON Response"))
|
||||||
}
|
}
|
||||||
let id = id.unwrap().as_str().unwrap_or_else(|| "").replace("$", "_");
|
|
||||||
|
let id = id.unwrap().as_str().unwrap_or_else(|| "");
|
||||||
|
let default_meta = MetricMeta::default();
|
||||||
|
let meta = hm.get(id).unwrap_or_else(|| &default_meta);
|
||||||
|
let id = id.replace("$", "_");
|
||||||
let val = val.unwrap();
|
let val = val.unwrap();
|
||||||
|
let device = meta.device.parse::<usize>().unwrap_or_else(|_| 0);
|
||||||
|
|
||||||
if id.is_empty() {
|
if id.is_empty() {
|
||||||
return Err(Error::msg("Empty `id` field. Invalid JSON response"))
|
return Err(Error::msg("Empty `id` field. Invalid JSON response"))
|
||||||
}
|
}
|
||||||
|
Ok(MetricOutputExtended::new_with_slices(
|
||||||
Ok(MetricOutputExtended {
|
id.as_ref(),
|
||||||
id : id.to_owned(),
|
&meta.name,
|
||||||
json_type : match val {
|
{
|
||||||
|
match val {
|
||||||
Value::Number(val) => {
|
Value::Number(val) => {
|
||||||
if val.is_i64() {
|
if val.is_i64() {
|
||||||
"i64".to_owned()
|
"i64"
|
||||||
} else if val.is_u64() {
|
} else if val.is_u64() {
|
||||||
"u64".to_owned()
|
"u64"
|
||||||
} else {
|
} else {
|
||||||
"f64".to_owned()
|
"f64"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
_ => "unknown".to_owned(),
|
_ => "unknown",
|
||||||
|
}
|
||||||
},
|
},
|
||||||
addr : "enode.monitoring.api".to_owned(),
|
"enode.monitoring.api",
|
||||||
desc : description,
|
&meta.desc,
|
||||||
value : val.clone()
|
Some(device),
|
||||||
})
|
Some(meta.source.clone()),
|
||||||
|
val.clone(),
|
||||||
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -97,9 +97,8 @@ impl<'a> ApiPoll<'a> {
|
||||||
error!("Bad JSON in response. Error: {}", er);
|
error!("Bad JSON in response. Error: {}", er);
|
||||||
},
|
},
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
let endpoint_name = &metrics.name;
|
|
||||||
let preproc = JsonParser::parse(&metrics.measure, &response);
|
let preproc = JsonParser::parse(&metrics.measure, &response);
|
||||||
let preproc = PrometheusMetrics::new(&service_id, endpoint_name, preproc);
|
let preproc = PrometheusMetrics::new(&service_id, preproc);
|
||||||
match Exporter::export_metrics(preproc).await {
|
match Exporter::export_metrics(preproc).await {
|
||||||
Ok(bytes) => {
|
Ok(bytes) => {
|
||||||
info!("Successfully exported {} bytes of metrics data to Prometheus", bytes);
|
info!("Successfully exported {} bytes of metrics data to Prometheus", bytes);
|
||||||
|
|
|
||||||
|
|
@ -12,5 +12,6 @@ publish = ["kellnr"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.95"
|
anyhow = "1.0.95"
|
||||||
chrono = "0.4.40"
|
chrono = "0.4.40"
|
||||||
|
dotenv = "0.15.0"
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.217", features = ["derive"] }
|
||||||
serde_json = "1.0.135"
|
serde_json = "1.0.135"
|
||||||
|
|
|
||||||
|
|
@ -265,21 +265,29 @@ pub mod v3 {
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
pub struct MetricOutputExtended {
|
pub struct MetricOutputExtended {
|
||||||
pub id : String,
|
pub id : String,
|
||||||
|
pub name : String,
|
||||||
#[serde(rename = "type")]
|
#[serde(rename = "type")]
|
||||||
pub json_type : String,
|
pub json_type : String,
|
||||||
pub addr : String,
|
pub addr : String,
|
||||||
pub value : Value,
|
pub value : Value,
|
||||||
#[serde(rename = "description")]
|
#[serde(rename = "description")]
|
||||||
pub desc : String,
|
pub desc : String,
|
||||||
|
pub status: usize,
|
||||||
|
pub device: Option<usize>,
|
||||||
|
pub source: Option<String>,
|
||||||
}
|
}
|
||||||
impl MetricOutputExtended {
|
impl MetricOutputExtended {
|
||||||
pub fn new_with_slices(id : &str, json_type : &str, addr: &str, desc : &str, value : Value) -> Self {
|
pub fn new_with_slices(id : &str, name: &str, json_type : &str, addr: &str, desc : &str, device: Option<usize>, source: Option<String>, value : Value) -> Self {
|
||||||
MetricOutputExtended {
|
MetricOutputExtended {
|
||||||
id : id.to_string(),
|
id : id.to_string(),
|
||||||
|
name : name.to_string(),
|
||||||
json_type : json_type.to_string(),
|
json_type : json_type.to_string(),
|
||||||
addr : addr.to_string(),
|
addr : addr.to_string(),
|
||||||
value : value,
|
value : value,
|
||||||
desc : desc.to_string(),
|
desc : desc.to_string(),
|
||||||
|
device,
|
||||||
|
source,
|
||||||
|
status: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -287,21 +295,21 @@ pub mod v3 {
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
pub struct PrometheusMetrics {
|
pub struct PrometheusMetrics {
|
||||||
pub service_name: String,
|
pub service_name: String,
|
||||||
pub endpoint_name: String,
|
// pub endpoint_name: String,
|
||||||
pub metrics: Vec<MetricOutput>,
|
pub metrics: Vec<MetricOutput>,
|
||||||
}
|
}
|
||||||
impl PrometheusMetrics {
|
impl PrometheusMetrics {
|
||||||
pub fn new(service: &str, endpoint: &str, metrics: Vec<MetricOutput>) -> Self {
|
pub fn new(service: &str, metrics: Vec<MetricOutput>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
service_name: service.to_string(),
|
service_name: service.to_string(),
|
||||||
endpoint_name: endpoint.to_string(),
|
// endpoint_name: endpoint.to_string(),
|
||||||
metrics: metrics
|
metrics: metrics
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub async fn new_zvks(metrics: Vec<MetricOutput>) -> Self {
|
pub async fn new_zvks(metrics: Vec<MetricOutput>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
service_name : "zvks".to_owned(),
|
service_name : "zvks".to_owned(),
|
||||||
endpoint_name : "apiforsnmp".to_owned(),
|
// endpoint_name : "apiforsnmp".to_owned(),
|
||||||
metrics : metrics,
|
metrics : metrics,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -315,14 +323,21 @@ pub mod v3 {
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
pub struct PrometheusMetricsExtended {
|
pub struct PrometheusMetricsExtended {
|
||||||
pub service_name: String,
|
pub service_name: String,
|
||||||
pub endpoint_name: String,
|
|
||||||
pub metrics: Vec<MetricOutputExtended>,
|
pub metrics: Vec<MetricOutputExtended>,
|
||||||
}
|
}
|
||||||
impl PrometheusMetricsExtended {
|
impl PrometheusMetricsExtended {
|
||||||
|
pub fn new_empty_jitter() -> Self {
|
||||||
|
Self {
|
||||||
|
service_name : "zvks".to_owned(),
|
||||||
|
metrics : Vec::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn add(&mut self, metric: MetricOutputExtended) {
|
||||||
|
self.metrics.push(metric);
|
||||||
|
}
|
||||||
pub async fn new_zvks(metrics: Vec<MetricOutputExtended>) -> Self {
|
pub async fn new_zvks(metrics: Vec<MetricOutputExtended>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
service_name : "zvks".to_owned(),
|
service_name : "zvks".to_owned(),
|
||||||
endpoint_name : "apiforsnmp".to_owned(),
|
|
||||||
metrics : metrics,
|
metrics : metrics,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -365,18 +380,18 @@ pub mod enode_monitoring {
|
||||||
pub struct Query {
|
pub struct Query {
|
||||||
id : Vec<String>,
|
id : Vec<String>,
|
||||||
data : Data,
|
data : Data,
|
||||||
#[serde(rename = "postQuery")]
|
// #[serde(rename = "postQuery")]
|
||||||
post_query : String,
|
// post_query : String,
|
||||||
#[serde(rename = "enableActions")]
|
#[serde(rename = "enableActions")]
|
||||||
enable_actions : bool,
|
enable_actions : bool,
|
||||||
ts : usize
|
ts : usize
|
||||||
}
|
}
|
||||||
impl Default for Query {
|
impl Query {
|
||||||
fn default() -> Self {
|
pub fn device_oriented(devices: Vec<String>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
id : vec!["/measures/device$18".to_owned()],
|
id : devices,
|
||||||
data : Data::default(),
|
data : Data::default(),
|
||||||
post_query : "links".to_owned(),
|
// post_query : "links".to_owned(),
|
||||||
enable_actions : false,
|
enable_actions : false,
|
||||||
ts : 1740060679399
|
ts : 1740060679399
|
||||||
}
|
}
|
||||||
|
|
@ -404,7 +419,7 @@ pub mod enode_monitoring {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
flatten : true,
|
flatten : true,
|
||||||
filter : Filter::default()
|
filter : Filter::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -474,14 +489,9 @@ pub mod enode_monitoring {
|
||||||
|
|
||||||
pub fn get_chunk_size(total_measures: usize) -> usize {
|
pub fn get_chunk_size(total_measures: usize) -> usize {
|
||||||
match total_measures {
|
match total_measures {
|
||||||
0..=144 => total_measures,
|
0..=432 => total_measures,
|
||||||
145..=288 => total_measures / 4,
|
433..=1008 => total_measures / 2,
|
||||||
289..=432 => total_measures / 5,
|
_ => total_measures / 4,
|
||||||
433..=576 => total_measures / 6,
|
|
||||||
577..=720 => total_measures / 7,
|
|
||||||
721..=864 => total_measures / 8,
|
|
||||||
865..=1008 => total_measures / 9,
|
|
||||||
_ => total_measures / 10,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue