NucelarMonitor is a very single project for monitoring OS and their Hardware and services in Stream via Web from server.
Go to file
2026-03-04 15:05:57 +01:00
Bash #wip: Bash done. Python base done. Building SQL Server base. 2026-03-02 06:59:40 +01:00
JSON #wip(vbs): VBS building... 2026-03-02 15:19:45 +01:00
Public #wip: Bash done. Python base done. Building SQL Server base. 2026-03-02 06:59:40 +01:00
Python fix(py,sql): Fixed all Windows targets. 2026-03-04 15:05:57 +01:00
SQLServer fix(py,sql): Fixed all Windows targets. 2026-03-04 15:05:57 +01:00
Tools #wip(vbs): VBS building... 2026-03-02 15:19:45 +01:00
VisualBasicScripts #wip(vbs): VBS building... 2026-03-02 15:19:45 +01:00
.gitignore #wip: SQL Building. Docker container done. 2026-03-03 21:53:09 +01:00
docker-compose.yml #wip: SQL Building. Docker container done. 2026-03-03 21:53:09 +01:00
LICENSE Initial commit 2026-02-22 13:13:26 +00:00
README.md #wip: Bash done. Python base done. Building SQL Server base. 2026-03-02 06:59:40 +01:00
version #wip: Bash done. Python base done. Building SQL Server base. 2026-03-02 06:59:40 +01:00

NucelarMonitor

NucelarMonitor is a very single project for monitoring OS and their Hardware and services in Stream via Web from server.

Notes

Datos de envío Debian:

  1. list[str]: Hostnames.
  2. str|None: Domain.
  3. list[list[int, str, bool, str, int]]: Interfaces de red. Por cada uno: 0. int: i. Identificador de posición.
    1. str: Nombre.
    2. bool: ¿Es IPv6?
    3. str: IP.
    4. int: Máscara.
  4. list[list[str, int, int, str|None]]: Discos. Por cada uno: 0. str: Nombre.
    1. int: Capacidad.
    2. int: Espacio libre.
    3. str|None: Punto de montaje.
  5. int: Iteraciones o ciclos de conteo de las velas.
  6. list[int, int]: Timestamp de inicio y de fin de las velas. 0. int: Timestamp de inicio.
    1. int: Timestamp de fin.
  7. list[float, float, float, float, float]: Vela de uso porcentual de la CPU: 0. float: Entrada.
    1. float: Salida.
    2. float: Mínimo.
    3. float: Máximo.
    4. float: Media.
  8. list[int, int, int, int, int, float]: Vela de uso de la memoria RAM. 0. int: Total de memoria.
    1. int: Entrada.
    2. int: Salida.
    3. int: Mínimo.
    4. int: Máximo.
    5. float: Media.
  9. list[list[list[str, int, int, int, int, int, int]]]: Uso de Red. Está diseñado en un proceso de diferencia Entrada/Salida. Es una lista de dos listas, entrada y salida, el segundo nivel tiene una lista por cada interfaz de red, las cuales tienen: 0. str: Nombre. Identifica la interfaz de red.
    1. int: Bytes recepcionados actualmente.
    2. int: Paquetes recepcionados actualmente.
    3. int: Errores en recepción actualmente.
    4. int: Bytes enviados actualmente.
    5. int: Paquetes enviados actualmente.
    6. int: Errores en envío actualmente.

La idea es procesar el uso de red en Python.