Join Operator
Overview
Enrich data with join
.
When a join
is performed, rows from the pipe are matched up with rows from the <target_query>
based on the <condition>
. The resulting data contains all of the original fields from the pipe, with the fields from the <target_query>
added to the <dest>
field. The rows returned are controlled with <kind>
.
<target_query>
<target_query>
The target_query
is the data that will be joined. It can be any valid query, such as simply a table name (some_table)
or a more complex statement (some_table | extend id = a + b)
.
<condition>
<condition>
The <condition>
is an expression that is used to control which rows in the pipe are joined to rows in the <target_query>
. It is required for every join <kind>
except cross
joins. Joins have a $left
side (the pipe) and a $right
side (the <target_query>
). For example, a condition of $left.id == $right.id
will match rows that contain the same value for id
.
<kind>
<kind>
Control which rows are emitted with kind
.
kind value | Description |
---|---|
| Return only rows that match on |
| Return every row from the pipe enriched with the fields from the |
| Return every row from the |
| Return rows from both the pipe and the |
| Return every row in the pipe combined with every row from the |
Examples
Join on IP addresses
Let's say our pipe contains IP addresses in the sourceIP
field and we want to enrich it with data from a table named ip_location
containing IP addresses in a field named ip
.
We can use a <condition>
of $left.sourceIp == $right.ip
to match rows based on IP addresses and kind:leftouter
to return all rows from the pipe—even those that might be missing from ip_location
.
Join with tor_exit_nodes
table
tor_exit_nodes
table This example uses an inner
join to find aws_alb
logs that have a clientIp
that is listed in the Panther-managed tor_exit_node
Enrichment Provider table.
Join with ipinfo_location_datalake
table using UDFs
ipinfo_location_datalake
table using UDFsHere is a more complex example, in which we'll enrich ALB logs with the Panther-managed ipinfo_location_datalake
Enrichment Provider table.
Note that this query uses the SQL user-defined functions (UDFs) panther_lookups.public.ipinfo_to_join_key()
and panther_lookups.public.ipinfo_to_int()
, which take an IP address as an argument. Learn more about these UDFs on IPinfo.
Join using datatable
datatable
It's possible to inject sample data into a join
using the datatable
operator:
Last updated