当前位置: 首页 > news >正文

对网站建设 意见和建议凡客t恤

对网站建设 意见和建议,凡客t恤,河东集团网站建设,e想时代官方网站文章目录 前言知识积累什么是Prometheus什么是Grafana怎样完成数据采集和监控 环境搭建docker与docker-compose安装docker-compose编写 监控配置grafana配置prometheus数据源grafana配置dashboardLinux Host Metrics监控Spring Boot 监控 写在最后 前言 相信大家都知道一个项目… 文章目录 前言知识积累什么是Prometheus什么是Grafana怎样完成数据采集和监控 环境搭建docker与docker-compose安装docker-compose编写 监控配置grafana配置prometheus数据源grafana配置dashboardLinux Host Metrics监控Spring Boot 监控 写在最后 前言 相信大家都知道一个项目交付生产并不意味着结束更多的是对线上服务的运维监控。运维监控主要涉及到部署服务器的资源情况各个子服务的资源情况以及垃圾收集和吞吐量等等还有故障告警等等功能。当然作为一个搬砖人也是需要了解全链路的运维监控组件Prometheus。 知识积累 什么是Prometheus Prometheus 是一个开源的服务监控系统和时间序列数据库。 特性 高维度数据模型 自定义查询语言 可视化数据展示 高效的存储策略 易于运维 提供各种客户端开发库 警告和报警 数据导出 什么是Grafana Grafana是一个跨平台的开源的度量分析和可视化工具主要用于查询并可视化展示采集的数据。 Grafana提供了丰富的可视化展示方式包括快速灵活的客户端图表拥有不同方式的可视化指标和日志的面板插件以及丰富的仪表盘插件包括热图、折线图、图表等。 Grafana能够帮助用户快速的查看和编辑dashboard的前端。支持同时连接多种数据源能够将时序时空数据库TSDB数据转换为漂亮的图表。 怎样完成数据采集和监控 通过node-exporter采集linux主要参数信息Springboot微服务项目提供actuator监控配置。Prometheus server 主动拉取exporter采集的服务器数据提供主要内存、cpu参数展示主动调用actuator接口拉取各种运行参数进行展示。 为了满足运维人员的各种可视化图表要求我们再接入Grafana度量平台和可视化分析工具其各种丰富的插件和仪表盘模板可以尽最大限度的提升监控运维质量。 环境搭建 对于PrometheusGrafana环境的搭建我们采用docker容器化进行部署管理。 考虑到我们可以随意更换告警、被监控项目等配置我们将Grafana、Prometheus主要配置挂载在容器外部。 文件树 [rootlocalhost app]# tree . ├── docker-compose-prometheus.yaml ├── grafana │ ├── data │ │ └── grafana │ └── grafana.ini └── prometheus ├── app.json └── prometheus.yml docker与docker-compose安装 #安装docker社区版 yum install docker-ce #版本查看 docker version #docker-compose插件安装 curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-uname -s-uname -m -o /usr/local/bin/docker-compose #可执行权限 chmod x /usr/local/bin/docker-compose #版本查看 docker-compose versiondocker-compose编写 [rootlocalhost app]# pwd /app [rootlocalhost app]# 1、创建Prometheus配置文件 可参考 httpspro://metheus.io/docs/prometheus/latest/getting_started [rootlocalhost app]# mkdir prometheus [rootlocalhost app]# vim prometheus/app.json[{targets: [10.10.18.16:8888],labels: {instance: demo,service: demo-service}} ][rootlocalhost app]# vim prometheus/prometheus.ymlglobal:scrape_interval: 10sscrape_timeout: 10sevaluation_interval: 10mscrape_configs:- job_name: spring-boot # springboot项目scrape_interval: 5sscrape_timeout: 5smetrics_path: /actuator/prometheusscheme: httpfile_sd_configs:- files:- ./*.jsonrefresh_interval: 1m- job_name: prometheus # prometheusstatic_configs:- targets: [prometheus:9090]labels:instance: prometheus- job_name: linux # 采集node exporter监控数据即linuxstatic_configs:- targets: [node-exporter:9100]labels:instance: localhost 2、创建Grafana配置文件 [rootlocalhost app]# mkdir -p ./grafana/data/grafana [rootlocalhost app]# chmod -R 777 ./grafana/grafana配置文件下载 https://github.com/grafana/grafana/blob/main/conf/sample.ini 将下载的配置文件重命名为grafana.ini放在新建的文件夹下面。 修改数据库配置 [rootlocalhost app]# vim grafana.ini#################################### Database ############################ [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 property.# Either mysql, postgres or sqlite3, its your choice type mysql host 10.10.10.202:6456 name grafana user root # If the password contains # or ; you have to wrap it with triple quotes. Ex #password; passw0ord MyNewPass2021 # Use either URL or the previous fields to configure the database # Example: mysql://user:secrethost:port/database url mysql://root:MyNewPass202110.10.10.202:6456/grafana# Max idle conn setting default is 2 max_idle_conn 2# Max conn setting default is 0 (mean not set) max_open_conn 100# Connection Max Lifetime default is 14400 (means 14400 seconds or 4 hours) conn_max_lifetime 14400 # Set to true to log the sql calls and execution times. log_queries # For postgres, use either disable, require or verify-full # For mysql, use either true, false, or skip-verify. ssl_mode disable# Database drivers may support different transaction isolation levels. # Currently, only mysql driver supports isolation levels. # If the value is empty - drivers default isolation level is applied. # For mysql use READ-UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ or SERIALIZABLE. isolation_level ca_cert_path client_key_path client_cert_path server_cert_name # For sqlite3 only, path relative to data_path setting path grafana.db# For sqlite3 only. cache mode setting used for connecting to the database cache_mode private# For sqlite3 only. Enable/disable Write-Ahead Logging, https://sqlite.org/wal.html. Default is false. wal false# For mysql only if migrationLocking feature toggle is set. How many seconds to wait before failing to lock the database for the migrations, default is 0. locking_attempt_timeout_sec 0# For sqlite only. How many times to retry query in case of database is locked failures. Default is 0 (disabled). query_retries 0# For sqlite only. How many times to retry transaction in case of database is locked failures. Default is 5. transaction_retries 5# Set to true to add metrics and tracing for database queries. instrument_queries false#################################### SMTP / Emailing ##################### [smtp] enabled false host localhost:25 user # If the password contains # or ; you have to wrap it with triple quotes. Ex #password; password cert_file key_file skip_verify false from_address admingrafana.localhost from_name Grafana ehlo_identity startTLS_policy [emails] welcome_email_on_sign_up false templates_pattern emails/*.html content_types text/html3、docker-compose [rootlocalhost app]# vim docker-compose-prometheus.yamlversion: 3 networks: # 网桥prometheus:ipam:driver: defaultconfig:- subnet: 172.22.0.0/24services:prometheus: # prometheusimage: registry.cn-hangzhou.aliyuncs.com/senfel/prometheus:v2.34.0container_name: prometheusrestart: unless-stoppedvolumes:- ./prometheus/app.json:/etc/prometheus/app.json- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.ymlcommand: --config.file/etc/prometheus/prometheus.yml --storage.tsdb.path/prometheusports:- 9090:9090depends_on:- node-exporternetworks:prometheus:ipv4_address: 172.22.0.11node-exporter: # 采集服务器层面的运行指标image: registry.cn-hangzhou.aliyuncs.com/senfel/node-exporter:v1.3.1container_name: prometheus-node-exporterrestart: unless-stoppedvolumes:- /proc:/host/proc- /sys:/host/sysports:- 9100:9100networks:prometheus:ipv4_address: 172.22.0.22grafana: # 用于UI展示image: registry.cn-hangzhou.aliyuncs.com/senfel/grafana:8.0.0container_name: prometheus-grafanarestart: unless-stoppedports:- 3000:3000volumes:- ./grafana/data/grafana:/var/lib/grafana- /etc/localtime:/etc/localtime- ./grafana/plugins:/var/lib/grafana/plugins- ./grafana/grafana.ini:/etc/grafana/grafana.inienvironment:GF_EXPLORE_ENABLED: trueGF_SECURITY_ADMIN_PASSWORD: adminGF_INSTALL_PLUGINS: grafana-clock-panel,grafana-simple-json-datasource,alexanderzobnin-zabbix-appdepends_on:- prometheusnetworks:prometheus:ipv4_address: 172.22.0.33 4、部署PrometheusGrafanaExporter容器 [rootlocalhost app]# docker-compose -f docker-compose-prometheus.yaml up -dprometheus-node-exporter is up-to-date Recreating prometheus … done Recreating prometheus-grafana … done [rootlocalhost app]# docker ps浏览器访问 http://10.10.22.91:3000/login 监控配置 grafana配置prometheus数据源 1、点击 设置-data source 增加一个数据源 2、选择 prometheus 并配置路径 grafana配置dashboard Spring Boot 2.1 Statisticshttps://grafana.com/grafana/dashboards/10280 JVM (Micrometer)https://grafana.com/grafana/dashboards/4701 Linux Hosts Metrics: https://grafana.com/grafana/dashboards/10180-kds-linux-hosts/ Linux Host Metrics监控 1、点击侧边栏 增加 import 2、输入模板ID 10180 3、点击load加载 4、点击import导入 如图所示基本涵盖服务器主要参数监控信息。 Spring Boot 监控 由于prometheus主动拉群我们项目指标故需要暴露监控端口且需要对项目进行改造。 Spring Boot增加监控配置 1、引入pom依赖 org.springframework.boot spring-boot-starter-actuator io.micrometer micrometer-registry-prometheus 2、增加application配置 management:endpoints:web:exposure:include: health,prometheus3、测试监控信息 启动项目 postman请求 10.10.18.16:8888/actuator/prometheus 导入Spring Boot 2.1 Statistics 1、点击侧边栏导入按钮-输入模板ID 10280 2、点击load加载仪表盘模板 3、点击import导入即可 如图所示基本涵盖所有的项目监控信息。 写在最后 本篇实战博文主要讲解了用docker-compose编排Prometheus、node-exporter、Grafana实现监控环境搭建并叙述了Linux系统服务器指标监控Springboot项目暴露指标接口进行全链路指标数据监控。当然采用Grafana提供的Linux、Springboot监控仪表盘模板完全可以直接投入生产。
文章转载自:
http://www.morning.jbxd.cn.gov.cn.jbxd.cn
http://www.morning.xbzfz.cn.gov.cn.xbzfz.cn
http://www.morning.tpdg.cn.gov.cn.tpdg.cn
http://www.morning.rfpxq.cn.gov.cn.rfpxq.cn
http://www.morning.tgyzk.cn.gov.cn.tgyzk.cn
http://www.morning.ctsjq.cn.gov.cn.ctsjq.cn
http://www.morning.tpmnq.cn.gov.cn.tpmnq.cn
http://www.morning.grryh.cn.gov.cn.grryh.cn
http://www.morning.hqsnt.cn.gov.cn.hqsnt.cn
http://www.morning.plwfx.cn.gov.cn.plwfx.cn
http://www.morning.dfojgo.cn.gov.cn.dfojgo.cn
http://www.morning.rntyn.cn.gov.cn.rntyn.cn
http://www.morning.pjwfs.cn.gov.cn.pjwfs.cn
http://www.morning.kpgft.cn.gov.cn.kpgft.cn
http://www.morning.fplqh.cn.gov.cn.fplqh.cn
http://www.morning.rxsgk.cn.gov.cn.rxsgk.cn
http://www.morning.jqrp.cn.gov.cn.jqrp.cn
http://www.morning.byywt.cn.gov.cn.byywt.cn
http://www.morning.fxpyt.cn.gov.cn.fxpyt.cn
http://www.morning.ygztf.cn.gov.cn.ygztf.cn
http://www.morning.gxtfk.cn.gov.cn.gxtfk.cn
http://www.morning.lqws.cn.gov.cn.lqws.cn
http://www.morning.bnwlh.cn.gov.cn.bnwlh.cn
http://www.morning.wfttq.cn.gov.cn.wfttq.cn
http://www.morning.qnzgr.cn.gov.cn.qnzgr.cn
http://www.morning.ptzf.cn.gov.cn.ptzf.cn
http://www.morning.pnjsl.cn.gov.cn.pnjsl.cn
http://www.morning.drtgt.cn.gov.cn.drtgt.cn
http://www.morning.jqkrt.cn.gov.cn.jqkrt.cn
http://www.morning.wpwyx.cn.gov.cn.wpwyx.cn
http://www.morning.xrtsx.cn.gov.cn.xrtsx.cn
http://www.morning.pngph.cn.gov.cn.pngph.cn
http://www.morning.lmknf.cn.gov.cn.lmknf.cn
http://www.morning.807yy.cn.gov.cn.807yy.cn
http://www.morning.yszrk.cn.gov.cn.yszrk.cn
http://www.morning.pwggd.cn.gov.cn.pwggd.cn
http://www.morning.nhgfz.cn.gov.cn.nhgfz.cn
http://www.morning.pprxs.cn.gov.cn.pprxs.cn
http://www.morning.rgrdd.cn.gov.cn.rgrdd.cn
http://www.morning.kdjtt.cn.gov.cn.kdjtt.cn
http://www.morning.zjrnq.cn.gov.cn.zjrnq.cn
http://www.morning.ljtwp.cn.gov.cn.ljtwp.cn
http://www.morning.lmqw.cn.gov.cn.lmqw.cn
http://www.morning.fhddr.cn.gov.cn.fhddr.cn
http://www.morning.zknjy.cn.gov.cn.zknjy.cn
http://www.morning.yrbhf.cn.gov.cn.yrbhf.cn
http://www.morning.qfwzm.cn.gov.cn.qfwzm.cn
http://www.morning.ywqsk.cn.gov.cn.ywqsk.cn
http://www.morning.crsnb.cn.gov.cn.crsnb.cn
http://www.morning.hqjtp.cn.gov.cn.hqjtp.cn
http://www.morning.bqwnp.cn.gov.cn.bqwnp.cn
http://www.morning.huxinzuche.cn.gov.cn.huxinzuche.cn
http://www.morning.srckl.cn.gov.cn.srckl.cn
http://www.morning.hongjp.com.gov.cn.hongjp.com
http://www.morning.ggnrt.cn.gov.cn.ggnrt.cn
http://www.morning.cknws.cn.gov.cn.cknws.cn
http://www.morning.hwlk.cn.gov.cn.hwlk.cn
http://www.morning.lgwpm.cn.gov.cn.lgwpm.cn
http://www.morning.qwyms.cn.gov.cn.qwyms.cn
http://www.morning.ldfcb.cn.gov.cn.ldfcb.cn
http://www.morning.yqsq.cn.gov.cn.yqsq.cn
http://www.morning.qmwzz.cn.gov.cn.qmwzz.cn
http://www.morning.ksggr.cn.gov.cn.ksggr.cn
http://www.morning.byzpl.cn.gov.cn.byzpl.cn
http://www.morning.pkwwq.cn.gov.cn.pkwwq.cn
http://www.morning.yggdq.cn.gov.cn.yggdq.cn
http://www.morning.wyctq.cn.gov.cn.wyctq.cn
http://www.morning.qbwyd.cn.gov.cn.qbwyd.cn
http://www.morning.njddz.cn.gov.cn.njddz.cn
http://www.morning.rlqqy.cn.gov.cn.rlqqy.cn
http://www.morning.fqmcc.cn.gov.cn.fqmcc.cn
http://www.morning.dxpzt.cn.gov.cn.dxpzt.cn
http://www.morning.fddfn.cn.gov.cn.fddfn.cn
http://www.morning.flxqm.cn.gov.cn.flxqm.cn
http://www.morning.tktyh.cn.gov.cn.tktyh.cn
http://www.morning.zbtfz.cn.gov.cn.zbtfz.cn
http://www.morning.ljcjc.cn.gov.cn.ljcjc.cn
http://www.morning.qgghr.cn.gov.cn.qgghr.cn
http://www.morning.pwhjr.cn.gov.cn.pwhjr.cn
http://www.morning.tpkxs.cn.gov.cn.tpkxs.cn
http://www.tj-hxxt.cn/news/255299.html

