Hi,
I subscribe to a 14days trial to move from my test env (5.1.1) to your could base solution.
I load the elasticsearch thru Logstash with my IIS server logs. When I look into the discover, I get this message:
> Discover: [unsupported_operation_exception] custom format isn't supported
Error: [unsupported_operation_exception] custom format isn't supported at respond (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/kibana.bundle.js?v=14566:14:2082) at checkRespForFailure (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/kibana.bundle.js?v=14566:14:1310) at https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/kibana.bundle.js?v=14566:1:23441 at processQueue (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:38:23621) at https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:38:23888 at Scope.$eval (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:39:4619) at Scope.$digest (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:39:2359) at Scope.$apply (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:39:5037) at done (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:37:25027) at completeRequest (https://079a55c5c95666ada3fba5517ae47066.eu-west-1.aws.found.io/bundles/commons.bundle.js?v=14566:37:28702)
The logstash conf is:
input {
beats {
port => 5044
type => "log"
}
}
filter {
#ignore log comments
if [message] =~ "^#" {
drop {}
}grok {
match => ["message", "%{TIMESTAMP_ISO8601:timestamp} %{IP:sourceip} %{WORD:method} %{URIPATH:uristem} (?:-|%{NOTSPACE:uriquery}) %{POSINT:port} (?:-|%{NOTSPACE:username}) %{IP:clientip} %{NOTSPACE:useragent} %{NUMBER:status} %{NUMBER:substatus} %{NUMBER:win32status} %{NUMBER:timetaken}"]
}#Set the Event Timesteamp from the log
date {
match => [ "log_timestamp", "YYYY-MM-dd HH:mm:ss" ]
timezone => "Etc/UTC"
}useragent {
source=> "useragent"
prefix=> "browser"
}mutate {
remove_field => [ "log_timestamp"]
}
}
output {
elasticsearch {
hosts => "xxxx:9200"
user => "xxxx"
password => "xxxx"
manage_template => false
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}
Everything work on my own server why not on the cloud service.
Could you help ?
Tia
-Alexis