cityindex / kibana

Kibana 3
http://www.elasticsearch.org/overview/kibana/
Other
0 stars 0 forks source link

Disable regex queries #6

Open mrdavidlaing opened 10 years ago

mrdavidlaing commented 10 years ago

logsearch doesn't support the _all field mapping for space & performance reasons; which means that the Kibana regex query type doesn't work.

Ideally we'd like a config option to disable the regex query type

mrdavidlaing commented 10 years ago

Alternately we could just hack the querySrv.queryTypes array and remove it, but that would open us up for merge conflicts down the road.

@dpb587 Any clever ideas?

dpb587 commented 10 years ago

Can we create a custom angular module which requires querySrv and deletes queryTypes.regex?

mrdavidlaing commented 10 years ago

@dpb587 - Maybe. Is there a way we can force said custom angular module to load first?

dpb587 commented 10 years ago

That's more @ryanholder's knowledge - I'm not familiar enough with angular and monkey patching it.