Windowsでjqコマンドをインストールする

公式サイトからバイナリをインストールするという手もあるが、
やはりchocolateyを使うと楽

choco install jq

これでWindowsのpowershellでもjqがつかえる

vegeta report -type=json result2.bin|jq .
{
  "latencies": {
    "total": 133301700,
    "mean": 2666034,
    "50th": 2515050,
    "95th": 5193200,
    "99th": 9292000,
    "max": 9292000
  },
  "bytes_in": {
    "total": 3350,
    "mean": 67
  },
  "bytes_out": {
    "total": 0,
    "mean": 0
  },
  "earliest": "2022-07-12T00:38:53.8787855+09:00",
  "latest": "2022-07-12T00:38:54.8613487+09:00",
  "end": "2022-07-12T00:38:54.8638598+09:00",
  "duration": 982563200,
  "wait": 2511100,
  "requests": 50,
  "rate": 50.88731187978544,
  "throughput": 50.75759259986785,
  "success": 1,
  "status_codes": {
    "200": 50
  },
  "errors": []
}

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です