k6

WARN[0000] Request Failed error="Get https://example.net: x509: certificate signed by unknown authority"

estis2018/03/18 (日) 23:28 に投稿

k6 でテストしたときに、
WARN[0000] Request Failed error="Get https://example.net: x509: certificate signed by unknown authority"
といったエラーが出る場合は、
k6 run --insecure-skip-tls-verify script.js
のように実行するか、

export let options = {
insecureSkipTLSVerify: true
};

を、script.js に書き加えれば、回避できる。

k6 インストール

estis2018/03/18 (日) 10:57 に投稿

https://loadimpact.com/k6
に、
「k6 is a developer-centric open source load testing tool」とある。

インストールは、
https://k6.readme.io/docs/installation
を参照。

Mac環境では、

brew tap loadimpact/k6
brew install k6

で、インストールできる。

WindowsやLinux用のバイナリは、
https://github.com/loadimpact/k6/releases