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
PROJECT=sample_project
COMPANY=acme
LOCATION=ec2
DEV=coder
# Database info
DB_USER=user
DB_PASSWORD=p@ssw0rd
DB_HOST=localhost
DB_DATABASE=teste
Exemplo de Uso:
import time
from monit.core import Monitor
from monit.error import SetupError
def main():
# Initialize the Monitor
monit = Monitor()
try:
# Your code that might raise exceptions
# For demonstration purposes, let's raise an exception
time.sleep(5)
raise ValueError("This is a sample error.")
except Exception as e:
# Notify the Monitor about the error
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
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.1.1.tar.gz
(2.5 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.1.1.tar.gz.
File metadata
- Download URL: monit-agd-1.1.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbea9a6d690b55a1dbe8ad12a10d6e974a4bcbcf3ef955544548bdaf68211201
|
|
| MD5 |
91a367de3e731c125534654373a3f45b
|
|
| BLAKE2b-256 |
43dcc503f8e3417b0c374f460bcc178124ab8c89a286aa8bdc20c1c083a045c7
|
File details
Details for the file monit_agd-1.1.1-py3-none-any.whl.
File metadata
- Download URL: monit_agd-1.1.1-py3-none-any.whl
- Upload date:
- Size: 2.6 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 |
0d1e8a88f9aa22a5eda3ac1b32fe921597e35571003a74aacc7d8bdbb584708d
|
|
| MD5 |
44c63c5ed6f5a721e69587205dc72e23
|
|
| BLAKE2b-256 |
688ecca4e856d88194b277e6eb5bc7527cb4c370aad13b4c2e66c1db06a88295
|