finished csv reporter support

This commit is contained in:
Senad Uka
2013-11-07 12:12:39 +00:00
parent 681a7f2d02
commit de85e8709a
3 changed files with 15 additions and 15 deletions

View File

@@ -2,14 +2,14 @@ package main
import (
"flag"
vegeta "github.com/tsenart/vegeta/lib"
vegeta "github.com/senaduka/vegeta/lib"
"log"
"strings"
)
func reportCmd(args []string) command {
fs := flag.NewFlagSet("report", flag.ExitOnError)
reporter := fs.String("reporter", "text", "Reporter [text, json, plot]")
reporter := fs.String("reporter", "text", "Reporter [text, json, plot, csv]")
input := fs.String("input", "stdin", "Input files (comma separated)")
output := fs.String("output", "stdout", "Output file")
fs.Parse(args)