相关文章:

  • php网站开发需要什么管理系统登录
  • 该如何建设和优化一个网站网站后台建设计划书
  • 犀牛云建设网站海外医疗兼职网站建设
  • 如今做那些网站致富东川网站建设
  • 企业官方网站怎么查学习网站建设要什么学历
  • seo的范畴是什么关键词优化公司排名榜
  • 网站建设公司(深圳信科)湛江企业网站怎么建设
  • 社保网站上怎么做减员chatgpt openai
  • 惠东住房建设局网站山东省建设厅职业资格注册中心网站
  • 法人变更在哪个网站做公示靖安县城乡规划建设局网站
  • 怎么做钓鱼网站生成行业网站运营计划
  • 山东省建设厅执业资格注册中心网站wordpress vue网站
  • 上海网站设计与开发公司长沙网上购物超市
  • 使用门户网站网络推广方法netcompont网站建站
  • 网站制作公司智能 乐云践新黄骅市人事考试网
  • 网站建设风景课程设计报告做明星ps黄图网站
  • 个人网站备案 照片高级网站开发工程师
  • 公司网站链接怎么弄安卓app制作开发
  • 网站负责人核验现场拍摄照片电子件南京 高端网站建设
  • 营销型网站建设的费用报价单免费域名空间网站
  • 怎么修改网站图标做搜狗网站排名首页
  • 广西建设网站培训做lol数据的网站有哪些
  • 怎么建淘宝优惠券网站做推广wordpress 图片压缩插件
  • 企业网站用什么cms比较好网站开发外包 价格
  • 网站源码开发石家庄做网站
  • 如何做购物网站的教程电影网站app怎么做
  • 辽宁省住建厅建设网站wordpress设置超链接
  • 彩票网站自己可以做吗公司 做网站
  • 天津 网站优化巨野县建设局网站
  • 做网站的外部链接关系分析的工具在猪八戒上做网站要注意什么