diff --git a/cid-redirects.json b/cid-redirects.json index ea6c1820d0..81ded11f1f 100644 --- a/cid-redirects.json +++ b/cid-redirects.json @@ -596,6 +596,7 @@ "/05Search/Search-Query-Language/Transaction-Analytics/Transactionize-operator": "/docs/search/search-query-language/transaction-analytics/transactionize-operator", "/05Search/Subqueries": "/docs/search/subqueries", "/05Search/Time-Compare": "/docs/search/time-compare", + "/docs/Time-Compare": "/docs/search/time-compare", "/07Sumo-Logic-Apps": "/docs/integrations", "/07sumo-logic-apps": "/docs/integrations", "/07Sumo-Logic-Apps/01Amazon_and_AWS/Amazon_Aurora_MySQL_ULM": "/docs/integrations/amazon-aws/rds", @@ -1409,6 +1410,7 @@ "/Dashboards-and-Alerts/Dashboards/Edit-Dashboards-and-Panels/Change-the-Color-of-a-Chart": "/docs/dashboards", "/Dashboards-and-Alerts/Dashboards/Get-Started-with-Dashboards-and-Panels/03Share-Dashboards": "/docs/manage/security/create-allowlist-ip-cidr-addresses", "/Dashboards-and-Alerts/Dashboards/Get-Started-with-Dashboards-and-Panels/Markdown-Syntax": "/docs/dashboards/panels/markdown-syntax", + "/Manage/01Account_Usage/Beta_Participation_Opt-In": "/docs/manage/manage-subscription/beta-opt-in", "/Manage/01Account_Usage/05Manage_Organization": "/docs/manage/manage-subscription/manage-org-settings", "/Manage/01Account_Usage/01Cloud_Flex_Credits": "/docs/manage/manage-subscription/sumo-logic-credits-accounts", "/docs/manage/manage-subscription/cloud-flex-credits-accounts": "/docs/manage/manage-subscription/sumo-logic-credits-accounts", @@ -3328,6 +3330,7 @@ "/Send_Data/01_Design_Your_Deployment/Best_Practices:_Good_Source_Category,_Bad_Source_Category": "/docs/send-data/best-practices", "/03Send-Data/Sources/02Sources-for-Hosted-Collectors/Amazon_Web_Services/AWS_S3_Source": "/docs/send-data/hosted-collectors/amazon-aws/aws-s3-source", "/03Send-Data/Sources/02Sources-for-Hosted-Collectors/Amazon_Web_Services/Amazon_CloudWatch_Source_for_Metrics": "/docs/send-data/collect-from-other-data-sources/amazon-cloudwatch-logs", + "/Send-Data/Sources/02Sources-for-Hosted-Collectors/Amazon_Web_Services": "/docs/send-data/hosted-collectors/amazon-aws", "/Send-Data/Sources/02Sources-for-Hosted-Collectors/Amazon_Web_Services/AWS_S3_Source": "/docs/send-data/hosted-collectors/amazon-aws/aws-s3-source", "/Send_Data/Hosted_Collectors": "/docs/send-data/hosted-collectors", "/Send_Data/Hosted_Collectors/Configure_a_Hosted_Collector": "/docs/send-data/hosted-collectors/configure-hosted-collector", @@ -3652,6 +3655,7 @@ "/Search/Search_Query_Language/01_Parse_Operators/01_Parse_Predictable_Patterns_Using_an_Anchor": "/docs/search/search-query-language/parse-operators/parse-predictable-patterns-using-an-anchor", "/Search/Search_Query_Language/Search_Operators/matches": "/docs/search/search-query-language/search-operators/matches", "/Search/Search_Query_Language/Search_Operators/formatDate": "/docs/search/search-query-language/search-operators/formatdate", + "/Search/Search_Query_Language/Math_Expressions/round": "/docs/search/search-query-language/math-expressions/round", "/docs/search/search-query-language/search-operators/formatDate": "/docs/search/search-query-language/search-operators/formatdate", "/Search/Search-Query-Language/Search-Operators/format": "/docs/search/search-query-language/search-operators/formatdate", "/Search/Search_Query_Language/Search_Operators/Geo_Lookup": "/docs/search/search-query-language/search-operators/geo-lookup-map", diff --git a/docs/search/search-cheat-sheets/log-operators.md b/docs/search/search-cheat-sheets/log-operators.md index a5762a1f2f..d4cef0a85d 100644 --- a/docs/search/search-cheat-sheets/log-operators.md +++ b/docs/search/search-cheat-sheets/log-operators.md @@ -206,7 +206,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera
_sourceCategory=analytics
| parse "ms: *" as time
| bin time width=10, min = 0, max = 500
| count by _bin, _bin_upper
| sort by _bin_upper... | contains("hello world", "hello") as containingerror
| parse "fiveMinuteRate=*," as rate
| format("%s : %s","Five Minute Rate is" , rate) as formattedVal| haversine(39.04380, -77.48790, 45.73723, -119.81143) as distanceKMs| if (status_code in ("500", "501", "502", "503", "504", "505", "506", "401", "402", "403", "404"), "Error", "OK") as status_code_type| where isNull(src_ip)| isNumeric(num)| isPrivateIP(hostip)| isPublicIP("10.255.255.255") as isPublic_sourceCategory=stream
| if(_raw matches "error", 1, 0) as hasError
| logexplain hasError == 1 on _sourceHost| parse "name=*, phone number=*," as (name, phone)
| count by name, phone
//We recommend doing a lookup after an aggregation
| lookup email from https://compay.com/userTable.csv on name=userName, phone=cell| hypot(1, 0) as v
// v = 1| toDegrees(asin(1)) as v
// v = 90| toRadians(180) as v
// v = pi