Kibana 4.3, ES 2.1
I have logs with a field name details
that store file paths from a private cloud storage server. Examples of data:
/path/to/myfile1.docx
/path/to/myfile2.docx
/path/to/myfile1.pdf
/path/to/myfile2.pdf
/path/to/myfile1.xlsx
/path/to/myfile1.tmp
/path/to/myfile2.tmp
I want to create a Data Table visualization that shows certain file paths with extensions like .docx and .xlsx that are accessed most frequently. The Data Table visualization contains only two columns: details and Count
By default, the visualization will display all file path/extentions because I turn on analyzer for the field details
. Can I use Include Pattern
under Advanced of the visualization to filter only the extensions I need? If yes, what is the syntax of Include/Exclude Pattern
. I have not found any documentation/help related to this feature.