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

傻瓜网站建设sketch网站花边怎么做

傻瓜网站建设,sketch网站花边怎么做,免费建站网站一级大,高端网站建设青岛1、简介1.1 Prometheus官网地址#xff1a;https://prometheus.io/Prometheus是一个开源的监控系统#xff0c;起源于SoundCloud。它由以下几个核心组件构成#xff1a;数据爬虫#xff1a; 根据配置的时间定期的通过HTTP抓去metrics数据。time-series 数据库#xff1a; …1、简介1.1 Prometheus官网地址https://prometheus.io/Prometheus是一个开源的监控系统起源于SoundCloud。它由以下几个核心组件构成数据爬虫 根据配置的时间定期的通过HTTP抓去metrics数据。time-series 数据库 存储所有的metrics数据。简单的用户交互接口 可视化、查询和监控所有的metrics。1.2 Grafana官网地址https://grafana.com/Grafana使你能够把来自不同数据源比如Elasticsearch, Prometheus, Graphite, influxDB等多样的数据以绚丽的图标展示出来。它也能基于你的metrics数据发出告警。当一个告警状态改变时它能通知你通过emailslack或者其他途径。Grafana是一个开源的度量分析与可视化套件纯JavaScript开发的前端工具通过访问库如InfluxDB展示自定义报表、显示图表等。它的UI十分灵活有丰富的插件和模板功能强大。一般用在时序数据的监控方面。2、项目2.1 引入依赖dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-actuator/artifactId /dependencydependencygroupIdio.micrometer/groupIdartifactIdmicrometer-registry-prometheus/artifactIdscoperuntime/scope /dependency2.2 配置文件management:metrics:tags:application: ${spring.application.name}export:prometheus:enabled: true#开启暴露webendpoints:web:exposure:include: prometheus2.3 访问地址http://localhost:8080/actuator/prometheus# HELP jvm_gc_memory_promoted_bytes_total Count of positive increases in the size of the old generation memory pool before GC to after GC # TYPE jvm_gc_memory_promoted_bytes_total counter jvm_gc_memory_promoted_bytes_total{applicationprometheus-demo,} 3765576.0 # HELP executor_queue_remaining_tasks The number of additional elements that this queue can ideally accept without blocking # TYPE executor_queue_remaining_tasks gauge executor_queue_remaining_tasks{applicationprometheus-demo,nameapplicationTaskExecutor,} 2.147483647E9 # HELP jvm_gc_pause_seconds Time spent in GC pause # TYPE jvm_gc_pause_seconds summary jvm_gc_pause_seconds_count{actionend of minor GC,applicationprometheus-demo,causeAllocation Failure,} 1.0 jvm_gc_pause_seconds_sum{actionend of minor GC,applicationprometheus-demo,causeAllocation Failure,} 0.012 jvm_gc_pause_seconds_count{actionend of major GC,applicationprometheus-demo,causeErgonomics,} 1.0 jvm_gc_pause_seconds_sum{actionend of major GC,applicationprometheus-demo,causeErgonomics,} 0.078 # HELP jvm_gc_pause_seconds_max Time spent in GC pause # TYPE jvm_gc_pause_seconds_max gauge jvm_gc_pause_seconds_max{actionend of minor GC,applicationprometheus-demo,causeAllocation Failure,} 0.012 jvm_gc_pause_seconds_max{actionend of major GC,applicationprometheus-demo,causeErgonomics,} 0.078 # HELP tomcat_sessions_active_current_sessions # TYPE tomcat_sessions_active_current_sessions gauge tomcat_sessions_active_current_sessions{applicationprometheus-demo,} 0.0 # HELP jvm_threads_daemon_threads The current number of live daemon threads # TYPE jvm_threads_daemon_threads gauge jvm_threads_daemon_threads{applicationprometheus-demo,} 15.0 # HELP process_files_max_files The maximum file descriptor count # TYPE process_files_max_files gauge process_files_max_files{applicationprometheus-demo,} 65535.0 # HELP http_server_requests_seconds Duration of HTTP server request handling # TYPE http_server_requests_seconds summary http_server_requests_seconds_count{applicationprometheus-demo,exceptionNone,methodGET,outcomeSUCCESS,status200,uri/actuator,} 1.0 http_server_requests_seconds_sum{applicationprometheus-demo,exceptionNone,methodGET,outcomeSUCCESS,status200,uri/actuator,} 0.017622173 http_server_requests_seconds_count{applicationprometheus-demo,exceptionNone,methodGET,outcomeSUCCESS,status200,uri/actuator/prometheus,} 8.0 http_server_requests_seconds_sum{applicationprometheus-demo,exceptionNone,methodGET,outcomeSUCCESS,status200,uri/actuator/prometheus,} 0.14188689 http_server_requests_seconds_count{applicationprometheus-demo,exceptionNone,methodGET,outcomeCLIENT_ERROR,status404,uri/**,} 2.0 http_server_requests_seconds_sum{applicationprometheus-demo,exceptionNone,methodGET,outcomeCLIENT_ERROR,status404,uri/**,} 0.020303186 # HELP http_server_requests_seconds_max Duration of HTTP server request handling # TYPE http_server_requests_seconds_max gauge http_server_requests_seconds_max{applicationprometheus-demo,exceptionNone,methodGET,outcomeSUCCESS,status200,uri/actuator,} 0.017622173 http_server_requests_seconds_max{applicationprometheus-demo,exceptionNone,methodGET,outcomeSUCCESS,status200,uri/actuator/prometheus,} 0.093066747 http_server_requests_seconds_max{applicationprometheus-demo,exceptionNone,methodGET,outcomeCLIENT_ERROR,status404,uri/**,} 0.017153903 # HELP jvm_gc_memory_allocated_bytes_total Incremented for an increase in the size of the (young) heap memory pool after one GC to before the next # TYPE jvm_gc_memory_allocated_bytes_total counter jvm_gc_memory_allocated_bytes_total{applicationprometheus-demo,} 8.0216064E7 # HELP jvm_threads_live_threads The current number of live threads including both daemon and non-daemon threads # TYPE jvm_threads_live_threads gauge jvm_threads_live_threads{applicationprometheus-demo,} 19.0 # HELP tomcat_sessions_active_max_sessions # TYPE tomcat_sessions_active_max_sessions gauge tomcat_sessions_active_max_sessions{applicationprometheus-demo,} 0.0 # HELP jvm_threads_states_threads The current number of threads # TYPE jvm_threads_states_threads gauge jvm_threads_states_threads{applicationprometheus-demo,staterunnable,} 5.0 jvm_threads_states_threads{applicationprometheus-demo,statenew,} 0.0 jvm_threads_states_threads{applicationprometheus-demo,statetimed-waiting,} 2.0 jvm_threads_states_threads{applicationprometheus-demo,stateblocked,} 0.0 jvm_threads_states_threads{applicationprometheus-demo,statewaiting,} 12.0 jvm_threads_states_threads{applicationprometheus-demo,stateterminated,} 0.0 # HELP jvm_classes_loaded_classes The number of classes that are currently loaded in the Java virtual machine # TYPE jvm_classes_loaded_classes gauge jvm_classes_loaded_classes{applicationprometheus-demo,} 7335.0 # HELP process_uptime_seconds The uptime of the Java virtual machine # TYPE process_uptime_seconds gauge process_uptime_seconds{applicationprometheus-demo,} 134.962 # HELP executor_queued_tasks The approximate number of tasks that are queued for execution # TYPE executor_queued_tasks gauge executor_queued_tasks{applicationprometheus-demo,nameapplicationTaskExecutor,} 0.0 # HELP process_files_open_files The open file descriptor count # TYPE process_files_open_files gauge process_files_open_files{applicationprometheus-demo,} 28.0 # HELP process_cpu_usage The recent cpu usage for the Java Virtual Machine process # TYPE process_cpu_usage gauge process_cpu_usage{applicationprometheus-demo,} 0.003040668947168377 # HELP disk_total_bytes Total space for path # TYPE disk_total_bytes gauge disk_total_bytes{applicationprometheus-demo,path/root/project/prometheus/share/prometheus/prometheus-demo/target/.,} 8.4416294912E10 # HELP application_started_time_seconds Time taken (ms) to start the application # TYPE application_started_time_seconds gauge application_started_time_seconds{applicationprometheus-demo,main_application_classcom.ybw.PrometheusDemoApplication,} 3.1 # HELP system_load_average_1m The sum of the number of runnable entities queued to available processors and the number of runnable entities running on the available processors averaged over a period of time # TYPE system_load_average_1m gauge system_load_average_1m{applicationprometheus-demo,} 0.04 # HELP disk_free_bytes Usable space for path # TYPE disk_free_bytes gauge disk_free_bytes{applicationprometheus-demo,path/root/project/prometheus/share/prometheus/prometheus-demo/target/.,} 6.4089042944E10 # HELP process_start_time_seconds Start time of the process since unix epoch. # TYPE process_start_time_seconds gauge process_start_time_seconds{applicationprometheus-demo,} 1.676960826636E9 # HELP application_ready_time_seconds Time taken (ms) for the application to be ready to service requests # TYPE application_ready_time_seconds gauge application_ready_time_seconds{applicationprometheus-demo,main_application_classcom.ybw.PrometheusDemoApplication,} 3.135 # HELP jvm_memory_used_bytes The amount of used memory # TYPE jvm_memory_used_bytes gauge jvm_memory_used_bytes{applicationprometheus-demo,areaheap,idPS Survivor Space,} 522208.0 jvm_memory_used_bytes{applicationprometheus-demo,areaheap,idPS Old Gen,} 1.1626216E7 jvm_memory_used_bytes{applicationprometheus-demo,areanonheap,idMetaspace,} 3.7158344E7 jvm_memory_used_bytes{applicationprometheus-demo,areanonheap,idCode Cache,} 9744256.0 jvm_memory_used_bytes{applicationprometheus-demo,areaheap,idPS Eden Space,} 8.0009112E7 jvm_memory_used_bytes{applicationprometheus-demo,areanonheap,idCompressed Class Space,} 5006064.0 # HELP jvm_gc_live_data_size_bytes Size of long-lived heap memory pool after reclamation # TYPE jvm_gc_live_data_size_bytes gauge jvm_gc_live_data_size_bytes{applicationprometheus-demo,} 1.1626216E7 # HELP jvm_buffer_count_buffers An estimate of the number of buffers in the pool # TYPE jvm_buffer_count_buffers gauge jvm_buffer_count_buffers{applicationprometheus-demo,idmapped,} 0.0 jvm_buffer_count_buffers{applicationprometheus-demo,iddirect,} 10.0 # HELP jvm_memory_committed_bytes The amount of memory in bytes that is committed for the Java virtual machine to use # TYPE jvm_memory_committed_bytes gauge jvm_memory_committed_bytes{applicationprometheus-demo,areaheap,idPS Survivor Space,} 2621440.0 jvm_memory_committed_bytes{applicationprometheus-demo,areaheap,idPS Old Gen,} 1.6252928E7 jvm_memory_committed_bytes{applicationprometheus-demo,areanonheap,idMetaspace,} 4.0108032E7 jvm_memory_committed_bytes{applicationprometheus-demo,areanonheap,idCode Cache,} 1.015808E7 jvm_memory_committed_bytes{applicationprometheus-demo,areaheap,idPS Eden Space,} 9.2274688E7 jvm_memory_committed_bytes{applicationprometheus-demo,areanonheap,idCompressed Class Space,} 5505024.0 # HELP tomcat_sessions_created_sessions_total # TYPE tomcat_sessions_created_sessions_total counter tomcat_sessions_created_sessions_total{applicationprometheus-demo,} 0.0 # HELP executor_pool_size_threads The current number of threads in the pool # TYPE executor_pool_size_threads gauge executor_pool_size_threads{applicationprometheus-demo,nameapplicationTaskExecutor,} 0.0 # HELP executor_completed_tasks_total The approximate total number of tasks that have completed execution # TYPE executor_completed_tasks_total counter executor_completed_tasks_total{applicationprometheus-demo,nameapplicationTaskExecutor,} 0.0 # HELP system_cpu_usage The recent cpu usage of the system the application is running in # TYPE system_cpu_usage gauge system_cpu_usage{applicationprometheus-demo,} 0.01596351197263398 # HELP executor_pool_core_threads The core number of threads for the pool # TYPE executor_pool_core_threads gauge executor_pool_core_threads{applicationprometheus-demo,nameapplicationTaskExecutor,} 8.0 # HELP jvm_memory_max_bytes The maximum amount of memory in bytes that can be used for memory management # TYPE jvm_memory_max_bytes gauge jvm_memory_max_bytes{applicationprometheus-demo,areaheap,idPS Survivor Space,} 2621440.0 jvm_memory_max_bytes{applicationprometheus-demo,areaheap,idPS Old Gen,} 1.32120576E9 jvm_memory_max_bytes{applicationprometheus-demo,areanonheap,idMetaspace,} -1.0 jvm_memory_max_bytes{applicationprometheus-demo,areanonheap,idCode Cache,} 2.5165824E8 jvm_memory_max_bytes{applicationprometheus-demo,areaheap,idPS Eden Space,} 6.53787136E8 jvm_memory_max_bytes{applicationprometheus-demo,areanonheap,idCompressed Class Space,} 1.073741824E9 # HELP executor_pool_max_threads The maximum allowed number of threads in the pool # TYPE executor_pool_max_threads gauge executor_pool_max_threads{applicationprometheus-demo,nameapplicationTaskExecutor,} 2.147483647E9 # HELP jvm_buffer_memory_used_bytes An estimate of the memory that the Java virtual machine is using for this buffer pool # TYPE jvm_buffer_memory_used_bytes gauge jvm_buffer_memory_used_bytes{applicationprometheus-demo,idmapped,} 0.0 jvm_buffer_memory_used_bytes{applicationprometheus-demo,iddirect,} 81920.0 # HELP system_cpu_count The number of processors available to the Java virtual machine # TYPE system_cpu_count gauge system_cpu_count{applicationprometheus-demo,} 2.0 # HELP jvm_classes_unloaded_classes_total The total number of classes unloaded since the Java virtual machine has started execution # TYPE jvm_classes_unloaded_classes_total counter jvm_classes_unloaded_classes_total{applicationprometheus-demo,} 1.0 # HELP jvm_gc_overhead_percent An approximation of the percent of CPU time used by GC activities over the last lookback period or since monitoring began, whichever is shorter, in the range [0..1] # TYPE jvm_gc_overhead_percent gauge jvm_gc_overhead_percent{applicationprometheus-demo,} 6.81195699160739E-4 # HELP jvm_buffer_total_capacity_bytes An estimate of the total capacity of the buffers in this pool # TYPE jvm_buffer_total_capacity_bytes gauge jvm_buffer_total_capacity_bytes{applicationprometheus-demo,idmapped,} 0.0 jvm_buffer_total_capacity_bytes{applicationprometheus-demo,iddirect,} 81920.0 # HELP tomcat_sessions_alive_max_seconds # TYPE tomcat_sessions_alive_max_seconds gauge tomcat_sessions_alive_max_seconds{applicationprometheus-demo,} 0.0 # HELP jvm_threads_peak_threads The peak live thread count since the Java virtual machine started or peak was reset # TYPE jvm_threads_peak_threads gauge jvm_threads_peak_threads{applicationprometheus-demo,} 19.0 # HELP executor_active_threads The approximate number of threads that are actively executing tasks # TYPE executor_active_threads gauge executor_active_threads{applicationprometheus-demo,nameapplicationTaskExecutor,} 0.0 # HELP jvm_gc_max_data_size_bytes Max size of long-lived heap memory pool # TYPE jvm_gc_max_data_size_bytes gauge jvm_gc_max_data_size_bytes{applicationprometheus-demo,} 1.32120576E9 # HELP tomcat_sessions_expired_sessions_total # TYPE tomcat_sessions_expired_sessions_total counter tomcat_sessions_expired_sessions_total{applicationprometheus-demo,} 0.0 # HELP logback_events_total Number of events that made it to the logs # TYPE logback_events_total counter logback_events_total{applicationprometheus-demo,levelinfo,} 6.0 logback_events_total{applicationprometheus-demo,leveltrace,} 0.0 logback_events_total{applicationprometheus-demo,levelwarn,} 0.0 logback_events_total{applicationprometheus-demo,leveldebug,} 0.0 logback_events_total{applicationprometheus-demo,levelerror,} 0.0 # HELP tomcat_sessions_rejected_sessions_total # TYPE tomcat_sessions_rejected_sessions_total counter tomcat_sessions_rejected_sessions_total{applicationprometheus-demo,} 0.0 # HELP jvm_memory_usage_after_gc_percent The percentage of long-lived heap pool used after the last GC event, in the range [0..1] # TYPE jvm_memory_usage_after_gc_percent gauge jvm_memory_usage_after_gc_percent{applicationprometheus-demo,areaheap,poollong-lived,} 0.0087997012668185763、安装3.1 Prometheus安装我们使用docker进行安装。首先拉去镜像# 拉取docker镜像 docker pull prom/prometheus准备配置文件prometheus.yml${host1}、${host2}为变量例如可以替换为localhost:8080scrape_configs: # 可随意指定 - job_name: spring# 多久采集一次数据scrape_interval: 15s# 采集时的超时时间scrape_timeout: 10s# 采集的路径metrics_path: /actuator/prometheus# 采集服务的地址设置成Springboot应用所在服务器的具体地址static_configs:- targets: [${host1},${host2}]启动--log.leveldebug日志以debug输出--storage.tsdb.retention.time3d数据保留3天--config.file/etc/prometheus/prometheus.yml容器里面的默认路径docker run -d -p 9090:9090 -v /root/docker-images/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml --name prometheus prom/prometheus:latest --log.leveldebug --storage.tsdb.retention.time3d --config.file/etc/prometheus/prometheus.yml或者启动脚本docker run -d -p 9090:9090 -v /root/docker-images/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml --name prometheus prom/prometheus:latest --config.file/etc/prometheus/prometheus.yml启动成功后访问地址http://${ip}:9090/页面展示3.2 Grafana安装拉去镜像docker pull grafana/grafana运行示例docker run -d -p 3000:3000 grafana/grafana访问地址http://localhost:3000账号admin密码admin页面展示3.3 Grafana配置Prometheus数据源1Date Sources-- 选择 Prometheus配置 Name 和 URL注意Name必须为首字母大写Prometheus不能全写成小写的prometheus。因为Prometheus和Grafana都是docker安装所以url需要写外网地址。2新建 DashboardCreate Dashboard配置title、description配置Data Source选择指标保存3.4 模板套用Grafana提供了许多优秀的模板可以网页https://grafana.com/grafana/dashboards 查找。导入模板id复制模板id导入导入后可以看到监控效果了
http://www.ho-use.cn/article/10821256.html

