GO基本语法
介绍 Go 即 Golang,是 Google 公司 2009 年 11 月正式对外公开的一门编程语言。 根据 Go 语言开发者自述,近 10 多年,从单机时代的 C 语言到现在互联网时代的 Java,都没有令人满意的开发语言,而 C++往...
介绍 Go 即 Golang,是 Google 公司 2009 年 11 月正式对外公开的一门编程语言。 根据 Go 语言开发者自述,近 10 多年,从单机时代的 C 语言到现在互联网时代的 Java,都没有令人满意的开发语言,而 C++往...
location ~* \.(txt|php)$ { add_header Access-Control-Allow-Origin *; add_header "Access-Control-Allow-Methods"...
如果没有设置跨域请求的情况下,会出现错误 xxxx has been blocked by CORS policy: No 'Access-Control-Allow-Origin' head... 所以需要再Nginx...
MySQL 宕机 MySQL 实例在 {{ $labels.instance }} 上关闭 - alert: MysqlDown expr: mysql_up == 0 for: 0m labels: severity: critical ...
介绍 Linux性能实时监测工具-Netdata,它是Linux系统实时性能监测工具,以web的可视化方式展示系统及应用程序的实时运行状态(包括cpu、内存、硬盘输入/输出、网络等linux性能的数据)。Netdata的web前端响应很快,...
介绍 vmware_exporter 适用于Prometheus的VMWare VCenter导出器 https://github.com/pryorda/vmware_exporter 监控规则 虚拟机内存警告 {{ $labels.in...
介绍 windows没啥好介绍的,贴个下载地址吧 https://github.com/prometheus-community/windows_exporter Windows Server 收集器错误 收集器 {{ $labels.co...
介绍 探测监视应用程序的外部,可以查询应用程序的外部特征:是否响应开放端口上的轮询并返回正确的数据或响应代码?eg:执行ICMP ping或echo检查并确认是否收到了响应。这种类型的探测也称为黑盒探测,将内部应用程序视为黑盒。 Prome...
介绍 为了解决docker stats的问题(存储、展示),谷歌开源的cadvisor诞生了,cadvisor不仅可以搜集一台机器上所有运行的容器信息,还提供基础查询界面和http接口,方便其他组件如Prometheus进行数据抓取,或者c...
介绍 有关node_exporter参照: https://github.com/prometheus/node_exporter 主机内存不足 告警条件:节点内存已满(剩余 < 10%) - alert: HostOutOfMemo...
最新评论
顶起来
好
好文章
集群节点宕机后无法开启组复制,原因:节点宕机重启后svc默认不添加未就绪的pod,1.24版本在无头svc下添加: annotations: service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" 1.24版本以上添加: 1.24版tolerate-unready-endpointsService 中的注解,改用Service.spec.publishNotReadyAddresses
在使用try_files的时候,能不能根据URI计算MD5访问文件啊,找了很久没找到相关的文章。
post { always { script{ if (currentBuild.currentResult == "ABORTED" || currentBuild.currentResult == "FAILURE" || currentBuild.currentResult == "UNSTABLE" ){ slackSend channel: "#机器人", message: "Build failure: ${env.JOB_NAME} -- No: ${env.BUILD_NUMBER}, please check detail in email!" } else { slackSend channel: "#机器人", message: "Build Success: ${env.JOB_NAME} -- Build No: ${env.BUILD_NUMBER}, please check on http://www.yourwebsite.com" } } } }