grafana 仪表板的物理位置
Posted
技术标签:
【中文标题】grafana 仪表板的物理位置【英文标题】:Physical location of grafana dashboards 【发布时间】:2021-04-27 19:07:03 【问题描述】:在我的项目中,我们使用 influx dB 和 Grafana 进行日志和其他在 Ubuntu 机器上运行的分析。现在最近由于迁移过程,端口被阻止,如 3000(用于 Grafana)和 8086(用于流入 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 文件的位置?
【问题讨论】:
【参考方案1】:我通过一些研究发现了这一点,我认为如果有人在寻找答案,我可以帮助社区。p>
仪表板的默认文件夹是/var/lib/grafana
。如果您导航到该文件夹,您将找到一个文件名grafana.db
。
将此文件下载到您的本地机器或您想要的任何机器上。
请从here下载sqlitebrowser
。
现在在sqlitebrowser
上单击open database
并选择grafana.db
文件。然后右键单击dashboard
表并选择Browse Table
。并选择data
部分,您将找到仪表板。
【讨论】:
【参考方案2】:查看机器上启动 grafana 的内容。它可以设置为服务,也可以从 .bashrc 等脚本运行,也可以从 docker 运行。看起来 /var/lib/grafana 可能是默认位置。
在我使用 IOTstack 的带有 influx、grafana 等的 RPi 上,它是从带有 docker-compose 的 docker 启动的。 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`
【讨论】:
是的,戴尔同意你的看法 @Date 您在堆栈中还有哪些与 grafana 相关的服务? @Chang,可以使用 IOTstack 在 RPi 上设置许多服务,这些服务都从 docker 容器中运行。我正在使用 node-red、influxdb、grafana、几个 python 脚本来收集或修改数据、太阳能充电控制器、逆变器和微型逆变器监控的其他代码。它还可以自动备份所有内容以从故障中恢复,也可以进行远程访问。以上是关于grafana 仪表板的物理位置的主要内容,如果未能解决你的问题,请参考以下文章
使用仪表板作为子路径的 Grafana 的 Nginx 反向代理