grafana仪表板的物理位置

Physical location of grafana dashboards

在我的项目中,我们使用 influx dB 和 Grafana 进行日志和其他分析,这是 运行 在 Ubuntu 机器上进行的。现在最近由于迁移过程,端口被阻止,例如 3000(对于 Grafana)和 8086(对于 influx dB),出于某些安全原因,这些端口将继续被阻止。所以,我无法通过浏览器和邮递员连接它们。

因此,作为解决方案,我们计划将这些(至少是仪表板)移动到本地设置。我检查了进程是否正常 运行.

但无法定位仪表板文件的物理位置。

我有默认设置,grafana没有任何单独的数据库配置。

[database]
# You can configure the database connection by specifying type, host, name, user and password
# as separate properties or as on string using the url properties.

# Either "mysql", "postgres" or "sqlite3", it's your choice
;type = sqlite3
;host = 127.0.0.1:3306
;name = grafana
;user = root
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
;password =

# Use either URL or the previous fields to configure the database
# Example: mysql://user:secret@host:port/database
;url =

# For "postgres" only, either "disable", "require" or "verify-full"
;ssl_mode = disable

;ca_cert_path =
;client_key_path =
;client_cert_path =
;server_cert_name =

有什么地方可以找到这些 JSON 文件吗?

我通过一些研究弄明白了,认为如果有人同样在寻找答案,我可以帮助社区。

仪表板的默认文件夹是/var/lib/grafana。如果导航到该文件夹​​,您将找到一个文件名 grafana.db.

将此文件下载到您的本地计算机或您想要的任何计算机。 请从 here 下载 sqlitebrowser

现在在 sqlitebrowser 上单击 open database 和 select grafana.db 文件。然后右击 dashboard table 和 select Browse Table。和 select data 部分,您将找到仪表板。

看看你的机器上正在启动 grafana 的是什么。它可以设置为服务,或者 运行 来自 .bashrc 之类的脚本,或者来自 docker。看起来 /var/lib/grafana 可能是默认位置。

在我的情况下,在使用 IOTstack 的具有涌入、grafana 等的 RPi 上,它从 docker 开始,使用 docker-compose。 docker-compose.yml 文件定义路径。看起来 /var/lib/grafana 确实是默认位置,但这可以重新映射到其他地方。而且它很可能被映射到其他地方以便备份,~/IOTstack/volumes/grafana/data,在我的例子中。

  grafana:
container_name: grafana
image: grafana/grafana
restart: unless-stopped
user: "0"
ports:
- "3000:3000"
environment:
- GF_PATHS_DATA=/var/lib/grafana
- GF_PATHS_LOGS=/var/log/grafana
volumes:
- ./volumes/grafana/data:/var/lib/grafana
- ./volumes/grafana/log:/var/log/grafana
networks:
- iotstack_nw`