Skip to content

Commit 32fdc26

Browse files
committed
Add tip on passing dynamic parameters
1 parent 7dafdc4 commit 32fdc26

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

articles/sentinel/dns-normalization-schema.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ To filter only DNS queries for a specified list of domain names, use:
125125
let torProxies=dynamic(["tor2web.org", "tor2web.com", "torlink.co",...]);
126126
_Im_Dns (domain_has_any = torProxies)
127127
```
128+
> [!TIP]
129+
> To pass a literal list to parameters that expect a dynamic value, explicitly use a [dynamic literal](/azure/data-explorer/kusto/query/scalar-data-types/dynamic#dynamic-literals.md). For example: `dynamic(['192.168.','10.'])`.
130+
>
128131
129132
## Normalized content
130133

articles/sentinel/network-normalization-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The following filtering parameters are available:
8181
| **eventresult** | String | Filter only network sessions with a specific **EventResult** value. |
8282
| | | |
8383

84-
For example, to filter only web sessions for a specified list of domain names, use:
84+
For example, to filter only network sessions for a specified list of domain names, use:
8585

8686
```kql
8787
let torProxies=dynamic(["tor2web.org", "tor2web.com", "torlink.co",...]);

articles/sentinel/web-normalization-schema.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ let torProxies=dynamic(["tor2web.org", "tor2web.com", "torlink.co",...]);
9999
_Im_WebSession (url_has_any = torProxies)
100100
```
101101

102+
> [!TIP]
103+
> To pass a literal list to parameters that expect a dynamic value, explicitly use a [dynamic literal](/azure/data-explorer/kusto/query/scalar-data-types/dynamic#dynamic-literals.md). For example: `dynamic(['192.168.','10.'])`.
104+
>
105+
102106
## Schema details
103107

104108
The Web Session information model is aligned with the [OSSEM Network entity schema](https://github.com/OTRF/OSSEM/blob/master/docs/cdm/entities/network.md) and the [OSSEM HTTP entity schema](https://github.com/OTRF/OSSEM/blob/master/docs/cdm/entities/http.md).

0 commit comments

Comments
 (0)