Is it possible to modify the dashboard and use alertmanager after building pmm?

Files and screenshots could not be attached because the upload was blocked.

Instead, I will explain the details further.

Below is the docker-based pmm-server installation script.

– docker install
yum -y install docker docker-repository
systemctl enable docker
systemctl start docker
– pmm install
docker pull percona/pmm-server
docker create -v /opt/prometheus/data -v /opt/consul-data -v /var/lib/mysql --name pmm-data percona/pmm-server /bin/true
docker run --detach --restart always --publish 8080:80 --publish 4433:443 --publish 8430:8430 --publish 9000:9000 --volumes-from pmm-data --name pmm-server percona/pmm-server


[ Dashboard modification inquiry ]

On the pmm dashboard screen, I moved to the settings window and clicked the Make editable button to change it to an editable format.
Afterwards, when I save the dashboard, the following message appears and it is saved only to a separate JSON file.

This dashboard cannot be saved from the Grafana UI because it has been provisioned from another source. Copy the JSON or save it to a file below, then you can update your dashboard in the provisioning source.


I think the problem may be solved if the server is run in rpm format rather than docker format.

Or is there a way to access Clickhouse and VictoriaMetrics installed based on Docker from grafana configured on an external device?

Thank you for always