-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy path.env.example
More file actions
70 lines (62 loc) · 2.84 KB
/
Copy path.env.example
File metadata and controls
70 lines (62 loc) · 2.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Sample environment file for PMM Server.
# To use it, copy to .env and adjust values as needed:
#
# cp .env.example .env
# The latest PMM Server image is alsways published as percona/pmm-server:3.
# A specific version can be used by changing the tag, e.g., percona/pmm-server:3.7.0.
PMM_SERVER_IMAGE=percona/pmm-server:3
# Label-based access control for PMM Server. Set to 1 to enable.
PMM_ENABLE_ACCESS_CONTROL=1
# Enable QAN for the internal PostgreSQL database. Not recommended for production environments.
PMM_ENABLE_INTERNAL_PG_QAN=1
# Enable Nomad integration for PMM Server.
PMM_ENABLE_NOMAD=0
# Controls the log verbosity of PMM Server. Set to 1 to enable debug logging, which can be helpful for troubleshooting.
PMM_DEBUG=0
# Set the admin username for PMM Server.
GF_SECURITY_ADMIN_USER=admin
# Set a strong admin password for PMM Server in production environments.
GF_SECURITY_ADMIN_PASSWORD=admin
# Public address for PMM Server, required by Nomad integration.
PMM_PUBLIC_ADDRESS=localhost
# Https port for PMM Server API and UI - https://localhost:443.
PMM_PORT_HTTPS=443
# Use an external ClickHouse database
# PMM_CLICKHOUSE_ADDR=127.0.0.1:9000
# PMM_CLICKHOUSE_DATABASE=pmm
# PMM_CLICKHOUSE_USER=default
# PMM_CLICKHOUSE_PASSWORD=<password>
# PMM_CLICKHOUSE_IS_CLUSTER=1
# PMM_CLICKHOUSE_CLUSTER_NAME=pmmclickhouse
# PMM_DISABLE_BUILTIN_CLICKHOUSE=1
# Use an external PostgreSQL database
# PMM_POSTGRES_ADDR=pg:5432
# PMM_POSTGRES_DBNAME=pmm-managed
# PMM_POSTGRES_USERNAME=pmm-managed
# PMM_POSTGRES_DBPASSWORD=<password>
# PMM_POSTGRES_SSL_MODE=verify-full
# PMM_POSTGRES_SSL_CA_PATH=/tmp/certs/root.crt
# PMM_POSTGRES_SSL_KEY_PATH=/tmp/certs/pmm-managed.key
# PMM_POSTGRES_SSL_CERT_PATH=/tmp/certs/pmm-managed.crt
# PMM_DISABLE_BUILTIN_POSTGRES=1
# Use SSL certificates for PMM Server's internal database connection (PostgreSQL)
# GF_DATABASE_SSL_MODE=verify-full
# GF_DATABASE_CA_CERT_PATH=/tmp/certs/root.crt
# GF_DATABASE_CLIENT_KEY_PATH=/tmp/certs/grafana.key
# GF_DATABASE_CLIENT_CERT_PATH=/tmp/certs/grafana.crt
# Specify a custom file with Advisor checks for development purposes.
# PMM_DEV_ADVISOR_CHECKS_FILE=/srv/checks/local-checks.yml
# Configure SMTP settings for Grafana to enable email notifications.
# --profile=mail-server must be enabled in docker-compose.dev.yml for these settings to take effect.
# GF_EMAILS_WELCOME_EMAIL_ON_SIGN_UP=1
# GF_SMTP_ENABLED=1
# GF_SMTP_HOST=mail-server:1025
# GF_SMTP_FROM_NAME=Percona
# GF_SMTP_FROM_ADDRESS=admin@percona.com
# Grafana Image Renderer configuration for rendering Grafana panels as images.
# --profile=renderer must be enabled in docker-compose.dev.yml for these settings to take effect
# GF_RENDERING_SERVER_URL=http://renderer:8081/render
# GF_RENDERING_CALLBACK_URL=https://pmm-server:8443/graph/
# To discover AWS RDS instances via Inventory UI.
# AWS_ACCESS_KEY=<access_key>
# AWS_SECRET_KEY=<secret_key>