For a variety of components (threat intelligence triage and field
transformations) we have the need to do simple computation and
transformation using the data from messages as variables.
For those purposes, there exists a simple, scaled down DSL
created to do simple computation and transformation.
The query language supports the following:
- Referencing fields in the enriched JSON
- Simple boolean operations:
and
,not
,or
- Simple arithmetic operations:
*
,/
,+
,-
on real numbers or integers - Simple comparison operations
<
,>
,<=
,>=
- Simple equality comparison operations
==
,!=
- if/then/else comparisons (i.e.
if var1 < 10 then 'less than 10' else '10 or more'
) - Determining whether a field exists (via
exists
) - An
in
operator that works like thein
in Python - The ability to have parenthesis to make order of operations explicit
- User defined functions
The following keywords need to be single quote escaped in order to be used in Stellar expressions:
not | else | exists | if | then |
and | or | in | == | != |
<= | > | >= | + | - |
< | ? | * | / | , |
Using parens such as: "foo" : "<ok>" requires escaping; "foo": "'<ok>'"
in
supports string contains. e.g.'foo' in 'foobar' == true
in
supports collection contains. e.g.'foo' in [ 'foo', 'bar' ] == true
in
supports map key contains. e.g.'foo' in { 'foo' : 5} == true
not in
is the negation of the in expression. e.g.'grok' not in 'foobar' == true
- If either side of the comparison is null then return false.
- If both values being compared implement number then the following:
- If either side is a double then get double value from both sides and compare using given operator.
- Else if either side is a float then get float value from both sides and compare using given operator.
- Else if either side is a long then get long value from both sides and compare using given operator.
- Otherwise get the int value from both sides and compare using given operator.
- If both sides are of the same type and are comparable then use the compareTo method to compare values.
- If none of the above are met then an exception is thrown.
Below is how the ==
operator is expected to work:
- If either side of the expression is null then check equality using Java's
==
expression. - Else if both sides of the expression are of Java's type Number then:
- If either side of the expression is a double then use the double value of both sides to test equality.
- Else if either side of the expression is a float then use the float value of both sides to test equality.
- Else if either side of the expression is a long then use long value of both sides to test equality.
- Otherwise use int value of both sides to test equality
- Otherwise use equals method compare the left side with the right side.
The !=
operator is the negation of the above.
- Description: Adds an element to the bloom filter passed in
- Input:
- bloom - The bloom filter
- value* - The values to add
- Returns: Bloom Filter
- Description: If the bloom filter contains the value
- Input:
- bloom - The bloom filter
- value - The value to check
- Returns: True if the filter might contain the value and false otherwise
- Description: Returns an empty bloom filter
- Input:
- expectedInsertions - The expected insertions
- falsePositiveRate - The false positive rate you are willing to tolerate
- Returns: Bloom Filter
- Description: Returns a merged bloom filter
- Input:
- bloomfilters - A list of bloom filters to merge
- Returns: Bloom Filter or null if the list is empty
- Description: The numbered day within the month. The first day within the month has a value of 1.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The numbered day within the month.
- Description: The numbered day within the week. The first day of the week, Sunday, has a value of 1.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The numbered day within the week.
- Description: The day number within the year. The first day of the year has value of 1.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The day number within the year.
- Description: Removes the subdomains from a domain.
- Input:
- domain - Fully qualified domain name
- Returns: The domain without the subdomains. (for example, DOMAIN_REMOVE_SUBDOMAINS('mail.yahoo.com') yields 'yahoo.com')
- Description: Removes the top level domain (TLD) suffix from a domain.
- Input:
- domain - Fully qualified domain name
- Returns: The domain without the TLD. (for example, DOMAIN_REMOVE_TLD('mail.yahoo.co.uk') yields 'mail.yahoo')
- Description: Extracts the top level domain from a domain
- Input:
- domain - Fully qualified domain name
- Returns: The TLD of the domain. (for example, DOMAIN_TO_TLD('mail.yahoo.co.uk') yields 'co.uk')
- Description: Determines whether a string ends with a specified suffix
- Input:
- string - The string to test
- suffix - The proposed suffix
- Returns: True if the string ends with the specified suffix and false if otherwise
- Description: Interrogates the HBase table holding the simple hbase enrichment data and returns whether the enrichment type and indicator are in the table.
- Input:
- enrichment_type - The enrichment type
- indicator - The string indicator to look up
- nosql_table - The NoSQL Table to use
- column_family - The Column Family to use
- Returns: True if the enrichment indicator exists and false otherwise
- Description: Interrogates the HBase table holding the simple hbase enrichment data and retrieves the tabular value associated with the enrichment type and indicator.
- Input:
- enrichment_type - The enrichment type
- indicator - The string indicator to look up
- nosql_table - The NoSQL Table to use
- column_family - The Column Family to use
- Returns: A Map associated with the indicator and enrichment type. Empty otherwise.
- Description: Fills or pads a given string with a given character, to a given length on the left
- Input:
- input - string
- fill - the fill character
- len - the required length
- Returns: the filled string
- Description: Fills or pads a given string with a given character, to a given length on the right
- Input:
- input - string
- fill - the fill character string
- len - the required length
- Returns: Last element of the list
- Description: Returns a formatted string using the specified format string and arguments. Uses Java's string formatting conventions.
- Input:
- format - string
- arguments... - object(s)
- Returns: A formatted string.
- Description: Look up an IPV4 address and returns geographic information about it
- Input:
- ip - The IPV4 address to lookup
- fields - Optional list of GeoIP fields to grab. Options are locID, country, city postalCode, dmaCode, latitude, longitude, location_point
- Returns: If a Single field is requested a string of the field, If multiple fields a map of string of the fields, and null otherwise
- Description: Returns the i'th element of the list
- Input:
- input - List
- i - The index (0-based)
- Returns: First element of the list
- Description: Returns the first element of the list
- Input:
- input - List
- Returns: First element of the list
- Description: Returns the last element of the list
- Input:
- input - List
- Returns: Last element of the list
- Description: Returns true if an IP is within a subnet range.
- Input:
- ip - The IP address in string form
- cidr+ - One or more IP ranges specified in CIDR notation (for example 192.168.0.0/24)
- Returns: True if the IP address is within at least one of the network ranges and false if otherwise
- Description: Determines if the date contained in the string conforms to the specified format.
- Input:
- date - The date in string form
- format - The format of the date
- Returns: True if the date is in the specified format and false if otherwise.
- Description: Tests if a string refers to a valid domain name. Domain names are evaluated according to the standards RFC1034 section 3, and RFC1123 section 2.1.
- Input:
- address - The string to test
- Returns: True if the string refers to a valid domain name and false if otherwise
- Description: Tests if a string is a valid email address
- Input:
- address - The string to test
- Returns: True if the string is a valid email address and false if otherwise.
- Description: Returns true if string or collection is empty or null and false if otherwise.
- Input:
- input - Object of string or collection type (for example, list)
- Returns: True if the string or collection is empty or null and false if otherwise.
- Description: Determines whether or not an object is an integer.
- Input:
- x - The object to test
- Returns: True if the object can be converted to an integer and false if otherwise.
- Description: Determine if an string is an IP or not.
- Input:
- ip - An object which we wish to test is an ip
- type (optional) - Object of string or collection type (e.g. list) one of IPV4 or IPV6 or both. The default is IPV4.
- Returns: True if the string is an IP and false otherwise.
- Description: Tests if a string is a valid URL
- Input:
- url - The string to test
- Returns: True if the string is a valid URL and false if otherwise.
- Description: Joins the components in the list of strings with the specified delimiter.
- Input:
- list - List of strings
- delim - String delimiter
- Returns: String
- Description: Retrieves messages from a Kafka topic. Subsequent calls will continue retrieving messages sequentially from the original offset.
- Input:
- topic - The name of the Kafka topic.
- count - The number of Kafka messages to retrieve.
- config - Optional map of key/values that override any global properties.
- Returns: List of String
- Description: Retrieves the Kafka properties that are used by other KAFKA_* functions like KAFKA_GET and KAFKA_PUT. The Kafka properties are compiled from a set of default properties, the global properties, and any overrides.
- Input:
- config - An optional map of key/values that override any global properties.
- Returns: Map of key/value pairs
- Description: Sends messages to a Kafka topic.
- Input:
- topic - The name of the Kafka topic.
- messages - A list of messages to write.
- config - Optional map of key/values that override any global properties.
- Returns: n/a
- Description: etrieves messages from a Kafka topic always starting with the most recent message first.
- Input:
- topic - The name of the Kafka topic.
- count - The number of Kafka messages to retrieve.
- config - Optional map of key/values that override any global properties.
- Returns: List of String
- Description: Returns the length of a string or size of a collection. Returns 0 for empty or null Strings
- Input:
- input - Object of string or collection type (e.g. list)
- Returns: Integer
- Description: Inspects ZooKeeper and returns a map containing the name, version and url for the model referred to by the input parameters.
- Input:
- model_name - The name of the model
- model_version - The optional version of the model. If the model version is not specified, the most current version is used.
- Returns: A map containing the name, version, and url for the REST endpoint (fields named name, version and url). Note that the output of this function is suitable for input into the first argument of MAAS_MODEL_APPLY.
- Description: Returns the output of a model deployed via Model as a Service. NOTE: Results are cached locally for 10 minutes.
- Input:
- endpoint - A map containing the name, version, and url for the REST endpoint
- function - The optional endpoint path; default is 'apply'
- model_args - A Dictionary of arguments for the model (these become request params)
- Returns: The output of the model deployed as a REST endpoint in Map form. Assumes REST endpoint returns a JSON Map.
- Description: Checks for existence of a key in a map.
- Input:
- key - The key to check for existence
- map - The map to check for existence of the key
- Returns: True if the key is found in the map and false if otherwise.
- Description: Gets the value associated with a key from a map
- Input:
- key - The key
- map - The map
- default - Optionally the default value to return if the key is not in the map.
- Returns: The object associated with the key in the map. If no value is associated with the key and default is specified, then default is returned. If no value is associated with the key or default, then null is returned.
- Description: The number representing the month. The first month, January, has a value of 0.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The current month (0-based).
- Description: Retrieves a series of values from a stored profile.
- Input:
- profile - The name of the profile.
- entity - The name of the entity.
- periods - The list of profile periods to grab. These are ProfilePeriod objects.
- groups_list - Optional, must correspond to the 'groupBy' list used in profile creation - List (in square brackets) of groupBy values used to filter the profile. Default is the empty list, meaning groupBy was not used when creating the profile.
- config_overrides - Optional - Map (in curly braces) of name:value pairs, each overriding the global config parameter of the same name. Default is the empty Map, meaning no overrides.
- Returns: The selected profile measurements.
- Description: The profile periods associated with a fixed lookback starting from now
- Input:
- durationAgo - How long ago should values be retrieved from?
- units - The units of 'durationAgo'.
- config_overrides - Optional - Map (in curly braces) of name:value pairs, each overriding the global config parameter of the same name. Default is the empty Map, meaning no overrides.
- Returns: The selected profile measurement timestamps. These are ProfilePeriod objects.
- Description: The profiler periods associated with a window selector statement from an optional reference timestamp.
- Input:
- windowSelector - The statement specifying the window to select.
- now - Optional - The timestamp to use for now.
- config_overrides - Optional - Map (in curly braces) of name:value pairs, each overriding the global config parameter of the same name. Default is the empty Map, meaning no overrides.
- Returns: The selected profile measurement periods. These are ProfilePeriod objects.
- Description: Converts the IANA protocol number to the protocol name
- Input:
- IANA Number
- Returns: The protocol name associated with the IANA number.
- Description: Determines whether a regex matches a string
- Input:
- string - The string to test
- pattern - The proposed regex pattern
- Returns: True if the regex pattern matches the string and false if otherwise.
- Description: Computes the base-2 shannon entropy of a string.
- Input:
- input - String
- Returns: The base-2 shannon entropy of the string (https://en.wikipedia.org/wiki/Entropy_(information_theory)#Definition). The unit of this is bits.
- Description: Splits the string by the delimiter.
- Input:
- input - String to split
- delim - String delimiter
- Returns: List of strings
- Description: Determines whether a string starts with a prefix
- Input:
- string - The string to test
- prefix - The proposed prefix
- Returns: True if the string starts with the specified prefix and false if otherwise
- Description: Returns the value associated with an environment variable
- Input:
- env_var - Environment variable name to get the value for
- Returns: String
- Description: Returns the value associated with a Java system property
- Input:
- key - Property to get the value for
- Returns: String
- Description: Transforms the first argument to a double precision number
- Input:
- input - Object of string or numeric type
- Returns: Double version of the first argument
- Description: Returns the epoch timestamp of the dateTime in the specified format. If the format does not have a timestamp and you wish to assume a given timestamp, you may specify the timezone optionally.
- Input:
- dateTime - DateTime in String format
- format - DateTime format as a String
- timezone - Optional timezone in String format
- Returns: Epoch timestamp
- Description: Transforms the first argument to a float
- Input:
- input - Object of string or numeric type
- Returns: Float version of the first argument
- Description: Transforms the first argument to an integer
- Input:
- input - Object of string or numeric type
- Returns: Integer version of the first argument
- Description: Transforms the first argument to a long integer
- Input:
- input - Object of string or numeric type
- Returns: Long version of the first argument
- Description: Transforms the first argument to a lowercase string
- Input:
- input - String
- Returns: Lowercase string
- Description: Transforms the first argument to a string
- Input:
- input - Object
- Returns: String
- Description: Transforms the first argument to an uppercase string
- Input:
- input - String
- Returns: Uppercase string
- Description: Trims whitespace from both sides of a string.
- Input:
- input - String
- Returns: String
- Description: Extract the hostname from a URL.
- Input:
- url - URL in String form
- Returns: The hostname from the URL as a String. e.g. URL_TO_HOST('http://www.yahoo.com/foo') would yield 'www.yahoo.com'
- Description: Extract the path from a URL.
- Input:
- url - URL in String form
- Returns: The path from the URL as a String. e.g. URL_TO_PATH('http://www.yahoo.com/foo') would yield 'foo'
- Description: Extract the port from a URL. If the port is not explicitly stated in the URL, then an implicit port is inferred based on the protocol.
- Input:
- url - URL in string form
- Returns: The port used in the URL as an integer (for example, URL_TO_PORT('http://www.yahoo.com/foo') would yield 80)
- Description: Extract the protocol from a URL.
- Input:
- url - URL in String form
- Returns: The protocol from the URL as a String. e.g. URL_TO_PROTOCOL('http://www.yahoo.com/foo') would yield 'http'
- Description: The numbered week within the month. The first week within the month has a value of 1.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The numbered week within the month.
- Description: The numbered week within the year. The first week in the year has a value of 1.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The numbered week within the year.
- Description: The number representing the year.
- Input:
- dateTime - The datetime as a long representing the milliseconds since unix epoch
- Returns: The current year
The following is an example query (i.e. a function which returns a boolean) which would be seen possibly in threat triage:
IN_SUBNET( ip, '192.168.0.0/24') or ip in [ '10.0.0.1', '10.0.0.2' ] or exists(is_local)
This evaluates to true precisely when one of the following is true:
- The value of the
ip
field is in the192.168.0.0/24
subnet - The value of the
ip
field is10.0.0.1
or10.0.0.2
- The field
is_local
exists
The following is an example transformation which might be seen in a field transformation:
TO_EPOCH_TIMESTAMP(timestamp, 'yyyy-MM-dd HH:mm:ss', MAP_GET(dc, dc2tz, 'UTC'))
For a message with a timestamp
and dc
field, we want to set the
transform the timestamp to an epoch timestamp given a timezone which we
will lookup in a separate map, called dc2tz
.
This will convert the timestamp field to an epoch timestamp based on the
- Format
yyyy-MM-dd HH:mm:ss
- The value in
dc2tz
associated with the value associated with fielddc
, defaulting toUTC
A REPL (Read Eval Print Loop) for the Stellar language that helps in debugging, troubleshooting and learning Stellar. The Stellar DSL (domain specific language) is used to act upon streaming data within Apache Storm. It is difficult to troubleshoot Stellar when it can only be executed within a Storm topology. This REPL is intended to help mitigate that problem by allowing a user to replicate data encountered in production, isolate initialization errors, or understand function resolution problems.
The shell supports customization via ~/.inputrc
as it is
backed by a proper readline implementation.
Shell-like operations are supported such as
- reverse search via ctrl-r
- autocomplete of Stellar functions and variables via tab
- NOTE: Stellar functions are read via a classpath search which happens in the background. Until that happens, autocomplete will not include function names.
- emacs or vi keybindings for edit mode
Note: Stellar classpath configuration from the global config is honored here if the REPL knows about zookeeper.
$ $METRON_HOME/bin/stellar
Stellar, Go!
{es.clustername=metron, es.ip=node1, es.port=9300, es.date.format=yyyy.MM.dd.HH}
[Stellar]>>> %functions
BLOOM_ADD, BLOOM_EXISTS, BLOOM_INIT, BLOOM_MERGE, DAY_OF_MONTH, DAY_OF_WEEK, DAY_OF_YEAR, ...
[Stellar]>>> ?PROTOCOL_TO_NAME
PROTOCOL_TO_NAME
desc: Convert the IANA protocol number to the protocol name
args: IANA Number
ret: The protocol name associated with the IANA number.
[Stellar]>>> ip.protocol := 6
6
[Stellar]>>> PROTOCOL_TO_NAME(ip.protocol)
TCP
$ $METRON_HOME/bin/stellar -h
usage: stellar
-h,--help Print help
-irc,--inputrc <arg> File containing the inputrc if not the default
~/.inputrc
-v,--variables <arg> File containing a JSON Map of variables
-z,--zookeeper <arg> Zookeeper URL
-na,--no_ansi Make the input prompt not use ANSI colors.
Optional
Optionally load a JSON map which contains variable assignments. This is intended to give you the ability to save off a message from Metron and work on it via the REPL.
Optional
Attempts to connect to Zookeeper and read the Metron global configuration. Stellar functions may require the global configuration to work properly. If found, the global configuration values are printed to the console. If specified, then the classpath may be augmented by the paths specified in the stellar config in the global config.
$ $METRON_HOME/bin/stellar -z node1:2181
Stellar, Go!
{es.clustername=metron, es.ip=node1, es.port=9300, es.date.format=yyyy.MM.dd.HH}
[Stellar]>>>
Stellar has no concept of variable assignment. For testing and
debugging purposes, it is important to be able to create variables that
simulate data contained within incoming messages. The REPL has created
a means for a user to perform variable assignment outside of the core
Stellar language. This is done via the :=
operator, such as
foo := 1 + 1
would assign the result of the stellar expression 1 + 1
to the
variable foo
.
[Stellar]>>> foo := 2 + 2
4.0
[Stellar]>>> 2 + 2
4.0
The REPL has a set of magic commands that provide the REPL user with information about the Stellar execution environment. The following magic commands are supported.
This command lists all functions resolvable in the Stellar environment. Stellar searches the classpath for Stellar functions. This can make it difficult in some cases to understand which functions are resolvable.
[Stellar]>>> %functions
BLOOM_ADD, BLOOM_EXISTS, BLOOM_INIT, BLOOM_MERGE, DAY_OF_MONTH, DAY_OF_WEEK, DAY_OF_YEAR,
DOMAIN_REMOVE_SUBDOMAINS, DOMAIN_REMOVE_TLD, DOMAIN_TO_TLD, ENDS_WITH, GET, GET_FIRST,
GET_LAST, IN_SUBNET, IS_DATE, IS_DOMAIN, IS_EMAIL, IS_EMPTY, IS_INTEGER, IS_IP, IS_URL,
JOIN, LENGTH, MAAS_GET_ENDPOINT, MAAS_MODEL_APPLY, MAP_EXISTS, MAP_GET, MONTH, PROTOCOL_TO_NAME,
REGEXP_MATCH, SPLIT, STARTS_WITH, STATS_ADD, STATS_COUNT, STATS_GEOMETRIC_MEAN, STATS_INIT,
STATS_KURTOSIS, STATS_MAX, STATS_MEAN, STATS_MERGE, STATS_MIN, STATS_PERCENTILE,
STATS_POPULATION_VARIANCE, STATS_QUADRATIC_MEAN, STATS_SD, STATS_SKEWNESS, STATS_SUM,
STATS_SUM_LOGS, STATS_SUM_SQUARES, STATS_VARIANCE, TO_DOUBLE, TO_EPOCH_TIMESTAMP, TO_FLOAT,
TO_INTEGER, TO_LOWER, TO_STRING, TO_UPPER, TRIM, URL_TO_HOST, URL_TO_PATH, URL_TO_PORT,
URL_TO_PROTOCOL, WEEK_OF_MONTH, WEEK_OF_YEAR, YEAR
[Stellar]>>>
Lists all variables in the Stellar environment.
Stellar, Go!
{es.clustername=metron, es.ip=node1, es.port=9300, es.date.format=yyyy.MM.dd.HH}
[Stellar]>>> %vars
[Stellar]>>> foo := 2 + 2
4.0
[Stellar]>>> %vars
foo = 4.0
Returns formatted documentation of the Stellar function. Provides the description of the function along with the expected arguments.
[Stellar]>>> ?BLOOM_ADD
BLOOM_ADD
desc: Adds an element to the bloom filter passed in
args: bloom - The bloom filter, value* - The values to add
ret: Bloom Filter
[Stellar]>>> ?IS_EMAIL
IS_EMAIL
desc: Tests if a string is a valid email address
args: address - The String to test
ret: True if the string is a valid email address and false otherwise.
[Stellar]>>>
The format of the global enrichment is a JSON String to Object map. This is intended for configuration which is non sensor specific configuration.
This configuration is stored in zookeeper, but looks something like
{
"es.clustername": "metron",
"es.ip": "node1",
"es.port": "9300",
"es.date.format": "yyyy.MM.dd.HH",
"parser.error.topic": "indexing"
"fieldValidations" : [
{
"input" : [ "ip_src_addr", "ip_dst_addr" ],
"validation" : "IP",
"config" : {
"type" : "IPV4"
}
}
]
}
Stellar can be configured in a variety of ways from the global config. In particular, there are three main configuration parameters around configuring Stellar:
stellar.function.paths
stellar.function.resolver.includes
stellar.function.resolver.excludes
If specified, Stellar will use a custom classloader which will wrap the context classloader and allow for the resolution of classes stored in jars not shipped with Metron and stored in a variety of mediums:
- On HDFS
- In tar.gz files
- At http/s locations
- At ftp locations
This path is a comma separated list of
- URIs
- URIs with a regex pattern ending it for matching within a directory
{
...
"stellar.function.paths" : "hdfs://node1:8020/apps/metron/stellar/metron-management-0.3.1.jar, hdfs://node1:8020/apps/metron/3rdparty/.*.jar"
}
Please be aware that this classloader does not reload functions dynamically and the classpath specified here in the global config is read on topology start. A change in classpath, to be picked up, would necessitate a topology restart at the moment
If specified, this defines one or more regular expressions applied to the classes implementing the Stellar function that specify what should be included when searching for Stellar functions.
stellar.function.resolver.includes
defines the list of classes to include.stellar.function.resolver.excludes
defines the list of classes to exclude.
{
...
"stellar.function.resolver.includes" : "org.apache.metron.*,com.myorg.stellar.*"
}
Inside of the global configuration, there is a validation framework in place that enables the validation that messages coming from all parsers are valid. This is done in the form of validation plugins where assertions about fields or whole messages can be made.
The format for this is a fieldValidations
field inside of global
config. This is associated with an array of field validation objects
structured like so:
input
: An array of input fields or a single field. If this is omitted, then the whole messages is passed to the validator.config
: A String to Object map for validation configuration. This is optional if the validation function requires no configuration.validation
: The validation function to be used. This is one ofSTELLAR
: Execute a Stellar Language statement. Expects the query string in thecondition
field of the config.IP
: Validates that the input fields are an IP address. By default, if no configuration is set, it assumesIPV4
, but you can specify the type by passing in the config by passing intype
with eitherIPV6
orIPV4
or by passing in a list [IPV4
,IPV6
] in which case the input(s) will be validated against both.DOMAIN
: Validates that the fields are all domains.EMAIL
: Validates that the fields are all email addressesURL
: Validates that the fields are all URLsDATE
: Validates that the fields are a date. Expectsformat
in the config.INTEGER
: Validates that the fields are an integer. String representation of an integer is allowed.REGEX_MATCH
: Validates that the fields match a regex. Expectspattern
in the config.NOT_EMPTY
: Validates that the fields exist and are not empty (after trimming.)
Configurations should be stored on disk in the following structure starting at $BASE_DIR
:
- global.json : The global config
sensors
: The subdirectory containing sensor enrichment configuration JSON (e.g.snort.json
,bro.json
)
By default, this directory as deployed by the ansible infrastructure is at $METRON_HOME/config/zookeeper
While the configs are stored on disk, they must be loaded into Zookeeper to be used. To this end, there is a
utility program to assist in this called $METRON_HOME/bin/zk_load_config.sh
This has the following options:
-f,--force Force operation
-h,--help Generate Help screen
-i,--input_dir <DIR> The input directory containing
the configuration files named
like "$source.json"
-m,--mode <MODE> The mode of operation: DUMP,
PULL, PUSH
-o,--output_dir <DIR> The output directory which will
store the JSON configuration
from Zookeeper
-z,--zk_quorum <host:port,[host:port]*> Zookeeper Quorum URL
(zk1:port,zk2:port,...)
Usage examples:
- To dump the existing configs from zookeeper on the singlenode vagrant machine:
$METRON_HOME/bin/zk_load_configs.sh -z node1:2181 -m DUMP
- To push the configs into zookeeper on the singlenode vagrant machine:
$METRON_HOME/bin/zk_load_configs.sh -z node1:2181 -m PUSH -i $METRON_HOME/config/zookeeper
- To pull the configs from zookeeper to the singlenode vagrant machine disk:
$METRON_HOME/bin/zk_load_configs.sh -z node1:2181 -m PULL -o $METRON_HOME/config/zookeeper -f
Errors generated in Metron topologies are transformed into JSON format and follow this structure:
{
"exception": "java.lang.IllegalStateException: Unable to parse Message: ...",
"failed_sensor_type": "bro",
"stack": "java.lang.IllegalStateException: Unable to parse Message: ...",
"hostname": "node1",
"source:type": "error",
"raw_message": "{\"http\": {\"ts\":1488809627.000000.31915,\"uid\":\"C9JpSd2vFAWo3mXKz1\", ...",
"error_hash": "f7baf053f2d3c801a01d196f40f3468e87eea81788b2567423030100865c5061",
"error_type": "parser_error",
"message": "Unable to parse Message: {\"http\": {\"ts\":1488809627.000000.31915,\"uid\":\"C9JpSd2vFAWo3mXKz1\", ...",
"timestamp": 1488809630698
}
Each topology can be configured to send error messages to a specific Kafka topic. The parser topologies retrieve this setting from the the parser.error.topic
setting in the global config:
{
"es.clustername": "metron",
"es.ip": "node1",
"es.port": "9300",
"es.date.format": "yyyy.MM.dd.HH",
"parser.error.topic": "indexing"
}
Error topics for enrichment and threat intel errors are passed into the enrichment topology as flux properties named enrichment.error.topic
and threat.intel.error.topic
. These properties can be found in $METRON_HOME/config/enrichment.properties
.
The error topic for indexing errors is passed into the indexing topology as a flux property named index.error.topic
. This property can be found in either $METRON_HOME/config/elasticsearch.properties
or $METRON_HOME/config/solr.properties
depending on the search engine selected.
By default all error messages are sent to the indexing
topic so that they are indexed and archived, just like other messages. The indexing config for error messages can be found at $METRON_HOME/config/zookeeper/indexing/error.json
.