chalkpe / obj-to-cloudwatch-pattern

Convert object into AWS CloudWatch log pattern

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multiple filters on same path

chalkpe opened this issue · comments

current implementation is lack of creating multiple filters on same path (e.g.($.value > 5) && ($.value < 10))

considerable approach:

  • via array or space-delimited?
    { value: ['>5', '<10'] } or { value: '>5 <10' }
  • custom query language like MongoDB?
    • has more advantages on later features (#2)