使用Prometheus和Grafana对MySQL服务器性能进行监控。使用两个exporter:node_exporter:服务器系统数据收集mysqld_exporter:MySQL服务器数据收集监控架构图:Prometheus安装配置安装方式二进制安装,详见这里CentOS7部署Prometheus版本:目前最新版本prometheus-2.18.1修改Prometheus配置文件prome
分类:
数据库 时间:
2020-05-14 11:36:58
阅读次数:
166
参考文章:https://blog.csdn.net/why15732625998/article/details/80388236最近在写sql的过程中看到这个关键字,之前自己都没有用过,所以特地看了看,稍微整理了一下。先放一张使用过程的截图下面做详细的描述
分类:
数据库 时间:
2020-05-14 11:36:45
阅读次数:
72
我的是spring boot项目,不需要web.xml文件 把pom文件failOnMissingWebXml参数改为false即可 <properties> <failOnMissingWebXml>false</failOnMissingWebXml> </properties> ...
分类:
Web程序 时间:
2020-05-14 11:36:33
阅读次数:
69
一、php基本语法 <?php phpinfo(); ?> 二、php 变量声明 <?php $name = "zhangsan"; // 声明变量用$符号 echo "hello," .$name; //echo为PHP中最常用的输出命令 ?> ...
分类:
Web程序 时间:
2020-05-14 11:36:01
阅读次数:
62
通过udev将服务器多网卡进行网口名称绑定,防止服务器重启后,网口变动
分类:
其他好文 时间:
2020-05-14 11:35:36
阅读次数:
103
一、环境准备 1、安装 1.安装ddt模块,打开cmd输入pip install ddt在线安装 >>pip install ddt 2、参考代码: DDT(Data-Driven Tests)是针对unittest单元测试框架设计的扩展库。 from selenium import webdriv ...
分类:
编程语言 时间:
2020-05-14 11:34:28
阅读次数:
127
Available CPUs for this target: native - Select the CPU of the current host (currently haswell). amdfam10 athlon athlon-4 athlon-fx athlon-mp athlon-t ...
分类:
其他好文 时间:
2020-05-14 11:34:08
阅读次数:
138
在Linux文件系统中,我们可以使用下面shell脚本判断某个文件是否存在: # 这里的-f参数判断$file是否存在 if [ ! -f "$file" ]; then echo "文件不存在!" fi 但是我们想判断hdfs上某个文件是否存在咋办呢?Hadoop内置提供了判断某个文件是否存在的命 ...
分类:
系统相关 时间:
2020-05-14 11:33:50
阅读次数:
70
代码模板就是预先定义好的一个代码片段。VS中,我们只要输入模板的名称,然后连按两下TAB,VS就可以给我们把代码片段补充完整。 1. 内置代码片段 关键字 生成 for for(int i = 0; i < length; i++){} foreach foreach (var item in co ...
分类:
其他好文 时间:
2020-05-14 11:33:02
阅读次数:
58
剑指Offer-面试题15 二进制中1的个数 二进制中1的个数 https://leetcode-cn.com/problems/er-jin-zhi-zhong-1de-ge-shu-lcof/ 使用一个位运算的小技巧即可。 public int HammingWeight(uint n) { i ...
分类:
其他好文 时间:
2020-05-14 11:32:43
阅读次数:
59
2020-05-14 最长特殊序列 I 给你两个字符串,请你从这两个字符串中找出最长的特殊序列。 「最长特殊序列」定义如下:该序列为某字符串独有的最长子序列(即不能是其他字符串的子序列)。 子序列 可以通过删去字符串中的某些字符实现, 但不能改变剩余字符的相对顺序。空序列为所有字符串的子序列,任何字 ...
分类:
其他好文 时间:
2020-05-14 11:32:14
阅读次数:
71
1.如果不考虑兼容IE10以下的话,可以用HTML5中的classList API,非常方便: let modulYes = document.querySelectorAll('.modul li') for (let i = 0; i < modulYes.length; i++) { modu ...
分类:
Web程序 时间:
2020-05-14 11:31:57
阅读次数:
144
string sql = string.Format(@"insert into Table(FileSize,FileType,FilePath,FileExtName,OldFileName,NewFileName,FileHash,CreateTime,DeleteFlag) values(@ ...
分类:
数据库 时间:
2020-05-14 11:30:34
阅读次数:
75
逆变和协变,关键字在泛型接口和委托中使用亲测: Func<Object,Object> a = Func<string,string>;// ERROR,in不可协变 Func<string,Object> a = Func<string,string>;//Right,out可协变 //协变:ou ...
分类:
其他好文 时间:
2020-05-14 11:30:12
阅读次数:
75
org.apache.maven.archiver.MavenArchiver.getManifest(org.apache.maven.project.Mav (Click for 1 more) 解决方案: 更新eclipse中的maven插件 1.1 Help -> Install New S ...
分类:
Web程序 时间:
2020-05-14 11:28:53
阅读次数:
76
导致我的电脑出现这个BASH-like 窗口是因为,我的电脑安装windows和Ubuntu双系统,之后在windows系统重直接格式化删除ubuntu分区系统后出现这个错误 原因分析 Windows所安装在的SSD是MBR引导分区,所以另外安装ubutnu系统时还要自己分区,如果把引导分区选在SS ...
分类:
其他好文 时间:
2020-05-14 11:28:41
阅读次数:
114
vscode 非常帮的插件 "点击链接跳转" 1. 翻译 2. Auto Close Tag 3. Auto Rename Tag 4. Beautify 5. Bracket Pair Colorizer 6. Chinese Language 7. ESLint 8. Markdown Tabl ...
分类:
其他好文 时间:
2020-05-14 11:28:26
阅读次数:
73