05 2020 档案

摘要:需求: 同时打印出:请求体(json)和响应体(json) 先给大家看结果: 如下图:可见请求体和返回体同时打印出来了 实现代码: BeanShell PreProcessor import org.json.*; import org.apache.jmeter.config.*; Argumen 阅读全文
posted @ 2020-05-23 00:00 Mosicol 阅读(302) 评论(0) 推荐(0)
摘要:1.安装依赖 yum install zlib-devel gcc make git autoconf autogen automake pkgconfig 2.安装netdata mkdir netdata cd netdata/ wget http://firehol.org/download/ 阅读全文
posted @ 2020-05-13 18:09 Mosicol 阅读(273) 评论(0) 推荐(0)
摘要:1.安装expect yum install expect 2.编写脚本 #!/usr/bin/expect set timeout 10 set username [lindex $argv 0] set host [lindex $argv 1] #{}包起来密码,因为密码中有个“[”会报错,或 阅读全文
posted @ 2020-05-09 16:59 Mosicol 阅读(1165) 评论(0) 推荐(0)
摘要:Linux系统下生成TPS,ResponseTime曲线图 1.背景 经常在Linux服务器执行压测,结束之后,将压测数据文件导出到Windows的jmeter桌面版本进行处理,有时传输文件较慢。因此有了在Linux系统下处理数据生成png图片的形式,到时统一导出png结果图片。 2.搭建环境 安装 阅读全文
posted @ 2020-05-09 14:29 Mosicol 阅读(674) 评论(0) 推荐(0)
摘要:之前一直分不清left join join(inner join) right join这三种join分别代表怎样的含义,现在记录一下方便以后查阅 先看一条SQL select * from table1 [left,right] join table2 on table1.id = table2. 阅读全文
posted @ 2020-05-06 09:21 Mosicol 阅读(270) 评论(0) 推荐(0)