trying to create a new elasticsearch datasource produces the following error “No date field named timestamp found”
The data was created using the following format;
‘{ “user”:“user.1”, “timestamp”: 337712739, “type”: “date”, “format”: “epoch_second” }’
And the mapping produces the following…
{
“monitor” : {
“mappings” : {
“rbt” : {
“properties” : {
“format” : {
“type” : “text”,
“fields” : {
“keyword” : {
“type” : “keyword”,
“ignore_above” : 256
}
}
},
“timestamp” : {
“type” : “long”
},
“type” : {
“type” : “text”,
“fields” : {
“keyword” : {
“type” : “keyword”,
“ignore_above” : 256
}
}
},
“user” : {
“type” : “text”,
“fields” : {
“keyword” : {
“type” : “keyword”,
“ignore_above” : 256
}
}
}
}
}
}
}
}
Any ideas?
Thanks