Update .gitignore and refactor metrics.py for improved logging and consistency - Added coverage.xml to .gitignore to prevent tracking of coverage reports. - Refactored metric labels in metrics.py for consistency in string formatting and improved readability. - Enhanced logging messages in various activities to ensure uniformity in message formatting.
50 lines
639 B
Plaintext
50 lines
639 B
Plaintext
# Ignorar volumes do Docker
|
|
docker-compose.override.yml
|
|
**/db_data/
|
|
**/kafka-volume/
|
|
**/zookeeper-volume/
|
|
**/mage_data/
|
|
**/minio_data/
|
|
**/venv/
|
|
**/certs/*.pem
|
|
**/certs/*.der
|
|
**/certs/*.csr
|
|
**/deploy/*.yaml
|
|
scouter/.file_versions/
|
|
scouter/pipelines/**/triggers.yaml
|
|
**/postgres_data/**
|
|
# Ignorar arquivos e diretórios de cache do Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Ignorar logs
|
|
*.log
|
|
|
|
# Ignorar arquivos de configuração locais
|
|
.vscode/
|
|
.pytest_cache/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Ignorar arquivos temporários
|
|
*.tmp
|
|
*.bak
|
|
*.old
|
|
.secret
|
|
|
|
# Ignorar coverage
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# git keys
|
|
git_key*
|
|
|
|
git_log
|
|
|
|
.env
|
|
|
|
tmp/
|
|
catboost_info/ |