搜索内容

Joe.Ye 的文章
  • VuePress技术笔记站点部署

    VuePress: https://vuepress.vuejs.org/zh # vim package.json # yarn # mkdir docs # vim docs/.vuepress/config.js # npm run dev

    Joe.Ye 2023-03-25
    0 0
  • Vue中配置axios跨域多个proxyTable代理

    vue.config.js 配置参考:https://cli.vuejs.org/config/#devserver-proxy devServer: { open: true, port: 8081, proxy: { //匹配/gw1-api开头……

    Joe.Ye 2023-03-25
    0 0
  • Vue proxyTable build打包后访问报404

    问题描述 vue proxyTable 热启动状态下能正常访问,打包后访问就包404 配置参考:https://cli.vuejs.org/config/#devserver-proxy 代理配置 $ vim vue.conf……

    Joe.Ye 2023-03-25
    0 0
  • Prometheus动态发现监控targets —— 基于文件的服务发现

    为实现Prometheus监控目标配置的动态加载,可通过基于文件的服务发现完成配置 Kafka服务的自动发现配置 Prometheus官方exporter链接: https://github.com/da……

    Joe.Ye 2023-03-25
    0 0
  • Prometheus通过Consul动态修改Targets接入

    静态配置 通常Prometheus要增加一个target,需要在配置文件中已添加一个job,例如下: - job_name: 'prometheus' static_configs: - targets:……

    Joe.Ye 2023-03-25
    0 0
  • Prometheus使用Consul实现自动服务发现

    Consul 介绍 Consul 是基于 GO 语言开发的开源工具,主要面向分布式,服务化的系统提供服务注册、服务发现和配置管理的功能。Consul 提供服务注册/发现、健康……

    Joe.Ye 2023-03-25
    0 0
  • Prometheus服务发现机制

    Prometheus与服务发现 云原生、容器场景下按需的资源使用方式对于监控系统而言就意味着没有了一个固定的监控目标,所有的监控对象(基础设施、应用、服务)都在……

    Joe.Ye 2023-03-25
    0 0
  • 修改AlertManager默认告警邮件中的url地址

    AlertManager发出的默认邮件内容里,点击View in AlertManager时,会调到以AlertManager的主机名为url的地址上,导致打不开这个网址 解决方法: ./alertmanag……

    Joe.Ye 2023-03-25
    0 0
  • Grafana曲线图展示每秒新增数据量

    添加MySQL数据源 -> 添加查询条件 sql 模式编写查询条件: SELECT $__timeGroupAlias(create_time, $interval), count(order_no) as '创单数量&#……

    Joe.Ye 2023-03-25
    0 0
  • Grafana插件扩展之SimpleJson安装

    在线安装SimpleJson 官网:https://grafana.com/grafana/plugins/grafana-simple-json-datasource # grafana-cli plugins install grafana-simple-json-dataso……

    Joe.Ye 2023-03-25
    0 0
  • Filebeat利用Kafka进行日志实时传输

    vim filebeat.yml nohup ./filebeat -c filebeat.yml & #=========================== Filebeat inputs ============================= filebeat.inputs:……

    Joe.Ye 2023-03-25
    0 0
  • ELK 7.x — elastalert 企业微信告警

    Elastalert_Wechat_Plugin 基于ElastAlert的微信企业号报警插件 elastalert: https://github.com/Yelp/elastalert elastalert_wechat_plugin: https://github……

    Joe.Ye 2023-03-25
    0 0
  • Prometheus通过企业微信接收告警

    准备工作 step 1: 访问企业微信 注册企业微信账号(不需要企业认证)。 step 2: 访问应用管理 创建第三方应用,点击创建应用按钮 -> 填写应用信息: Prome……

    Joe.Ye 2023-03-25
    0 0
  • Filebeat+ElasticSearch+Grafana实现Nginx日志监控

    Filebeat安装 官网:https://www.elastic.co/downloads/beats/filebeat # wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.1.0-linu……

    Joe.Ye 2023-03-25
    0 0
  • CentOS下Zabbix Proxy部署记录

    Zabbix Proxy zabbix是一个分布式的监控系统,其支持通过代理服务器zabbix proxy 来收集zabbix agent的数据,然后zabbix proxy再把收集保存在本地数据库的数据……

    Joe.Ye 2023-03-25
    0 0