美文网首页
Prometheus快速入门(二):可视化展示平台Grafana

Prometheus快速入门(二):可视化展示平台Grafana

作者: 水饺鲜生 | 来源:发表于2020-07-14 14:56 被阅读0次

    介绍

    Grafana 是一款采用 go 语言编写的开源应用,主要用于大规模指标数据的可视化展现,是网络架构和应用分析中最流行的时序数据展示工具,目前已经支持绝大部分常用的时序数据库。最好的参考资料就是官网
    官网:https://grafana.com/

    dashboards Grafana支持许多不同的数据源。每个数据源都有一个特定的查询编辑器,该编辑器定制的特性和功能是公开的特定数据来源。 官方支持以下数据源:Graphite,Elasticsearch,InfluxDB,Prometheus,Cloudwatch,MySQL和OpenTSDB等

    按照官网要求进行下载安装,这里我们使用第一种方式 .deb安装

    sudo apt-get install -y adduser libfontconfig1
    wget https://dl.grafana.com/oss/release/grafana_7.0.3_amd64.deb
    sudo dpkg -i grafana_7.0.3_amd64.deb
    

    或点击下载安装包:
    https://dl.grafana.com/oss/release/grafana_7.0.3_amd64.deb

    • 启动

      下载成功后执行启动
      grafaba启动:
    service grafana-server start
    

    验证是否成功:http://ip:3000/login

    登录页面
    结合prometheus指标展示

    prometheus安装看这里

    1. 配置数据源




      选择prometheus为数据源
      填写prometheus地址并保存
    1. 添加图形指标
    prometheus_http_request_duration_seconds_bucket{job="prometheus"}
    

    添加指标后如若成功展示上图,表示配置成功。

    至此,Grafana结合Prometheus我们已配置成功

    相关文章

      网友评论

          本文标题:Prometheus快速入门(二):可视化展示平台Grafana

          本文链接:https://www.haomeiwen.com/subject/laaxhktx.html