Hello
As the following image show i cant map many of my fields.
I tried to refresh the index pattern but the problem persist.
I checked the index template and i saw that dynamic mapping is enabled:
I also used that command: GET apm-7.7.0-transaction-000001/_mapping
to get my index mapping and a part of my result is the following.
"http" : {
"dynamic" : "false",
"properties" : {
"request" : {
"properties" : {
"body" : {
"properties" : {
"bytes" : {
"type" : "long"
},
"content" : {
"type" : "keyword",
"fields" : {
"text" : {
"type" : "text",
"norms" : false
}
},
"ignore_above" : 1024
}
}
},
"bytes" : {
"type" : "long"
},
"headers" : {
"type" : "object",
"enabled" : false
},
"method" : {
"type" : "keyword",
"ignore_above" : 1024
},
"referrer" : {
"type" : "keyword",
"ignore_above" : 1024
}
}
},
"response" : {
"properties" : {
"body" : {
"properties" : {
"bytes" : {
"type" : "long"
},
"content" : {
"type" : "keyword",
"fields" : {
"text" : {
"type" : "text",
"norms" : false
}
},
"ignore_above" : 1024
}
}
},
"bytes" : {
"type" : "long"
},
"finished" : {
"type" : "boolean"
},
"headers" : {
"type" : "object",
"enabled" : false
},
"status_code" : {
"type" : "long"
}
}
},
"version" : {
"type" : "keyword",
"ignore_above" : 1024
}
}
},
Why does this issue occur and what should i do in order to get this fixed?