Skip to content

Commit 3067d38

Browse files
authored
Added new field for the ASN operator doc (#4685)
* Added new field for the ASN operator doc * minor fix * Update asn-lookup.md * Update docs/search/search-query-language/search-operators/asn-lookup.md * Update docs/search/search-query-language/search-operators/asn-lookup.md
1 parent 9e13e05 commit 3067d38

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/search/search-query-language/search-operators/asn-lookup.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,15 @@ lookup\<field\> from asn://default on ip\<ip_address\>
1818
|:--|:--|
1919
| `*` | Use a wildcard (`*`) character as a shortcut to return both fields. |
2020
| `asn` | Autonomous System Number |
21-
| `organization` | Autonomous System Organization Name (Carrier) or ID in some cases. |
21+
| `organization` | The name of the organization that owns the ASN or ID in some cases. This organization (Carrier) is responsible for the routing of traffic for network blocks. |
22+
| `registering_organization` | The organization responsible for the actions and content associated with a given block of IP addresses. Registering Organizations include many types of entities, including corporate, government, or educational entities, and ISPs managing the allocation and use of network blocks. |
2223

2324
## Example
2425

25-
The following query references a data stream with IPv4 addresses, parses
26-
those IPv4 addresses, and then uses ASN Lookup to retrieve their
27-
autonomous system information. 
26+
The following query references a data stream with IPv4 addresses, parses those IPv4 addresses, and then uses ASN Lookup to retrieve their autonomous system information. 
2827

2928
```sql
30-
_sourceCategory=stream "remote_ip="
29+
_dataTier=all _sourceCategory=stream "remote_ip="
3130
| parse regex "(?<ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"
32-
| lookup organization, asn from asn://default on ip = ip
31+
| lookup organization, registering_organization, asn from asn://default on ip = ip
3332
```

0 commit comments

Comments
 (0)