Home > database >  create Kibana index pattern can match on 2 different index
create Kibana index pattern can match on 2 different index

Time:02-24

I would like to do an Kibana index pattern able to match with this index : enter image description here

I would like something work like this : network* OR system*

Is it possible ?

Thx for your help :) Hugo

CodePudding user response:

Then you can simply comma-separate them

network*,system*
  • Related