Skip to content

Instantly share code, notes, and snippets.

@slachiewicz
Forked from jpotts/jmeter-results-mapping.json
Last active August 29, 2015 14:15
Show Gist options
  • Save slachiewicz/20c065dc72dc0cb2f1cd to your computer and use it in GitHub Desktop.
Save slachiewicz/20c065dc72dc0cb2f1cd to your computer and use it in GitHub Desktop.
{
"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