diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 13fd112067..0bfdc08f8c 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -36,6 +36,88 @@ jobs:
run: yarn install --frozen-lockfile
- name: Build the Docusaurus site
run: yarn build
+ # --- Disallowed character checks for Pantheon ---
+ # 1) Fail if any file path in the build output contains disallowed characters
+ - name: Check build artifact paths for disallowed characters
+ env:
+ BUILD_DIR: build
+ shell: bash
+ run: |
+ if [ ! -d "$BUILD_DIR" ]; then
+ echo "No $BUILD_DIR directory found; skipping path check."
+ exit 0
+ fi
+ # Disallowed chars: " : < > | * ?
+ OFFENDERS="$(find "$BUILD_DIR" -type f | grep -E '[":<>|*?]')" || true
+ if [ -n "$OFFENDERS" ]; then
+ echo "❌ Disallowed characters found in build artifact paths:"
+ echo "$OFFENDERS"
+ while IFS= read -r p; do
+ rel="${p#$(pwd)/}"
+ [ "$rel" = "$p" ] && rel="$p"
+ badchars=$(echo "$rel" | grep -oE '[":<>|*?]' | tr -d '\n')
+ echo "::error file=${rel}::Disallowed character(s) found in build artifact path: [${badchars}] (Pantheon rejects paths containing any of: \" : < > | * ?)"
+ done <<< "$OFFENDERS"
+ exit 1
+ fi
+ echo "✅ No disallowed characters found in build artifact paths."
+ # 2) Fail if any Markdown/MDX link target contains disallowed characters (excluding external links).
+ # Ignores fenced code blocks (```/~~~) and inline code (`...`) to avoid false positives from code samples.
+ - name: Check Markdown/MDX links for disallowed characters
+ shell: bash
+ run: |
+ FILES="$(git ls-files '*.md' '*.mdx' 2>/dev/null || true)"
+ if [ -z "$FILES" ]; then
+ echo "No Markdown/MDX files found; skipping link check."
+ exit 0
+ fi
+ BAD_LINKS=$(
+ awk '
+ BEGIN { in_code=0 }
+ {
+ raw=$0
+
+ # Toggle fenced code blocks starting with ``` or ~~~
+ if (match(raw, /^\s*(```|~~~)/)) { in_code = !in_code; next }
+ if (in_code) { next }
+
+ # Strip inline code spans so patterns inside don’t trigger
+ line = raw
+ gsub(/`[^`]*`/, "", line)
+
+ # Find real Markdown links: [text](url)
+ while (match(line, /\[[^]]+\]\(([^)]+)\)/, m)) {
+ url=m[1]
+
+ # Skip external schemes
+ if (url ~ /^(https?:|mailto:|tel:)/) { line=substr(line, RSTART+RLENGTH); continue }
+
+ # Drop query + fragment
+ sub(/\?.*$/, "", url)
+ sub(/#.*/, "", url)
+
+ # Disallowed characters in relative link targets: " : < > | * ?
+ if (url ~ /[":<>|*?]/) {
+ printf("%s\t%d\t%s\n", FILENAME, FNR, m[0])
+ }
+
+ line=substr(line, RSTART+RLENGTH)
+ }
+ }
+ ' $FILES
+ )
+
+ if [ -n "$BAD_LINKS" ]; then
+ echo "❌ Disallowed characters found in Markdown/MDX link targets:"
+ echo "$BAD_LINKS"
+ while IFS=$'\t' read -r file line match; do
+ [ -z "$file" ] && continue
+ badchars=$(echo "$match" | grep -oE '[":<>|*?]' | tr -d '\n')
+ echo "::error file=${file},line=${line}::Disallowed character(s) in Markdown link target: [${badchars}] ${match} (Not allowed: \" : < > | * ?)"
+ done <<< "$BAD_LINKS"
+ exit 1
+ fi
+ echo "✅ No disallowed characters found in Markdown/MDX link targets."
spellcheck:
runs-on: ubuntu-latest
steps:
diff --git a/blog-service/2021/12-31.md b/blog-service/2021/12-31.md
index da81773627..09a4f2c9af 100644
--- a/blog-service/2021/12-31.md
+++ b/blog-service/2021/12-31.md
@@ -18,14 +18,14 @@ Release notes from 2016-2020 have been archived. If you need access to earlier v
---
## December 17, 2021 (Search)
-New - Keyboard shortcuts are now available to generate [comments in Search queries](/docs/search/get-started-with-search/search-basics/comments-search-queries "Comments in Search Queries"). Use **command + /** on macOS or **control + /** on Windows.
+New - Keyboard shortcuts are now available to generate [comments in Search queries](/docs/search/get-started-with-search/search-basics/comments-search-queries). Use **command + /** on macOS or **control + /** on Windows.
---
## December 9, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Google Workspace Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/google-workspace-source "Google Workspace Source") collects data from the Google Workspace [Users API](https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list).
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Google Workspace Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/google-workspace-source) collects data from the Google Workspace [Users API](https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list).
-Update - The [Okta Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/okta-source "Okta Source"), in addition to [System Log](https://developer.okta.com/docs/reference/api/system-log/) data, now supports collecting [User Inventory](https://developer.okta.com/docs/reference/api/users/ "https://developer.okta.com/docs/reference/api/users/") data.
+Update - The [Okta Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/okta-source), in addition to [System Log](https://developer.okta.com/docs/reference/api/system-log/) data, now supports collecting [User Inventory](https://developer.okta.com/docs/reference/api/users) data.
---
## November 30, 2021 (Apps)
@@ -35,12 +35,12 @@ New - As an integration partner with Amazon, we are pleased to announce our new
---
## November 18, 2021 (Apps)
-New version - We are excited to announce the GA release of the updated [Data Volume App](/docs/integrations/sumo-apps/data-volume "Data Volume App"). This release provides our customers an ability to view and track account usage for Traces, Cloud SIEM, and Data Tiers. In addition to this customers will also be able to track usage in both native units as well as Sumo Logic credits. We have enhanced the existing "sumologic_volume" index and added new index categories for these key capabilities.
+New version - We are excited to announce the GA release of the updated [Data Volume App](/docs/integrations/sumo-apps/data-volume). This release provides our customers an ability to view and track account usage for Traces, Cloud SIEM, and Data Tiers. In addition to this customers will also be able to track usage in both native units as well as Sumo Logic credits. We have enhanced the existing "sumologic_volume" index and added new index categories for these key capabilities.
---
## November 18, 2021 (Search)
-Update - The [fillmissing operator](/docs/search/search-query-language/search-operators/fillmissing "fillmissing") has a few improvements:
+Update - The [fillmissing operator](/docs/search/search-query-language/search-operators/fillmissing) has a few improvements:
- Timeslice granularity is automatically defined based on the time used in the timeslice operator.
- Values has an all option that uses all the distinct values for the field from the query results.
@@ -71,7 +71,7 @@ Update - Enterprise accounts can now have up to 1,000 Log [Monitors](/docs/ale
New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [SentinelOne Mgmt API Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/sentinelone-mgmt-api-source) collects data from the SentinelOne Management Console.
-Update - The [Mimecast Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/mimecast-source "Mimecast Source"), in addition to SIEM data, now supports collecting DLP, Audit, and Hold Message List data from the [Mimecast API](https://www.mimecast.com/tech-connect/documentation).
+Update - The [Mimecast Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/mimecast-source), in addition to SIEM data, now supports collecting DLP, Audit, and Hold Message List data from the [Mimecast API](https://www.mimecast.com/tech-connect/documentation).
---
## October 27, 2021 (Traces)
@@ -81,23 +81,23 @@ New - Build custom Dashboards with [new panels](/docs/apm/services-list-map) t
---
## October 27, 2021 (Apps)
-New - We are excited to release the Sumo Logic [GitLab](/docs/integrations/app-development/gitlab "GitLab") app. The GitLab app allows you to can gain insights into the health of builds, deployments, pull requests, commits, and more to quickly understand which teams and processes need help to increase velocity and quality.
+New - We are excited to release the Sumo Logic [GitLab](/docs/integrations/app-development/gitlab) app. The GitLab app allows you to can gain insights into the health of builds, deployments, pull requests, commits, and more to quickly understand which teams and processes need help to increase velocity and quality.
-New - We are excited to release the Sumo Logic [Host and Process Metrics](/docs/integrations/hosts-operating-systems/host-process-metrics "Host and Process Metrics") app. The Sumo Logic App for Host and Process Metrics allows you to monitor the performance and resource utilization of hosts and processes that your mission critical applications are dependent upon. Preconfigured dashboards provide insight into CPU, memory, network, file descriptors, page faults, and TCP connectors. This app uses Telegraf, an open-source, plugin-based collector for the collection of both host and process metrics data.
+New - We are excited to release the Sumo Logic [Host and Process Metrics](/docs/integrations/hosts-operating-systems/host-process-metrics) app. The Sumo Logic App for Host and Process Metrics allows you to monitor the performance and resource utilization of hosts and processes that your mission critical applications are dependent upon. Preconfigured dashboards provide insight into CPU, memory, network, file descriptors, page faults, and TCP connectors. This app uses Telegraf, an open-source, plugin-based collector for the collection of both host and process metrics data.
-Update - We are delighted to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic app for Istio. The Sumo Logic App for [Istio](/docs/integrations/saas-cloud/istio "Istio") provides visibility into the health and performance of Istio and its control plane components, including Mixer, Galley, Citadel, Pilot, and Envoy. The app dashboards also allow you to monitor how services and applications are performing in Istio Mesh, providing insights into service latency, errors, network traffic, and request workloads.
+Update - We are delighted to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic app for Istio. The Sumo Logic App for [Istio](/docs/integrations/saas-cloud/istio) provides visibility into the health and performance of Istio and its control plane components, including Mixer, Galley, Citadel, Pilot, and Envoy. The app dashboards also allow you to monitor how services and applications are performing in Istio Mesh, providing insights into service latency, errors, network traffic, and request workloads.
-Update - We are pleased to release the additional Logs and Metrics dashboards added for the Sumo Logic app for HAProxy. [HAProxy](/docs/integrations/web-servers/haproxy "HAProxy") is a unified logs and metrics app that helps you monitor the availability, performance, and health of your HAProxy cluster. Preconfigured dashboards provide insights into active servers, visitor locations, sessions, errors, response time, and throughput.
+Update - We are pleased to release the additional Logs and Metrics dashboards added for the Sumo Logic app for HAProxy. [HAProxy](/docs/integrations/web-servers/haproxy) is a unified logs and metrics app that helps you monitor the availability, performance, and health of your HAProxy cluster. Preconfigured dashboards provide insights into active servers, visitor locations, sessions, errors, response time, and throughput.
-Update - We are happy to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic Cassandra app. The Apache [Cassandra](/docs/integrations/databases/cassandra "Cassandra") is an open source NoSQL distributed database with high scalability and availability without compromising performance.
+Update - We are happy to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic Cassandra app. The Apache [Cassandra](/docs/integrations/databases/cassandra) is an open source NoSQL distributed database with high scalability and availability without compromising performance.
-Update - We are delighted to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic Elasticsearch app. The [Elasticsearch](/docs/integrations/databases/elasticsearch "Elasticsearch") app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your Elasticsearch clusters. Preconfigured dashboards provide insight into cluster health, resource utilization, sharding, garbage collection, and search, index, and cache performance.
+Update - We are delighted to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic Elasticsearch app. The [Elasticsearch](/docs/integrations/databases/elasticsearch) app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your Elasticsearch clusters. Preconfigured dashboards provide insight into cluster health, resource utilization, sharding, garbage collection, and search, index, and cache performance.
-Update - We are excited to release the additional Logs and Metrics dashboards added for the Sumo Logic Memcached app. The [Memcached](/docs/integrations/databases/memcached "Memcached") app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your Memcached clusters. Preconfigured dashboards provide insight into uptime, operational metrics, cache performance, resource utilization, errors, warnings, and commands executed.
+Update - We are excited to release the additional Logs and Metrics dashboards added for the Sumo Logic Memcached app. The [Memcached](/docs/integrations/databases/memcached) app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your Memcached clusters. Preconfigured dashboards provide insight into uptime, operational metrics, cache performance, resource utilization, errors, warnings, and commands executed.
-Update - We are pleased to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic ActiveMQ app. The [ActiveMQ](/docs/integrations/containers-orchestration/activemq "ActiveMQ") app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your ActiveMQ messaging clusters. Preconfigured dashboards provide insight into cluster status, nodes, producers, consumers, destinations, resource utilization, message rates, and error logs.
+Update - We are pleased to announce the availability of additional Logs and Metrics dashboards added for the Sumo Logic ActiveMQ app. The [ActiveMQ](/docs/integrations/containers-orchestration/activemq) app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your ActiveMQ messaging clusters. Preconfigured dashboards provide insight into cluster status, nodes, producers, consumers, destinations, resource utilization, message rates, and error logs.
-Update - We are delighted to release the additional Logs and Metrics dashboards added for the Sumo Logic Akamai app. The [Akamai SIEM API Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/akamai-siem-api-source "Akamai SIEM API Source") provides a secure endpoint to receive security events generated on the Akamai platform by leveraging the [V1 SIEM API](https://developer.akamai.com/api/cloud_security/siem/v1.html). It securely stores the required authentication, scheduling, and state tracking information.
+Update - We are delighted to release the additional Logs and Metrics dashboards added for the Sumo Logic Akamai app. The [Akamai SIEM API Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/akamai-siem-api-source) provides a secure endpoint to receive security events generated on the Akamai platform by leveraging the [V1 SIEM API](https://developer.akamai.com/api/cloud_security/siem/v1.html). It securely stores the required authentication, scheduling, and state tracking information.
---
## October 14, 2021 (Traces)
@@ -107,7 +107,7 @@ New - Operation level health metrics describe performance and availability on th
---
## October 6, 2021 (Collection)
-Update - The [Symantec Web Security Service Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/symantec-web-security-service-source "Symantec Web Security Service Source") now always uses structured logs to reduce errors and improve collection performance.
+Update - The [Symantec Web Security Service Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/symantec-web-security-service-source) now always uses structured logs to reduce errors and improve collection performance.
---
## September 30, 2021 (Traces)
@@ -117,7 +117,7 @@ New - Lambda instrumentation for [Java](/docs/apm/traces/get-started-transactio
---
## September 28, 2021 (Monitors)
-New - Troubleshooting production issues is even more challenging with modern distributed applications. With our new [alert response](/docs/alerts/monitors/alert-response "Alert Response") feature, your on-call teams can now also leverage curated insights that will help them get to the root cause quickly. The feature generates relevant insights as a context card using Sumo analytics to track what's occurring in your applications, helping your teams troubleshoot faster.
+New - Troubleshooting production issues is even more challenging with modern distributed applications. With our new [alert response](/docs/alerts/monitors/alert-response) feature, your on-call teams can now also leverage curated insights that will help them get to the root cause quickly. The feature generates relevant insights as a context card using Sumo analytics to track what's occurring in your applications, helping your teams troubleshoot faster.
---
## September 27, 2021 (Dashboard)
@@ -132,7 +132,7 @@ Update - The AWS Observability Solution 2.3.0 release includes the deployment of
---
## September 22, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Cybereason Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cybereason-source "Cybereason Source") provides a secure endpoint to receive authentication logs from the Cybereason [Malops API](https://nest.cybereason.com/documentation/api-documentation/all-versions/retrieve-all-malops-all-types#getmalopsmalware).
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Cybereason Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cybereason-source) provides a secure endpoint to receive authentication logs from the Cybereason [Malops API](https://nest.cybereason.com/documentation/api-documentation/all-versions/retrieve-all-malops-all-types#getmalopsmalware).
---
## September 20, 2021 (Manage)
@@ -142,12 +142,12 @@ New - You can now [forward aggregate data from a Scheduled View to AWS S3](/do
---
## September 15, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Proofpoint On Demand Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/proofpoint-on-demand-source "Proofpoint On Demand Source") collects data from the Proofpoint on Demand (PoD) Log Service.
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Proofpoint On Demand Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/proofpoint-on-demand-source) collects data from the Proofpoint on Demand (PoD) Log Service.
---
## September 14, 2021 (Search)
-New - Search now provides [Basic Mode](/docs/search/get-started-with-search/search-page/search-modes "Search Modes"), an easy-to-use, structured query builder to help you write and complete simple log searches quickly and easily. This mode is designed for new users that are not familiar with Sumo Logic search features and query language.
+New - Search now provides [Basic Mode](/docs/search/get-started-with-search/search-page/search-modes), an easy-to-use, structured query builder to help you write and complete simple log searches quickly and easily. This mode is designed for new users that are not familiar with Sumo Logic search features and query language.
---
## September 9, 2021 (Collection)
@@ -157,7 +157,7 @@ Update - The [AWS S3 Source](/docs/send-data/hosted-collectors/amazon-aws/aws-s
---
## September 7, 2021 (Search)
-New - Search has several improvements to give you a cleaner experience. We've moved the search options to a menu and changed the look of search settings. See [how to use the search page](/docs/search/get-started-with-search/search-page "How to Use the Search Page") for details on the new layout.
+New - Search has several improvements to give you a cleaner experience. We've moved the search options to a menu and changed the look of search settings. See [how to use the search page](/docs/search/get-started-with-search/search-page) for details on the new layout.
---
## September 1, 2021 (Alerts)
@@ -208,7 +208,7 @@ New - We are excited to release the Sumo Logic [AWS WAF - Cloud Security Monito
Update- We've improved the collection performance of our Mimecast and Netskope Sources.
-- The [Mimecast Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/mimecast-source "Mimecast Source") now uses the API compression option to increase the throughput.
+- The [Mimecast Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/mimecast-source) now uses the API compression option to increase the throughput.
- The [Netskope Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/netskope-source) now implements new API best practices.
---
@@ -225,7 +225,7 @@ This gives you an unprecedented view of how your end users are interacting with
---
## August 16, 2021-16 (Manage)
-Update - We are delighted to announce the availability of enhanced search functionality for searching across all Data Tiers: Continuous, Frequent, and Infrequent. Now, you can use the `_dataTier` search modifier to search all Data Tiers (`_dataTier=all`) in a single query. Or, you can search for data in multiple indexes in just the tiers you're interested in. With this improvement, you can manage costs by retaining your rarely queried data in the Infrequent Tier, and know it's just a query away. For more information, see [Searching Data Tiers](/docs/manage/partitions/data-tiers/searching-data-tiers "Searching Data Tiers").
+Update - We are delighted to announce the availability of enhanced search functionality for searching across all Data Tiers: Continuous, Frequent, and Infrequent. Now, you can use the `_dataTier` search modifier to search all Data Tiers (`_dataTier=all`) in a single query. Or, you can search for data in multiple indexes in just the tiers you're interested in. With this improvement, you can manage costs by retaining your rarely queried data in the Infrequent Tier, and know it's just a query away. For more information, see [Searching Data Tiers](/docs/manage/partitions/data-tiers/searching-data-tiers).
---
## August 12, 2021 (Traces)
@@ -235,7 +235,7 @@ New - We are excited to introduce a new [Span Analytics](/docs/apm/spans) exp
---
## August 12, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Carbon Black Inventory Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/carbon-black-inventory-source) provides a secure endpoint to receive data from the [CB Devices API](https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/devices-api/ "https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/devices-api/").
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Carbon Black Inventory Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/carbon-black-inventory-source) provides a secure endpoint to receive data from the [CB Devices API](https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/devices-api).
---
## August 12, 2021 (Security)
@@ -264,12 +264,12 @@ Update - We have updated the Sumo Logic [Varnish](/docs/integrations/web-serve
---
## August 9, 2021 (Manage)
-Coming Soon - We're happy to announce that on **August 23, 2021,** Sumo Logic will roll out a new Service Status Page with an enhanced look and feel. You can preview that page [here](http://new-status.sumologic.com/ "http://new-status.sumologic.com") but there is no action to take at this time. In about two weeks we will switch [status.sumologic.com](http://status.sumologic.com/) to the new page.
+Coming Soon - We're happy to announce that on **August 23, 2021,** Sumo Logic will roll out a new Service Status Page with an enhanced look and feel. You can preview that page [here](http://new-status.sumologic.com) but there is no action to take at this time. In about two weeks we will switch [status.sumologic.com](http://status.sumologic.com/) to the new page.
---
## August 6, 2021 (Search)
-New - The [Search Query Language](/docs/search/search-query-language "Search Query Language") has a new operator, [isReservedIP](/docs/search/search-query-language/search-operators/isreservedip "isReservedIP") checks if an IPv4 address is reserved as defined by [RFC 5735](https://tools.ietf.org/html/rfc5735 "https://tools.ietf.org/html/rfc5735") and returns a boolean.
+New - The [Search Query Language](/docs/search/search-query-language) has a new operator, [isReservedIP](/docs/search/search-query-language/search-operators/isreservedip) checks if an IPv4 address is reserved as defined by [RFC 5735](https://tools.ietf.org/html/rfc5735) and returns a boolean.
---
## August 1, 2021 (Apps)
@@ -284,7 +284,7 @@ Update - We've updated the [Apache Tomcat](/docs/integrations/web-servers/apach
---
## July 3, 2021 (Apps)
-New - We are excited to announce the release of [ActiveMQ](/docs/integrations/containers-orchestration/activemq "ActiveMQ") app. The ActiveMQ app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your ActiveMQ messaging clusters. Preconfigured dashboards provide insight into cluster status, nodes, producers, consumers, destinations, resource utilization, message rates and error logs.
+New - We are excited to announce the release of [ActiveMQ](/docs/integrations/containers-orchestration/activemq) app. The ActiveMQ app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your ActiveMQ messaging clusters. Preconfigured dashboards provide insight into cluster status, nodes, producers, consumers, destinations, resource utilization, message rates and error logs.
---
## July 1, 2021 (Collection)
@@ -301,7 +301,7 @@ For more information, see [Generate Cloud SIEM Signals With a Scheduled Search]
---
## June 30, 2021 (Search)
-New - The [Search Query Language](/docs/search/search-query-language "Search Query Language") has two new operators.
+New - The [Search Query Language](/docs/search/search-query-language) has two new operators.
- [isNaN](/docs/search/search-query-language/math-expressions/isnan-isinfinity) returns true if a string value is not a number, false otherwise.
- [isInfinity](/docs/search/search-query-language/math-expressions/isnan-isinfinity) returns true if a string value is a positive or negative infinity, false otherwise.
@@ -309,7 +309,7 @@ New - The [Search Query Language](/docs/search/search-query-language "Search Q
---
## June 29, 2021 (Apps)
-New - We are happy to announce the release of [RabbitMQ](/docs/integrations/containers-orchestration/rabbitmq "RabbitMQ") app. The Sumo Logic App for RabbitMQ app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your RabbitMQ messaging clusters. Preconfigured dashboards provide insight into cluster status, exchanges, queues, nodes and error logs.
+New - We are happy to announce the release of [RabbitMQ](/docs/integrations/containers-orchestration/rabbitmq) app. The Sumo Logic App for RabbitMQ app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your RabbitMQ messaging clusters. Preconfigured dashboards provide insight into cluster status, exchanges, queues, nodes and error logs.
---
## June 28, 2021 (Dashboard)
@@ -329,7 +329,7 @@ Update - You can set [custom filters](/docs/apm/traces/view-and-investigate-tr
---
## June 23, 2021 (Apps)
-New - We are excited to announce the release of [Zscaler Internet Access (ZIA)](/docs/integrations/security-threat-detection/zscaler-internet-access "Zscaler Internet Access") app. The Sumo Logic App for ZIA collects logs via Cloud Nanolog Streaming Service (NSS) to populate pre-configured searches and Dashboards in order to visualize and provide insight into threats, DNS, web traffic behaviors, security, user browsing activities, and risk.
+New - We are excited to announce the release of [Zscaler Internet Access (ZIA)](/docs/integrations/security-threat-detection/zscaler-internet-access) app. The Sumo Logic App for ZIA collects logs via Cloud Nanolog Streaming Service (NSS) to populate pre-configured searches and Dashboards in order to visualize and provide insight into threats, DNS, web traffic behaviors, security, user browsing activities, and risk.
---
## June 22, 2021 (Collection)
@@ -339,14 +339,14 @@ New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collec
---
## June 20, 2021 (Apps)
-New - We are proud to release the Sumo Logic [Nginx Plus Ingress](/docs/integrations/web-servers/nginx-plus-ingress "Nginx Plus Ingress") app. The app is a unified logs and metrics app that helps you monitor the availability, performance, health and resource utilization of your Nginx Plus Ingress web servers. Preconfigured dashboards and searches provide insight into server status, location zones, server zones, upstreams, resolvers, visitor locations, visitor access types, traffic patterns, errors, web server operations and access from known malicious sources.
+New - We are proud to release the Sumo Logic [Nginx Plus Ingress](/docs/integrations/web-servers/nginx-plus-ingress) app. The app is a unified logs and metrics app that helps you monitor the availability, performance, health and resource utilization of your Nginx Plus Ingress web servers. Preconfigured dashboards and searches provide insight into server status, location zones, server zones, upstreams, resolvers, visitor locations, visitor access types, traffic patterns, errors, web server operations and access from known malicious sources.
New - We are also excited to announce the release of the [Global Intelligence for Apache Tomcat](/docs/integrations/global-intelligence/apache-tomcat) App. The App is a companion to the Apache Tomcat application and helps DevOps and infrastructure engineers compare server and user activity patterns associated with their Apache Tomcat servers against other Sumo Logic customer's servers. Such comparisons can help diagnose potential load, throughput or error issues in Apache Tomcat clusters and avoid operational incidents arising from sub-optimal configurations of Tomcat servers.
---
## June 18, 2021 (Collection)
-Update - The [Netskope Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/netskope-source "Netskope Source") provides the option to collect specific event types. Alert events are always collected.
+Update - The [Netskope Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/netskope-source) provides the option to collect specific event types. Alert events are always collected.
---
## June 18, 2021 (Search)
@@ -356,7 +356,7 @@ Update - The [ASN Lookup operator](/docs/search/search-query-language/search-op
---
## June 14, 2021 (Apps)
-New - We are proud to release the Sumo Logic [Cassandra](/docs/integrations/databases/cassandra "Cassandra") app. The Apache Cassandra is an open source NoSQL distributed database with high scalability and availability without compromising performance.
+New - We are proud to release the Sumo Logic [Cassandra](/docs/integrations/databases/cassandra) app. The Apache Cassandra is an open source NoSQL distributed database with high scalability and availability without compromising performance.
---
## June 11, 2021 (Apps)
@@ -366,12 +366,12 @@ New - We are excited to announce the launch of the Security Monitoring & Analyti
---
## June 10, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework "Cloud-to-Cloud Integration Framework") has another new Source: that's two this week! The [Symantec Web Security Service (WSS)](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/symantec-web-security-service-source "Symantec Web Security Service Source") source provides a secure endpoint to ingest Symantec Web Security Services Access Logs. Symantec Web Security Service delivers a broad set of advanced cloud-delivered network security capabilities. With this new integration, Security customers can take advantage of the rich set of security information available from the WSS Access Logs.
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has another new Source: that's two this week! The [Symantec Web Security Service (WSS)](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/symantec-web-security-service-source) source provides a secure endpoint to ingest Symantec Web Security Services Access Logs. Symantec Web Security Service delivers a broad set of advanced cloud-delivered network security capabilities. With this new integration, Security customers can take advantage of the rich set of security information available from the WSS Access Logs.
---
## June 8, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework "Cloud-to-Cloud Integration Framework") has a new Source. The [Cloud SIEM AWS EC2 Inventory Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cse-aws-ec-inventory-source) provides a secure endpoint to ingest AWS EC2 inventory. Cloud SIEM users can forward this data to Cloud SIEM to provide more context to Entities.
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source. The [Cloud SIEM AWS EC2 Inventory Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cse-aws-ec-inventory-source) provides a secure endpoint to ingest AWS EC2 inventory. Cloud SIEM users can forward this data to Cloud SIEM to provide more context to Entities.
---
## June 7, 2021 (Apps)
@@ -383,12 +383,12 @@ Update - There is a new release for the [Microsoft SQL Server](/docs/integratio
---
## June 3, 2021 (Search)
-New - The [Search Query Language](/docs/search/search-query-language "Search Query Language") has a new operator, [values](/docs/search/search-query-language/group-aggregate-operators/values), that allows you to quickly determine all the values a field has.
+New - The [Search Query Language](/docs/search/search-query-language) has a new operator, [values](/docs/search/search-query-language/group-aggregate-operators/values), that allows you to quickly determine all the values a field has.
---
## June 2, 2021 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework "Cloud-to-Cloud Integration Framework") has a new Source, the [CrowdStrike Falcon Data Replicator (FDR) Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-fdr-source) provides a secure endpoint to ingest Falcon Data Replicator events using the S3 ingestion capability by consumed SQS notifications of new S3 objects.
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has a new Source, the [CrowdStrike Falcon Data Replicator (FDR) Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-fdr-source) provides a secure endpoint to ingest Falcon Data Replicator events using the S3 ingestion capability by consumed SQS notifications of new S3 objects.
Update - You can use a [Windows Event Source to collect forwarded events](/docs/send-data/installed-collectors/sources/collect-forwarded-events-windows-event-collector) from a [Windows Event Collector](https://docs.microsoft.com/en-us/windows/win32/wec/windows-event-collector).
@@ -400,18 +400,18 @@ Update - There is a new release for the [MongoDB](/docs/integrations/databases/
---
## June 1, 2021 (Search)
-New - We've added several new operators to our [Search Query Language](/docs/search/search-query-language "Search Query Language"):
+New - We've added several new operators to our [Search Query Language](/docs/search/search-query-language):
-- The [threatip operator](/docs/search/search-query-language/search-operators/threatip "threatip") correlates [CrowdStrike's](https://www.crowdstrike.com/sumologic/ "https://www.crowdstrike.com/sumologic/") threat intelligence data based on IP addresses from your log data, providing security analytics that helps you to detect threats in your environment, while also protecting against sophisticated and persistent cyber-attacks. This operator uses the same lookup as the [Threat Intel Quick Analysis App](/docs/integrations/security-threat-detection/threat-intel-quick-analysis) but is simplified for only IP threat lookups.
-- The [geoip operator](/docs/search/search-query-language/search-operators/geoip "geoip") provides geographical location data to create [Map Charts](/docs/dashboards/panels/map-charts "Map Charts"). This operator provides the same data as a [Geo Lookup](/docs/search/search-query-language/search-operators/geo-lookup-map) operation with a simpler syntax.
-- The [merge operator](/docs/search/search-query-language/transaction-analytics/merge-operator "Merge Operator") has a new strategy, `takeDistinct`, that allows you to identify only distinct values of a field.
+- The [threatip operator](/docs/search/search-query-language/search-operators/threatip) correlates [CrowdStrike's](https://www.crowdstrike.com/sumologic) threat intelligence data based on IP addresses from your log data, providing security analytics that helps you to detect threats in your environment, while also protecting against sophisticated and persistent cyber-attacks. This operator uses the same lookup as the [Threat Intel Quick Analysis App](/docs/integrations/security-threat-detection/threat-intel-quick-analysis) but is simplified for only IP threat lookups.
+- The [geoip operator](/docs/search/search-query-language/search-operators/geoip) provides geographical location data to create [Map Charts](/docs/dashboards/panels/map-charts). This operator provides the same data as a [Geo Lookup](/docs/search/search-query-language/search-operators/geo-lookup-map) operation with a simpler syntax.
+- The [merge operator](/docs/search/search-query-language/transaction-analytics/merge-operator) has a new strategy, `takeDistinct`, that allows you to identify only distinct values of a field.
---
## May 27, 2021 (Apps)
-New - We are excited to announce the launch of the [Zscaler Private Access](/docs/integrations/security-threat-detection/zscaler-private-access "Zscaler Private Access") App, which assists in collecting logs from Zscaler using the Log Streaming Service (LSS) to populate pre-configured searches and Dashboards. The dashboards also provide easy-to-access visual insights into user behaviors, security, connector status, and risk.
+New - We are excited to announce the launch of the [Zscaler Private Access](/docs/integrations/security-threat-detection/zscaler-private-access) App, which assists in collecting logs from Zscaler using the Log Streaming Service (LSS) to populate pre-configured searches and Dashboards. The dashboards also provide easy-to-access visual insights into user behaviors, security, connector status, and risk.
-Update - There is a new release for the [Apache](/docs/integrations/web-servers/apache "Apache") app. The app now helps you monitor the availability, performance, health and resource utilization of Apache web server farms. The pre-configured dashboards and searches provide insight into visitor locations, visitor access types, traffic patterns, errors, web server operations, resource utilization and access from known malicious sources.
+Update - There is a new release for the [Apache](/docs/integrations/web-servers/apache) app. The app now helps you monitor the availability, performance, health and resource utilization of Apache web server farms. The pre-configured dashboards and searches provide insight into visitor locations, visitor access types, traffic patterns, errors, web server operations, resource utilization and access from known malicious sources.
---
## May 26, 2021 (Metrics)
@@ -421,19 +421,19 @@ New - What's good for the logs is good for the metrics. That's why we're extend
---
## May 24, 2021 (Collection)
-New - The [Microsoft Graph Security API Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/microsoft-graph-security-api-source "Microsoft Graph Security API Source") provides a secure endpoint to receive alerts from the [Microsoft Graph](https://docs.microsoft.com/en-us/graph/overview) Security API endpoint.
+New - The [Microsoft Graph Security API Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/microsoft-graph-security-api-source) provides a secure endpoint to receive alerts from the [Microsoft Graph](https://docs.microsoft.com/en-us/graph/overview) Security API endpoint.
---
## May 20, 2021 (Traces)
-New - We are proud to release the support of the [Search Query Language for Traces](/docs/apm/traces/search-query-language-support-for-traces). This allows you to not only find and diagnose transaction traces that match any custom criteria, but also make advanced analysis on the top of trace span data using the [Search Query Language](/docs/search/search-query-language "Search Query Language"), the same way as for log data, in the same familiar interface.
+New - We are proud to release the support of the [Search Query Language for Traces](/docs/apm/traces/search-query-language-support-for-traces). This allows you to not only find and diagnose transaction traces that match any custom criteria, but also make advanced analysis on the top of trace span data using the [Search Query Language](/docs/search/search-query-language), the same way as for log data, in the same familiar interface.
This capability allows you to access raw tracing data on a span level, treat it as structured or unstructured data for analysis, and filter, transform, or aggregate any part of the tracing span message (a single atomic request/response representation) to deliver meaningful results to drive smarter decisions.
---
## May 17, 2021 (Apps)
-New - The Sumo Logic App for [HAProxy](/docs/integrations/web-servers/haproxy "HAProxy") is a unified logs and metrics app that helps you monitor the availability, performance, and health of your HAProxy cluster. Preconfigured dashboards provide insights into active servers, visitor locations, sessions, errors, response time, and throughput.
+New - The Sumo Logic App for [HAProxy](/docs/integrations/web-servers/haproxy) is a unified logs and metrics app that helps you monitor the availability, performance, and health of your HAProxy cluster. Preconfigured dashboards provide insights into active servers, visitor locations, sessions, errors, response time, and throughput.
---
## May 10, 2021 (Apps)
@@ -460,12 +460,12 @@ New - [Nucleon](/docs/integrations/partner-ecosystem-apps) is a distributed, h
**Workday App and Workday C2C source**
-New - We are very excited to release a new app for [Workday and C2C source](/docs/integrations/saas-cloud/workday "Workday"). The Workday app is built for IT and security teams to get insights into Workday related authentication activity, user activity, and administrator activity. These dashboards are tailored to highlight critical events for general security monitoring and compliance reporting. Collection of data is done via a cloud-native-collector that provides a secure endpoint to receive user and sign-on data via the Workday APIs.
+New - We are very excited to release a new app for [Workday and C2C source](/docs/integrations/saas-cloud/workday). The Workday app is built for IT and security teams to get insights into Workday related authentication activity, user activity, and administrator activity. These dashboards are tailored to highlight critical events for general security monitoring and compliance reporting. Collection of data is done via a cloud-native-collector that provides a secure endpoint to receive user and sign-on data via the Workday APIs.
---
## May 7, 2021 (Apps)
-New - The [Global Intelligence for Apache App](/docs/integrations/global-intelligence/apache "Global Intelligence for Apache") is a companion to the [Apache](/docs/integrations/web-servers/apache) App and helps DevOps and infrastructure engineers compare server and user activity patterns associated with their Apache servers against other Sumo Logic customer's servers. Such comparisons can help diagnose potential load, throughput, or error issues in Apache clusters and avoid operational incidents arising from sub-optimal configurations of Apache clusters.
+New - The [Global Intelligence for Apache App](/docs/integrations/global-intelligence/apache) is a companion to the [Apache](/docs/integrations/web-servers/apache) App and helps DevOps and infrastructure engineers compare server and user activity patterns associated with their Apache servers against other Sumo Logic customer's servers. Such comparisons can help diagnose potential load, throughput, or error issues in Apache clusters and avoid operational incidents arising from sub-optimal configurations of Apache clusters.
---
## May 4, 2021 (Manage)
@@ -533,7 +533,7 @@ New - The [Infrastructure tab](/docs/dashboards/drill-down-to-discover-root-ca
---
## April 15, 2021 (Alerts)
-New - [Log Search](/docs/search/get-started-with-search/search-page "How to Use the Search Page") and [Metrics Explorer](/docs/metrics/metrics-queries/metrics-explorer) now provide an option to add a [Monitor](/docs/alerts/monitors) based on your existing query.
+New - [Log Search](/docs/search/get-started-with-search/search-page) and [Metrics Explorer](/docs/metrics/metrics-queries/metrics-explorer) now provide an option to add a [Monitor](/docs/alerts/monitors) based on your existing query.
Update - You now have the ability to specify a location when [creating a new Monitor](/docs/alerts/monitors/create-monitor).
@@ -545,9 +545,9 @@ Planned deprecation - The muted monitors that were automatically migrated during
---
## April 13, 2021 (Security)
-Update - We've updated the UI for deleting a Sumo Logic user's account. The UI now provides an explicit option for deleting a user's content in addition to the user account. For more information, see [Delete a User](/docs/manage/users-roles/users/delete-user "Delete a User").
+Update - We've updated the UI for deleting a Sumo Logic user's account. The UI now provides an explicit option for deleting a user's content in addition to the user account. For more information, see [Delete a User](/docs/manage/users-roles/users/delete-user).
-Update - We've enhanced role search filters: now you can grant access to Scheduled Views and Partitions in a role search filter. For more information, see [Construct a Role Search Filter](/docs/manage/users-roles/roles/construct-search-filter-for-role "Construct a Search Filter for a Role").
+Update - We've enhanced role search filters: now you can grant access to Scheduled Views and Partitions in a role search filter. For more information, see [Construct a Role Search Filter](/docs/manage/users-roles/roles/construct-search-filter-for-role).
---
## April 13, 2021 (Search)
@@ -571,7 +571,7 @@ Update - The LogReduce operator now provides an [optimize option](/docs/search
---
## April 6, 2021 (Dashboard)
-Update - [Dashboard](/docs/dashboards) now supports [Dynamic Parsing](/docs/search/get-started-with-search/build-search/dynamic-parsing "Dynamic Parsing") and [Receipt Time](/docs/search/get-started-with-search/build-search). You can set the options under the [general settings](/docs/dashboards/panels/modify-chart) of a panel built to display log data.
+Update - [Dashboard](/docs/dashboards) now supports [Dynamic Parsing](/docs/search/get-started-with-search/build-search/dynamic-parsing) and [Receipt Time](/docs/search/get-started-with-search/build-search). You can set the options under the [general settings](/docs/dashboards/panels/modify-chart) of a panel built to display log data.
---
## April 1, 2021 (Alerts)
@@ -603,7 +603,7 @@ New - We're excited to announce our [Service Map and Dashboards](/docs/apm/serv
Read more about how our [Service Map & Dashboards Provide Insight into Health and Dependencies of Microservice Architecture](https://www.sumologic.com/blog/service-map-dashboards)
-Interested in training? [Register](https://sumologic.zoom.us/webinar/register/WN_f7w0mzdbQO-V1rcC06_nLw "https://sumologic.zoom.us/webinar/register/WN_f7w0mzdbQO-V1rcC06_nLw") for an Enhanced Tracing with Sumo Logic webinar on 3/25/21 from 9am-11am PST.
+Interested in training? [Register](https://sumologic.zoom.us/webinar/register/WN_f7w0mzdbQO-V1rcC06_nLw) for an Enhanced Tracing with Sumo Logic webinar on 3/25/21 from 9am-11am PST.
---
## March 22, 2021 (Metrics)
@@ -613,7 +613,7 @@ Planned deprecation - Round 1 of automatic migration is complete and the old mon
---
## March 16, 2021 (Manage)
-Update - [Scheduled View](/docs/manage/scheduled-views "Scheduled Views") queries now provide syntax highlighting and support multiple lines and [comments](/docs/search/get-started-with-search/search-basics/comments-search-queries "Comments in Search Queries").
+Update - [Scheduled View](/docs/manage/scheduled-views) queries now provide syntax highlighting and support multiple lines and [comments](/docs/search/get-started-with-search/search-basics/comments-search-queries).
---
## March 16, 2021 (Alerts)
@@ -629,12 +629,12 @@ Going forward, we will ensure that the records sent in the notification payload
---
## March 12, 2021-12 (Collection)
-New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework "Cloud-to-Cloud Integration Framework") has the following new Sources:
+New - Our [Cloud-to-Cloud Integration Framework](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework) has the following new Sources:
-- [Azure Event Hubs Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/azure-event-hubs-source "Azure Event Hubs Source")
-- [Carbon Black Cloud Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/carbon-black-cloud-source "Carbon Black Cloud Source")
-- [Duo Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/duo-source "Duo Source")
-- [Salesforce Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/salesforce-source "Salesforce Source")
+- [Azure Event Hubs Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/azure-event-hubs-source)
+- [Carbon Black Cloud Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/carbon-black-cloud-source)
+- [Duo Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/duo-source)
+- [Salesforce Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/salesforce-source)
---
## March 11, 2021 (Metrics)
@@ -723,7 +723,7 @@ Update - The Infrastructure tab now provides a [time option](/docs/dashboards/
---
## January 20, 2021 (Alerts)
-Update - When we released Monitors (our new alerting framework), we introduced new template variables to be used within Notifications for full customizability of what information is provided in the notification. We are pleased to announce that we are extending support of these [variables](/docs/alerts/monitors/alert-variables) to [Scheduled Searches](/docs/alerts/scheduled-searches "Scheduled Searches") and Metrics Monitors pages.
+Update - When we released Monitors (our new alerting framework), we introduced new template variables to be used within Notifications for full customizability of what information is provided in the notification. We are pleased to announce that we are extending support of these [variables](/docs/alerts/monitors/alert-variables) to [Scheduled Searches](/docs/alerts/scheduled-searches) and Metrics Monitors pages.
---
## January 15, 2021 (Dashboard)
diff --git a/docs/get-started/apps-integrations.md b/docs/get-started/apps-integrations.md
index 7b70e09405..e04e5c3b92 100644
--- a/docs/get-started/apps-integrations.md
+++ b/docs/get-started/apps-integrations.md
@@ -165,7 +165,7 @@ The **Search** page opens, the search populates a new tab, and the search runs
If you do not have data that matches the requirements of the search query, or if you select the incorrect Source Category or data filter, you will either get no results, or bad results.
:::note
-Searches included with the [Sumo Logic app for Data Volume](/docs/integrations/sumo-apps/data-volume "Data Volume app") do not require you to select a Source Category.
+Searches included with the [Sumo Logic app for Data Volume](/docs/integrations/sumo-apps/data-volume) do not require you to select a Source Category.
:::
## Custom data filters
diff --git a/docs/platform-services/automation-service/app-central/integrations/atlassian-jira-v2.md b/docs/platform-services/automation-service/app-central/integrations/atlassian-jira-v2.md
index 923674d5d5..6d1def99e5 100644
--- a/docs/platform-services/automation-service/app-central/integrations/atlassian-jira-v2.md
+++ b/docs/platform-services/automation-service/app-central/integrations/atlassian-jira-v2.md
@@ -92,7 +92,7 @@ import AccessKey from '../../../../reuse/automation-service/access-key.md';
-For information about Atlassian Jira, see [Jira documentation]( https://confluence.atlassian.com/jira). For the REST API v2, see the [REST API v2 documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/).
+For information about Atlassian Jira, see [Jira documentation](https://confluence.atlassian.com/jira). For the REST API v2, see the [REST API v2 documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/).
## Category
diff --git a/docs/platform-services/automation-service/app-central/integrations/atlassian-jira.md b/docs/platform-services/automation-service/app-central/integrations/atlassian-jira.md
index 088dfcecd4..a01800ea16 100644
--- a/docs/platform-services/automation-service/app-central/integrations/atlassian-jira.md
+++ b/docs/platform-services/automation-service/app-central/integrations/atlassian-jira.md
@@ -66,7 +66,7 @@ import AccessKey from '../../../../reuse/automation-service/access-key.md';
-For information about Atlassian Jira, see [Jira documentation]( https://confluence.atlassian.com/jira).
+For information about Atlassian Jira, see [Jira documentation](https://confluence.atlassian.com/jira).
## Change Log
diff --git a/docs/search/get-started-with-search/search-basics/search-autocomplete.md b/docs/search/get-started-with-search/search-basics/search-autocomplete.md
index 63091145e5..f3337f2d2b 100644
--- a/docs/search/get-started-with-search/search-basics/search-autocomplete.md
+++ b/docs/search/get-started-with-search/search-basics/search-autocomplete.md
@@ -10,7 +10,7 @@ On the **Search** page, as you begin typing to enter a query in the search tex
RBAC limitations prevent you from seeing options that you are not permitted to see.
-In the first part of a query, search autocomplete suggests common default queries, keywords, and [metadata](built-in-metadata.md "Search Metadata") terms. It also offers the names of Collectors, Sources, and Partitions, which are automatically configured in your system when you create them.
+In the first part of a query, search autocomplete suggests common default queries, keywords, and [metadata](built-in-metadata.md) terms. It also offers the names of Collectors, Sources, and Partitions, which are automatically configured in your system when you create them.

diff --git a/docs/send-data/hosted-collectors/http-source/logs-metrics/index.md b/docs/send-data/hosted-collectors/http-source/logs-metrics/index.md
index faf79cf638..a30c2bd22c 100644
--- a/docs/send-data/hosted-collectors/http-source/logs-metrics/index.md
+++ b/docs/send-data/hosted-collectors/http-source/logs-metrics/index.md
@@ -25,7 +25,7 @@ As a best practice, Sumo Logic recommends batching data into each POST request t
To configure an HTTP Logs and Metrics Source:
-1. [**New UI**](/docs/get-started/sumo-logic-ui). In the Sumo Logic main menu select **Data Management**, and then under **Data Collection** select **Collection**. You can also click the **Go To...** menu at the top of the screen and select **Collection**.
[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Manage Data > Collection > Collection**.
+1. [**New UI**](/docs/get-started/sumo-logic-ui). In the Sumo Logic main menu select **Data Management**, and then under **Data Collection** select **Collection**. You can also click the **Go To...** menu at the top of the screen and select **Collection**.
[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Manage Data > Collection > Collection**.
1. In the Collectors page, click **Add Source** next to a Hosted Collector.
1. Select **HTTP Logs & Metrics**.
1. Enter a **Name** to display for the Source in the Sumo web application. Description is optional.
@@ -33,7 +33,7 @@ To configure an HTTP Logs and Metrics Source:
1. **Forward to SIEM**. This option is present if [Cloud SIEM](/docs/cse/) is enabled. Click the checkbox to send the logs collected by the source to Cloud SIEM.
1. **Fields/Metadata.** Click the **+Add** link to define the fields you want to associate. Each field needs a name (key) and value.
*
A green circle with a check mark is shown when the field exists and is enabled in the Fields table schema.
- *
An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, you'll see an option to automatically add or enable the nonexistent fields to the Fields table schema. If a field is sent to Sumo Logic but isn’t present or enabled in the schema, it’s ignored and marked as **Dropped**.
+ *
An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, you'll see an option to automatically add or enable the nonexistent fields to the Fields table schema. If a field is sent to Sumo Logic but isn’t present or enabled in the schema, it’s ignored and marked as **Dropped**.
1. **Advanced Options for Logs.** Advanced options do *not* apply to uploaded metrics.
* **Timestamp Parsing.** This option is selected by default. If it's deselected, no timestamp information is parsed at all.
* **Time Zone.** There are two options for Time Zone. You can use the time zone present in your log files, and then choose an option in case time zone information is missing from a log message. Or, you can have Sumo Logic completely disregard any time zone information present in logs by forcing a time zone. It's very important to have the proper time zone set, no matter which option you choose. If the time zone of logs cannot be determined, Sumo Logic assigns logs UTC; if the rest of your logs are from another time zone your search results will be affected.
@@ -79,7 +79,7 @@ Below are the key benefits that you can obtain by sending compressed data:
- **Faster message delivery**. Improved efficiency ensures messages are received more quickly at Sumo Logic.
:::important
-- Compressed data can only be sent with the POST method.
+- Compressed data can only be sent with the POST method.
- Compressed files are decompressed before they are ingested, so they are ingested at the decompressed file size rate.
:::
@@ -105,6 +105,6 @@ Also, in your HTTP Source configuration, make sure that the check box **Enable O
Sumo expects that the entire content of an individual log message will be sent to Sumo within the same HTTP request. Multiline processing rules are only applied within the bounds of the data sent within a single HTTP request. This means that a multiline log that is sent to Sumo across multiple HTTP requests will not be detected as a single message. It will be broken into separate log messages. Sumo does not currently have the ability to detect and thread together a distinct log message that has been sent via multiple HTTP requests.
-For tools to help you batch messages, see [Sumo Logic .NET Appenders]( https://github.com/SumoLogic/sumologic-net-appenders).
+For tools to help you batch messages, see [Sumo Logic .NET Appenders](https://github.com/SumoLogic/sumologic-net-appenders).
For details on how the Collector processes multiline logs, see [Collecting Multiline Logs](/docs/send-data/reference-information/collect-multiline-logs).