Programa de monitoramento de código python, desenvolvido para ser utilizado pelas funcionário da Agência de dados
Project description
Monit
Instalação:
pip install monit-agd
Exemplo arquivo .env:
# Project info
# Informações obrigatórias
PROJECT=sample_project
COMPANY=acme
LOCATION=ec2
DEV=coder
# Database info
# Informações obrigatórias
DB_USER=user
DB_PASSWORD=p@ssw0rd
DB_HOST=localhost
DB_DATABASE=teste
# Email info
# Deixe em branco para desativar o envio de e-mails
EMAIL=
EMAIL_PASSWORD=
Exemplo de Uso:
Maneira mais simples de usar o Monit
import time
from monit.core import Monitor as monit
from monit.error import SetupError
def main():
try:
time.sleep(5)
raise ValueError("This is a sample error.")
except Exception as e:
print("Erro: Ocorreu um erro inesperado.")
monit.notify_and_exit(SetupError, e)
if __name__ == "__main__":
main()
Registrar múltiplos erros
# sample.py
import time
from monit.core import Monitor
from monit.error import SetupError
# from monit.logger import Logger
# from monit.log2file import Log2File
def main():
# Initialize the Monitor
monit = Monitor()
# Log2File()
# log = Logger()
try:
# Your code that might raise exceptions
time.sleep(5)
raise ValueError("This is a sample error.")
except Exception as e:
print("Erro: Ocorreu um erro inesperado.")
monit.notify(SetupError, e)
# monit.notify_and_exit(SetupError, e)
monit.end()
if __name__ == "__main__":
main()
Tipos de erros:
SetupError
DatabaseError
HTTPError
FileError
FolderError
TooManyRequests
DataCreateError
DataUpdateError
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
monit-agd-1.3.6.tar.gz
(7.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file monit-agd-1.3.6.tar.gz.
File metadata
- Download URL: monit-agd-1.3.6.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d400a9fa603e06bb43a97434f681125537839e2d315854b82b5456f0a35a9075
|
|
| MD5 |
524655778261ae940d290f90334c9269
|
|
| BLAKE2b-256 |
0738c59470243ff458b637e86b8e08dc8fcd6a3f2eebff70e51a262255489548
|
File details
Details for the file monit_agd-1.3.6-py3-none-any.whl.
File metadata
- Download URL: monit_agd-1.3.6-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2aea1d743516b74e15dfecd6af747a12f3b0f363887920c134ccc57f28a332f3
|
|
| MD5 |
062c1c149ac2c17df11ff6ea93d1122b
|
|
| BLAKE2b-256 |
ce5026e1e8c2c03735009fa95abe4bcec350cc89b43b2b925a664feb13b2388f
|