-
-
Save slachiewicz/20c065dc72dc0cb2f1cd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"template": "logstash-jmeter-results-*", | |
"settings": { | |
"number_of_shards": 1, | |
"number_of_replicas": 0, | |
"index.refresh_interval": "5s" | |
}, | |
"mappings": { | |
"logs": { | |
"properties": { | |
"time": { | |
"type": "date", | |
"format": "yyyy-MM-dd HH:mm:ss.SSS" | |
}, | |
"elapsed": { | |
"type": "long" | |
}, | |
"label": { | |
"type": "string" | |
}, | |
"responseCode": { | |
"type": "integer" | |
}, | |
"threadName": { | |
"type": "string" | |
}, | |
"success": { | |
"type": "boolean" | |
}, | |
"bytes": { | |
"type": "long" | |
}, | |
"grpThreads": { | |
"type": "long" | |
}, | |
"allThreads": { | |
"type": "long" | |
}, | |
"Latency": { | |
"type": "long" | |
}, | |
"SampleCount": { | |
"type": "long" | |
}, | |
"ErrorCount": { | |
"type": "long" | |
}, | |
"Hostname": { | |
"type": "string" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment