Delete field name in kibana4

Hi im using kibana4

i want to delete field name without deleting index in kibana4 uisng manual or from url like localhost:port .... not with curl

You cannot do that, you will need to reindex.

if i delete index and created new , it come up with same previous field..
i dont want to create previous field like logtime,tstamp.....

Then you need to check your inputs as something is creating these.

input {
file {
path => ["/logs/*.log"]

start_position => "beginning"   

}
}
filter {

multiline {
	pattern => "^%{TIMESTAMP_ISO8601} "
	negate => true
	what => previous
	
}

}
output {
elasticsearch {
host => "ipaddress"
port => 9200
user => "username"
password => "Password"
protocol => "http"
}
stdout { codec => rubydebug }
}

i dont thing so it will create again
can you help me buddy..

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.