-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (42 loc) · 1.16 KB
/
.env.example
File metadata and controls
55 lines (42 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
KARIRICODE_APP=develop
KARIRICODE_PHP_VERSION=8.3
KARIRICODE_PHP_PORT=9303
# Canal de log padrão
LOG_CHANNEL=file
# Nível de log padrão
LOG_LEVEL=debug
LOG_ENCRYPTION_KEY=83302e6472acda6a8aeadf78409ceda3959994991393cdafbe23d2a46a148ba4
# Slack para logs
SLACK_BOT_TOKEN=xoxb-your-bot-token-here
SLACK_CHANNEL=#your-channel-name
# URL e Porta do Papertrail
PAPERTRAIL_URL=logs.papertrailapp.com
PAPERTRAIL_PORT=12345
# Formatter para logs stderr
LOG_STDERR_FORMATTER=json
# Índice do Elasticsearch para logs
ELASTIC_LOG_INDEX=logging-logs
# Habilitar logs assíncronos
ASYNC_LOG_ENABLED=true
# Habilitar logs de consulta
QUERY_LOG_ENABLED=true
QUERY_LOG_CHANNEL=file
QUERY_LOG_THRESHOLD=100
# Habilitar logs de desempenho
PERFORMANCE_LOG_ENABLED=true
PERFORMANCE_LOG_CHANNEL=file
PERFORMANCE_LOG_THRESHOLD=1000
# Habilitar logs de erro
ERROR_LOG_ENABLED=true
ERROR_LOG_CHANNEL=file
# Configurações do limpador de logs
LOG_CLEANER_ENABLED=true
LOG_CLEANER_KEEP_DAYS=30
# Configurações do CircuitBreaker
CIRCUIT_BREAKER_FAILURE_THRESHOLD=3
CIRCUIT_BREAKER_RESET_TIMEOUT=60
# Configurações do Retry
RETRY_MAX_ATTEMPTS=3
RETRY_DELAY=1000
RETRY_MULTIPLIER=2
RETRY_JITTER=100