I have a requirement to capture final statistics of siege benchmark tool. what I have tried is
siege -c2 -t10s http://127.0.0.1:3000/ > siege.log 2>&1
but siege.log has many HTTP/1.1 200 0.00 secs: 16 bytes ==> GET /
aswel with it.
All i want is final statistics like below
Lifting the server siege...
Transactions: 496 hits
Availability: 100.00 %
Elapsed time: 0.97 secs
Data transferred: 0.01 MB
Response time: 0.00 secs
Transaction rate: 511.34 trans/sec
Throughput: 0.01 MB/sec
Concurrency: 1.82
Successful transactions: 496
Failed transactions: 0
Longest transaction: 0.04
Shortest transaction: 0.00
Please suggest. Thanks in advance