Yes name.raw does have data.
{
"nrdb-csv-logs-v2.5": {
"mappings": {
"doc": {
"properties": {
"@timestamp": {
"type": "date"
},
"@version": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"FileDate": {
"type": "date"
},
"Name": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"Number": {
"type": "integer",
"ignore_malformed": true
},
"Path": {
"type": "text"
},
"day": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"filedate": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"filename": {
"type": "keyword"
},
"host": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"month": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"path": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"year": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}
}
No When I select Visualization from the Discover-Filter I have created, it gives me closer to the format I am looking for but not quite, I can now see two bars, one for each of the counted records and number value specified in the X Axis, but actually what I care about is the difference in the value for the number. So I want the Number Value to show on Y and the record name and date on the X - then a line above that will show me the standard deviation between the two records.
Do I need to create a Regexp Query first?
I am not interested in the count of how many records there are. All I want to see is the value expressed in the number and the difference between these numbers over time.
This example is more like what I am trying to do...