Hi i have created an index like this
<connectionString value="Server=10.30.1.63;Index=logstash;Port=9200;rolling=true"/>
and then i use the following fields:
<param name="ConversionPattern" value="%date - %level - %message %property{mstimeload} %property{applicationid} %property{applicationid} %property{page}
%property{ipclient} %property{browser} %property{browsersignature} %property{appversion} %property{sessionuniquecodetag} %property{globalcountertailsloaded}
%property{ipserveraddress} %newline" />
And in kibana I don't see any .raw fields. I would like some of the field to be "not_analyzed". My index is like this:
{
"logstash-2015.12.01": {
"aliases": {},
"mappings": {
"logEvent": {
"properties": {
"className": {
"type": "string"
},
"domain": {
"type": "string"
},
"exception": {
"type": "object"
},
"fileName": {
"type": "string"
},
"fix": {
"type": "string"
},
"fullInfo": {
"type": "string"
},
"hostName": {
"type": "string"
},
"identity": {
"type": "string"
},
"level": {
"type": "string"
},
"lineNumber": {
"type": "string"
},
"loggerName": {
"type": "string"
},
"message": {
"type": "string"
},
"messageObject": {
"type": "object"
},
"methodName": {
"type": "string"
},
"properties": {
"properties": {
"@timestamp": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"applicationid": {
"type": "string"
},
"appversion": {
"type": "string"
},
"browser": {
"type": "string"
},
"browsersignature": {
"type": "string"
},
"ipclient": {
"type": "string"
},
"ipserveraddress": {
"type": "string"
},
"log4net:HostName": {
"type": "string"
},
"log4net:Identity": {
"type": "string"
},
"log4net:UserName": {
"type": "string"
},
"mstimeload": {
"type": "string"
},
"page": {
"type": "string"
},
"sessionuniquecodetag": {
"type": "string"
}
}
},
"threadName": {
"type": "string"
},
"timeStamp": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"userName": {
"type": "string"
}
}
}
},
"settings": {
"index": {
"creation_date": "1448964809178",
"number_of_shards": "5",
"number_of_replicas": "1",
"uuid": "fFRoaMN4QDSFNCta4lV_QQ",
"version": {
"created": "2000099"
}
}
},
"warmers": {}
}
}
How can I do it?