diff --git a/cid-redirects.json b/cid-redirects.json index a2289a27ba..3cddb6b603 100644 --- a/cid-redirects.json +++ b/cid-redirects.json @@ -1603,6 +1603,7 @@ "/cid/0100": "/docs/manage/security/installation-tokens", "/cid/0020": "/docs/manage/health-events", "/cid/0020001": "/docs/security/threat-intelligence/upload-formats", + "/cid/20002": "/docs/search/search-query-language/search-operators/threatlookup", "/cid/0020003": "/docs/security/threat-intelligence", "/cid/0523": "/docs/manage/manage-subscription/upgrade-account/upgrade-sumo-logic-flex-account", "/cid/0524": "/docs/manage/manage-subscription/cloud-flex-legacy-accounts", diff --git a/docs/cse/integrations/configuring-threatq-source-in-cse.md b/docs/cse/integrations/configuring-threatq-source-in-cse.md index e36a445210..5092fda994 100644 --- a/docs/cse/integrations/configuring-threatq-source-in-cse.md +++ b/docs/cse/integrations/configuring-threatq-source-in-cse.md @@ -7,7 +7,7 @@ description: Learn how to set up a ThreatQ source. import useBaseUrl from '@docusaurus/useBaseUrl'; - + +## Format timestamp results + +Timestamps for the following response fields return results as an integer because they use Unix time (also known as *epoch time*): +* `_threatlookup.imported` +* `_threatlookup.valid_from` +* `_threatlookup.valid_until` +* `_threatlookup.updated` + +To convert the timestamp results to a readable output, you must format it in the search itself with [`formatDate`](/docs/search/search-query-language/search-operators/formatdate). For example: + +``` +_index=sec_record* +| threatlookup source="mysource" device_ip +| formatDate(_threatlookup.valid_until, "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") as valid_until +``` + + diff --git a/docs/security/threat-intelligence/find-threats.md b/docs/security/threat-intelligence/find-threats.md index f48e03bc07..668542e908 100644 --- a/docs/security/threat-intelligence/find-threats.md +++ b/docs/security/threat-intelligence/find-threats.md @@ -42,6 +42,7 @@ To find threats using IP addresses, use the `threatip` search operator. This ope For more information, see [threatip Search Operator](/docs/search/search-query-language/search-operators/threatip/). -