add datadog backend structure
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from sigma.backends.base import SingleTextQueryBackend
|
||||
|
||||
|
||||
class DatadogBackend(SingleTextQueryBackend):
|
||||
identifier = "datadog" # TODO: more specific?
|
||||
active = True
|
||||
config_required = False
|
||||
|
||||
andToken = " AND "
|
||||
orToken = " OR "
|
||||
notToken = "-"
|
||||
subExpression = "(%s)"
|
||||
mapExpression = "%s:%s"
|
||||
Reference in New Issue
Block a user