ATS Monitoring

Application for monitoring and reporting of engineering systems, sending notifications via Telegram-bot, API SMS gateway

Diagram

Prerequisites outside docker

$ sudo apt-get install libssl-dev

Fedora

$ sudo dnf openssl-devel ``` * Install PostgreSQL

Initial setup

GATEWAYSTRCONNECTION= "URL with your token" * Edit your Telegram-bot settings in .cargo/config.toml

For example:

TGBOTTOKEN = "your token" * Edit PostgreSQL settings in .cargo/config.toml

For example:

POSTGRESUSERNAME = "postgres" POSTGRESPASSWORD = "mysecretpassword" POSTGRESDB = "postgres" POSTGRESHOSTNAME = "postgresql" POSTGRES_PORT = "5432" * Edit PLC settings in .cargo/config.toml

For example:

IP adress PLC TRIM5

IPTRIM5 = "ipadress:port"

generator_work modbus adress

TRANSMITTED_WORK = "6"

connection modbus adress

CONNECTION = "19" ```

Setting up the environment

$ RUSTLOG=debug cargo run --release * For write log's to file $ RUSTLOG=debug cargo run --release > log.txt ```

Run app in docker locally

Telegram bot sends messages in the following cases:

disconnecting power from the mains, successful start of the generator or

For example:

disconnecting power from the mains, the generator startup failed * Restoration of power supply from the power grid

For example:

the power supply from the power grid has been restored, the generator is working fine or

For example:

the power supply has not been restored, the generator is faulty * Failure of the generator in the transmission mode of power supply from the city power grid

For example:

Alarm! The generator is faulty! Urgently perform service work! * Restoring the operation of the generator in the mode of electricity transmission from the city power grid the efficiency of the generator in the mode of transmission of electricity from the power grid has been restored ```