Skip to main content

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


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.5.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

monit_agd-1.3.5-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file monit-agd-1.3.5.tar.gz.

File metadata

  • Download URL: monit-agd-1.3.5.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for monit-agd-1.3.5.tar.gz
Algorithm Hash digest
SHA256 2e30bb0391b8948175ec195d94213eb350d88f62be5c8a69ef1972467fdbafe0
MD5 5da63154b138e2173481e9aebb8d4763
BLAKE2b-256 c708bcca48970e1896b7442ac509ae36a42482364d1d5f4c077de15729ca0716

See more details on using hashes here.

File details

Details for the file monit_agd-1.3.5-py3-none-any.whl.

File metadata

  • Download URL: monit_agd-1.3.5-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

Hashes for monit_agd-1.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9828247ade508901a4481108de252827a9fc134ec6e1f39769a047f4351db191
MD5 aa685929f69405f676c273ff11edcdee
BLAKE2b-256 196ef74facf18139e01184346d0380527e99a7beb5cf0aeb13e7a42cf69198f7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page