解决grafana报错This panel requires Angular (deprecated).

这篇具有很好参考价值的文章主要介绍了解决grafana报错This panel requires Angular (deprecated).。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

背景:使用docker部署了prometheus,grafana,node exporter和cadvisor

然后去grafana官网下载成熟的模板导入到平台,发现模板上的图标全部报错This panel requires Angular (deprecated). 

解决grafana报错This panel requires Angular (deprecated).,Prometheus学习手册,grafana

解决方法:修改grafana配置文件,如下:

[root@localhost ~]# docker cp e7181b2d397a:/usr/share/grafana/conf/defaults.ini .

[root@localhost ~]# vim defaults.ini
[feature_toggles] #找到这行,在下面添加如下内容
autoMigrateOldPanels = true
保存退出
[root@localhost ~]# docker cp ./defaults.ini e7181b2d397a:/usr/share/grafana/conf/
[root@localhost ~]# docker exec -it e7181b2d397a sh  #可进入容器内部检查
确认配置文件修改后,重启容器
[root@localhost ~]# docker restart e7181b2d397a

再次查看网页看板,发现报错已消失。

解决grafana报错This panel requires Angular (deprecated).,Prometheus学习手册,grafana文章来源地址https://www.toymoban.com/news/detail-849341.html

到了这里,关于解决grafana报错This panel requires Angular (deprecated).的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包赞助服务器费用

相关文章

  • vscode出现This setting is deprecated, please use ‘java.jdk.ls.java.home‘ instead解决方案

    vscode出现This setting is deprecated, please use ‘java.jdk.ls.java.home‘ instead解决方案

      大家好,我是爱编程的喵喵。双985硕士毕业,现担任全栈工程师一职,热衷于将数据思维应用到工作与生活中。从事机器学习以及相关的前后端开发工作。曾在阿里云、科大讯飞、CCF等比赛获得多次Top名次。现为CSDN博客专家、人工智能领域优质创作者。喜欢通过博客创作

    2024年02月05日
    浏览(8)
  • 连接sqlite3报错:go-sqlite3 requires cgo to work. This is a stub

    连接sqlite3报错:go-sqlite3 requires cgo to work. This is a stub

    register db Ping default , Binary was compiled with ‘CGO_ENABLED=0’, go-sqlite3 requires cgo to work. This is a stub 报错信息: Failed to build the application: # runtime/cgo cgo: C compiler “gcc” not found: exec: “gcc”: executable file not found in %PATH% 3.1 进入Sqlite3官网 github 3.2 找到Windows部分 3.2 点击下载链接 3.3 按自

    2024年02月03日
    浏览(11)
  • Full authentication is required to access this resource解决办法

    Full authentication is required to access this resource解决办法

    我们在使用postman调接口时候,有的时候需要权限才可以访问,否则可能会报下面这个错误 这个时候我们要做的 1 :访问登录接口如xxx/auth/login,拿到我们的token值; 2 :然后在返回postman调用的接口headers里,加上key-value key是Authorization,value是Bearer token; 如下: 注:我在这里

    2024年02月09日
    浏览(9)
  • 解决Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.j...

    解决Loading class `com.mysql.jdbc.Driver\\\'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver\\\'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.警告问题 错误提示: 解决方式: 报错意思就是说com.mysql.jdbc.Driver这个驱动已经被弃用了,新的驱动

    2024年02月12日
    浏览(45)
  • 【异常解决】postman请求提示Full authentication is required to access this resource

    【异常解决】postman请求提示Full authentication is required to access this resource

    在使用 postman 测试接口时,该接口需要在 Header 中传入 access_token ,实际上也在请求的 Header 中添加上了 access_token 参数,但是服务端还是返回401错误码,提示未登录, Full authentication is required to access this resource 。 然后将获取到的 access_token 输入到这个 Token 中去,如下图所示:

    2024年02月16日
    浏览(11)
  • MySQL 安装mysql时提示This application requires .NET framework 4.5.2的解决办法

    MySQL 安装mysql时提示This application requires .NET framework 4.5.2的解决办法

    安装mysql社区版的时候报这个错:this application requires .NET Framework 4.5.2 解决方法,安装Microsoft .NET Framework 4.5即可。 下载: https://store.ityao.cn/detail/3bb5e3f2-7143-11ed-93d8-525400d73e0b 下载Microsoft .NET Framework 4.5并安装后,在去安装mysql。 下载完成后,执行这个EXE文件即可安装,可能需要

    2024年02月11日
    浏览(17)
  • Ubuntu 报错 WARNING:gateway4 has been deprecated, use default routes instead... 解决方案

    在 /etc/netplan/50-cloud-init.yaml 下配置静态网络: 配置完成后应用网络配置的时候出现以下报错: 报错的意思是说, gateway4 已被弃用,请改用默认路由。默认路由就是通过 routes 配置 IP 。 修改网络配置如下: 应用网络配置:

    2024年02月11日
    浏览(8)
  • 已解决UserWarning: A NumPy version >=1.16.5 and <1.23.0 is required for this version of SciPy (detected

    已解决UserWarning: A NumPy version >=1.16.5 and <1.23.0 is required for this version of SciPy (detected

    已解决UserWarning: A NumPy version =1.16.5 and 1.23.0 is required for this version of SciPy (detected version 1.23.5 warnings.warn(f\\\"A NumPy version ={np_minversion} and {np_maxversion}\\\" 粉丝群一个小伙伴想用Python运行程序,但是还是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,

    2023年04月20日
    浏览(14)
  • EasySass: could not generate CSS file. See Output panel for details.微信小程序报错及解决

    EasySass: could not generate CSS file. See Output panel for details.微信小程序报错及解决

    当我喜滋滋的在vscode中导入easysass包之后,又在微信小程序中添加vscode扩展,又去文件中改好了配置文件后却直接弹出了一个报错,真是令人猝不及防,那么让我来带领大家解决它吧。 可能1:如果你之前用都没有问题,并且这次也是正常操作的话,首先你要检查有没有粗心的

    2024年02月21日
    浏览(11)
  • ERROR: Invalid requirement: ‘==‘ 解决python报错

    ERROR: Invalid requirement: ‘==‘ 解决python报错

    ERROR: Invalid requirement: \\\'==\\\' 错误:无效的要求: \\\'==\\\' 今天安装 selenium包时突然触发这个报错,这个错误通常出现在使用pip安装Python包时,报错的原因是需要注意的是 == 前后没有空格 ,若是加空格就会出现上述报错。 例如: 安装指定版本的 selenium比较简单,直接: 在服务器上安

    2024年02月11日
    浏览(14)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包