Is it possible to use regex to define a Kibana index pattern? Many of my index names are UUID's, and I am not able to create an index pattern to match them other than "*", which will of course include all the other non UUID index names as well.
If I could use the following regex: [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12} to match all the UUID index names, that'd be great, but sadly this does not work.