相关文章:

  • 网页版小游戏在线玩深圳搜索优化排名
  • 网站建设购买什么境外主机南昌网站建设包括哪些
  • 西安家电商城网站建设百度登录入口
  • 广告页面模板网站肇庆建设银行招聘网站
  • 做徽章的网站国外外贸需求网站
  • 常州武进建设局网站赣州城乡建设局网站
  • php网站开发背景介绍c 做网站源码实例
  • 上海市建设安全协会 - 网站首页做电锯电音的网站
  • 企业内部管理系统网站建设微信商家小程序怎么弄
  • 昆明做网站方案广州 济南网站建设公司 网络服务
  • 做国际网站的上海高端网站公司广州网站设计哪家公司好
  • 手机网站静态模板做网站的项目介绍
  • 石家庄的网站建设公司哪家好中英文网站为什么要分开做
  • 做网站后台程序是怎么来的怎么看一个网站是谁做的
  • 类模板模板下载网站有哪些内容免费制作链接
  • 济南环保行业网站开发做app用什么软件
  • 阳江网站推广优化淘宝客cms网站模板下载
  • 网站建设哪便宜wordpress 主题 定制
  • 免费快速建站工具上海做网站的网站
  • 一级a做爰片免费网站神马电影网站的建设模式是指什么时候
  • 彩票网站开发风险风铃上做的网站发布时号码填写
  • 常青藤网站建设龙岗做网站公司
  • 电子商务网站建设的目标是什么意思学网站开发工作好找吗
  • 枣庄定制网站建设制作wordpress localhost
  • 如何用织梦仿制网站flash可以用来制作网页吗
  • 做哪个网站零售最好上海人才网官网招聘人力资源专业
  • 网站分析的优劣势网络营销是什么经营模式
  • 自己做网站开店建设校园网站的必要性
  • 网站开发发展方向企业管理系统项目经历怎么写简历范文
  • 网站域名的用处北京h5网站建设公司