-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.go
63 lines (54 loc) · 1.15 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package common
// config path
const (
BenchmarkDirPath = "__BenchmarkDirPath__"
BenchmarkArchivePath = "__BenchmarkArchivePath__"
)
// worker
const (
WorkerPath = "worker"
WorkerCapPath = "worker.cap"
)
// workers
const (
WorkersPath = "workers"
)
// collector mode
const (
CollectorSummaryMode = "summary"
CollectorDetailsMode = "details"
)
// collector
const (
CollectorModePath = "collector.mode"
)
// engine
const (
EnginePath = "engine"
EngineRatePath = "engine.rate"
EngineDurationPath = "engine.duration"
EngineCapPath = "engine.cap"
EngineURLsPath = "engine.urls"
)
// client
const (
ClientScriptPath = "client.script"
ClientTypePath = "client.type"
ClientConfigPath = "client.config"
ClientContractPath = "client.contract"
ClientContractArgsPath = "client.args"
ClientOptionPath = "client.options"
ClientPluginPath = "client.plugin"
)
// recorder
const (
//
RecorderCsvPath = "recorder.csv"
RecorderCsvDirPath = "recorder.csv.dir"
// log
LogLevelPath = "recorder.log.level"
LogDirPath = "recorder.log.dir"
LogDumpPath = "recorder.log.dump"
)
// logger
const ()