What plans do you have for improving the out of the box reporting? In my opinion this a major missing feature - I know there have been some basic charts implemented but it should be easy to see a lot more information and even edit queries.
@Teodor_Hoaghea Currently we are using the basic version of Kibana 5.5.2, since this does not come with Security and Dashboard only feature, we have built a robot to grab the iframe of the dashboard and embed in the html file. In this version the bar graphs crash in IE 11 with below error and this seems to be a known issue. Do you know if there any fix or workaround for this besides using different browser?
I’m using below script for Scripted Fields after enabling regex in yml file.
def m = /^.*\.([a-z]+)$/.matcher(doc['message.keyword'].value);
if ( m.matches() ) {
return m.group(1)
} else {
return "no match"
}
“reason”:"Regexes are disabled. Set [script.painless.regex.enabled] to [true] in elasticsearch.yaml to allow them. Be careful though, regexes break out of Painless’s protection against deep recursion and long loops.
I know this is a bit off topic, but checking if anyone has idea regarding this. Checking with ELK forum folks as well. Thanks.