I've tried everything I can to find this single index:
{
"_index": "logstash-2015.12.15",
"_type": "logs",
"_id": "AVVVW_wekW28kZ0eUiUh",
"_version": 1,
"_score": 1,
"_source": {
"message": "127.0.0.1 - - [15/Dec/2015:18:50:15 -0500] "GET /robots.txt HTTP/1.1" 200 172 "-" "-"",
"@version": "1",
"@timestamp": "2015-12-15T23:50:15.000Z",
"type": "log",
"host": "abc123.local",
"remote_ip": "127.0.0.1",
"user_name": "-",
"time": "15/Dec/2015:18:50:15 -0500",
"request_action": "GET",
"request": "/robots.txt",
"http_version": "1.1",
"response": "200",
"bytes": "172",
"referrer": "-",
"agent": "-",
"user_agent": {
"name": "Other",
"os": "Other",
"os_name": "Other",
"device": "Other"
}
}
}
The request
field is not_analyzed
.
How can I query for /robots.txt
? I don't want other results such as /overlay.html
or /index.html
. I just want /robots.txt
.