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
- CIDR + CIDR The CIDR operator allows you to leverage Classless Inter-Domain Routing (CIDS) notations to analyze IP network traffic in order to narrow analysis to specific subnets. CIDR notations specify the routing prefix of IP addresses. @@ -227,7 +227,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera ... | contains("hello world", "hello") as containing - decToHex + decToHex The decToHex operator converts a long value of 16 or fewer digits to a hexadecimal string using Two's Complement for negative values. @@ -262,7 +262,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera error
| parse "fiveMinuteRate=*," as rate
| format("%s : %s","Five Minute Rate is" , rate) as formattedVal
- formatDate + formatDate The formatDate operator allows you to format dates in log files as a string in the format you require, such as US date formatting, European formatting, timestamps, etc. @@ -283,7 +283,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera | haversine(39.04380, -77.48790, 45.73723, -119.81143) as distanceKMs - hexToDec + hexToDec The hexToDec operator converts a hexadecimal string of 16 or fewer characters to long using Two's Complement for negative values. @@ -304,7 +304,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera | if (status_code in ("500", "501", "502", "503", "504", "505", "506", "401", "402", "403", "404"), "Error", "OK") as status_code_type - ipv4ToNumber + ipv4ToNumber The ipv4ToNumber operator allows you to convert an Internet Protocol version 4 (IPv4) IP address from the octet dot-decimal format to a decimal format. This decimal format makes it easier to compare one IP address to another, rather than relying on IP masking. @@ -332,28 +332,28 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera | where isNull(src_ip) - isNumeric + isNumeric The isNumeric operator checks whether a string is a valid Java number. | isNumeric(num) - isPrivateIP + isPrivateIP The isPrivateIP operator checks if an IPv4 address is private and returns a boolean. | isPrivateIP(hostip) - isPublicIP + isPublicIP The isPublicIP operator checks if an IPv4 address is public and returns a boolean. | isPublicIP("10.255.255.255") as isPublic - isValidIP + isValidIP The isValidIP operator checks if the value is a valid IP address. The isValidIPv4 and isValidIPv6 operators check if the value is a valid IPv4 or IPv6 address respectively. @@ -392,7 +392,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera logexplain The logexplain operator allows you to compare sets of structured logs based on events you're interested in. Structured logs can be in JSON, CSV, key-value, or any structured format. _explanation
_relevance
_test_coverage
_control_coverage - Not supported with Real Time alerts.
Time Compare and the compare operator are not supported against LogExplain results. + Not supported with Real Time alerts.
Time Compare and the compare operator are not supported against LogExplain results. _sourceCategory=stream
| if(_raw matches "error", 1, 0) as hasError
| logexplain hasError == 1 on _sourceHost
@@ -424,7 +424,7 @@ This section provides detailed syntax, rules, and examples for Sumo Logic Opera | 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
- luhn (credit card validator) + luhn (credit card validator) The Luhn operator uses Luhn’s algorithm to check message logs for strings of numbers that may be credit card numbers, and then validates them. It takes a string as an input, strips out all characters that are not numerals, and checks if the resulting string is a valid credit card number, returning true or false accordingly. @@ -776,12 +776,12 @@ You can use general mathematical expressions on numerical data extracted from lo | hypot(1, 0) as v
// v = 1
- toDegrees + toDegrees Converts angles from radians to degrees. | toDegrees(asin(1)) as v
// v = 90
- toRadians + toRadians Converts angles from degrees to radians. | toRadians(180) as v
// v = pi