File tree Expand file tree Collapse file tree 1 file changed +113
-0
lines changed
Expand file tree Collapse file tree 1 file changed +113
-0
lines changed Original file line number Diff line number Diff line change 22JMeter plugin that lets you send sample results to an ElasticSearch engine to enable live monitoring of load tests.
33
44Feel free to contribute by branching and making pull requests, or simply by suggesting ideas through the "Issues" tab.
5+
6+ ## Sample ElasticSearch Index
7+
8+ ``` javascript
9+ {
10+ " template" : " jmeter" ,
11+ " mappings" : {
12+ " SampleResult" : {
13+ " properties" : {
14+ " AllThreads" : {
15+ " type" : " long"
16+ },
17+ " Assertions" : {
18+ " properties" : {
19+ " Failure" : {
20+ " type" : " boolean"
21+ },
22+ " FailureMessage" : {
23+ " type" : " text" ,
24+ " index" : false
25+ },
26+ " Name" : {
27+ " type" : " text" ,
28+ " index" : false
29+ }
30+ }
31+ },
32+ " BodySize" : {
33+ " type" : " long"
34+ },
35+ " Bytes" : {
36+ " type" : " long"
37+ },
38+ " ConnectTime" : {
39+ " type" : " long" ,
40+ " index" : false
41+ },
42+ " ContentType" : {
43+ " type" : " text" ,
44+ " index" : false
45+ },
46+ " DataType" : {
47+ " type" : " text" ,
48+ " index" : false
49+ },
50+ " EndTime" : {
51+ " type" : " date" ,
52+ " format" : " dateOptionalTime"
53+ },
54+ " ErrorCount" : {
55+ " type" : " long"
56+ },
57+ " GrpThreads" : {
58+ " type" : " long" ,
59+ " index" : false
60+ },
61+ " IdleTime" : {
62+ " type" : " long"
63+ },
64+ " Latency" : {
65+ " type" : " long"
66+ },
67+ " ResponseCode" : {
68+ " type" : " text"
69+ },
70+ " ResponseMessage" : {
71+ " type" : " text" ,
72+ " index" : false
73+ },
74+ " ResponseTime" : {
75+ " type" : " long"
76+ },
77+ " SampleCount" : {
78+ " type" : " long"
79+ },
80+ " SampleLabel" : {
81+ " type" : " keyword"
82+ },
83+ " StartTime" : {
84+ " type" : " date" ,
85+ " format" : " dateOptionalTime"
86+ },
87+ " Success" : {
88+ " type" : " text" ,
89+ " index" : false
90+ },
91+ " ThreadName" : {
92+ " type" : " keyword" ,
93+ " index" : false
94+ },
95+ " URL" : {
96+ " type" : " keyword"
97+ },
98+ " Timestamp" : {
99+ " type" : " date" ,
100+ " format" : " dateOptionalTime"
101+ },
102+ " NormalizedTimestamp" : {
103+ " type" : " date" ,
104+ " format" : " dateOptionalTime" ,
105+ " index" : false
106+ },
107+ " BuildNumber" : {
108+ " type" : " long"
109+ },
110+ " ElapsedTime" : {
111+ " type" : " date"
112+ }
113+ }
114+ }
115+ }
116+ }
117+ ```
You can’t perform that action at this time.
0 commit comments