From 15afb7cf01b4d9e317292c6768d6e839270f039b Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Sun, 10 Nov 2024 22:36:01 -0800 Subject: [PATCH 01/25] Berry widget demo env --- src/pages/index.tsx | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 4fa5bd335c..a20e636034 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react'; +import React, { useEffect, useState } from 'react'; import Layout from '@theme/Layout'; import { Box, Button, Container, Grid, Stack, Tab, Tabs, Typography } from '@mui/material'; import { TabContext, TabPanel } from '@mui/lab'; @@ -12,6 +12,29 @@ import ErrorBoundary from '../components/ErrorBoundary'; // Import the ErrorBoun export const Home = () => { const [tab, setTab] = useState('0'); + useEffect(() => { + // Load the Berry widget script only if it hasn’t already been loaded + if (!document.getElementById('berry-widget-script')) { + const script = document.createElement('script'); + script.id = 'berry-widget-script'; + script.type = 'text/javascript'; + script.src = 'https://www.berryapp.io/js/berry-widget.min.js'; + document.head.appendChild(script); + + script.onload = () => { + const widgetJwt = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MjU5NDg5MTcsImV4cCI6MTc0MTYwODkxNywiYXVkIjoiV2lkZ2V0SW5pdGlhbGl6YXRpb24iLCJvcmdhbml6YXRpb25JZCI6NjN9.oJEGkGq1q3uFD66J916f_ZBrqQjPHP9orUOKFxInG38'; + window.Berry.init({ + token: widgetJwt, + primaryColor: '#021b9a', + position: { side: 'right', offsetX: 25, offsetY: 100 }, + isOpenByDefault: false, + botUrlPath: 'nova', + showNewChat: true, + }); + }; + } + }, []); + return ( Date: Mon, 11 Nov 2024 00:40:24 -0800 Subject: [PATCH 02/25] staging --- .github/workflows/pr.yml | 37 ++++++++++++++----------------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c36fb9ff9a..e2646ddecf 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,29 +9,20 @@ on: - checks_requested jobs: - build-and-deploy: - runs-on: ubuntu-22.04 - env: - CI: true - NODE_ENV: production - steps: - - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '20.x' - cache: 'yarn' - - name: Docusaurus Webpack cache - uses: actions/cache@v3 - with: - path: node_modules/.cache - key: ${{ runner.os }}-webpack-cache - - name: Install dependencies - run: yarn install --frozen-lockfile - - name: Build the Docusaurus site - env: - NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192" - run: yarn build + deploy-to-review: + uses: SumoLogic/sumologic-documentation/.github/workflows/build_and_deploy.yml@main + with: + hostname: https://d2t1s0ah22jxsa.cloudfront.net + base_url: /${{ github.ref_name }}/ + environment: review/${{ github.ref_name }} + secrets: + S3_BUCKET_NAME: ${{ secrets.REVIEW_S3_BUCKET_NAME }} + CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.REVIEW_CLOUDFRONT_DISTRIBUTION_ID }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + spellcheck: + runs-on: ubuntu-latest + steps: spellcheck: runs-on: ubuntu-latest steps: From a075f6af60557be43c3312b6823dc0b3e280c075 Mon Sep 17 00:00:00 2001 From: "Kim (Sumo Logic)" <56411016+kimsauce@users.noreply.github.com> Date: Mon, 11 Nov 2024 00:47:30 -0800 Subject: [PATCH 03/25] Update .github/workflows/pr.yml --- .github/workflows/pr.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e2646ddecf..49838640df 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -20,9 +20,6 @@ jobs: CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.REVIEW_CLOUDFRONT_DISTRIBUTION_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - spellcheck: - runs-on: ubuntu-latest - steps: spellcheck: runs-on: ubuntu-latest steps: From 9248750b29f0134b35b5c023bee2dd41dc2b71d1 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Mon, 11 Nov 2024 00:54:27 -0800 Subject: [PATCH 04/25] edits --- .github/workflows/pr.yml | 37 ++++++++++++++++++++++-------------- .github/workflows/review.yml | 16 ++++++++++++++++ 2 files changed, 39 insertions(+), 14 deletions(-) create mode 100644 .github/workflows/review.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e2646ddecf..c36fb9ff9a 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,20 +9,29 @@ on: - checks_requested jobs: - deploy-to-review: - uses: SumoLogic/sumologic-documentation/.github/workflows/build_and_deploy.yml@main - with: - hostname: https://d2t1s0ah22jxsa.cloudfront.net - base_url: /${{ github.ref_name }}/ - environment: review/${{ github.ref_name }} - secrets: - S3_BUCKET_NAME: ${{ secrets.REVIEW_S3_BUCKET_NAME }} - CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.REVIEW_CLOUDFRONT_DISTRIBUTION_ID }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - spellcheck: - runs-on: ubuntu-latest - steps: + build-and-deploy: + runs-on: ubuntu-22.04 + env: + CI: true + NODE_ENV: production + steps: + - uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20.x' + cache: 'yarn' + - name: Docusaurus Webpack cache + uses: actions/cache@v3 + with: + path: node_modules/.cache + key: ${{ runner.os }}-webpack-cache + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Build the Docusaurus site + env: + NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192" + run: yarn build spellcheck: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml new file mode 100644 index 0000000000..bb9610b7a2 --- /dev/null +++ b/.github/workflows/review.yml @@ -0,0 +1,16 @@ +name: deploy-to-review + +on: workflow_dispatch + +jobs: + deploy-to-review: + uses: SumoLogic/sumologic-documentation/.github/workflows/build_and_deploy.yml@main + with: + hostname: https://d2t1s0ah22jxsa.cloudfront.net + base_url: /${{ github.ref_name }}/ + environment: review/${{ github.ref_name }} + secrets: + S3_BUCKET_NAME: ${{ secrets.REVIEW_S3_BUCKET_NAME }} + CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.REVIEW_CLOUDFRONT_DISTRIBUTION_ID }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} From 5f5b9180f4b56d0b4f6a45039c996d1069749d96 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Mon, 11 Nov 2024 00:58:36 -0800 Subject: [PATCH 05/25] fix --- .github/workflows/pr.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c36fb9ff9a..04901beabe 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -32,6 +32,17 @@ jobs: env: NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192" run: yarn build + deploy-to-review: + uses: SumoLogic/sumologic-documentation/.github/workflows/build_and_deploy.yml@main + with: + hostname: https://d2t1s0ah22jxsa.cloudfront.net + base_url: /${{ github.ref_name }}/ + environment: review/${{ github.ref_name }} + secrets: + S3_BUCKET_NAME: ${{ secrets.REVIEW_S3_BUCKET_NAME }} + CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.REVIEW_CLOUDFRONT_DISTRIBUTION_ID }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} spellcheck: runs-on: ubuntu-latest steps: From b7afc9488c30d1afaf6b9ec94d60363bfb9e5893 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Mon, 11 Nov 2024 11:55:41 -0800 Subject: [PATCH 06/25] fix link --- .../automation-service/app-central/integrations/imap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platform-services/automation-service/app-central/integrations/imap.md b/docs/platform-services/automation-service/app-central/integrations/imap.md index 90e973b1e4..3a74f2972d 100644 --- a/docs/platform-services/automation-service/app-central/integrations/imap.md +++ b/docs/platform-services/automation-service/app-central/integrations/imap.md @@ -158,7 +158,7 @@ The final playbook looks like this:
Date: Mon, 11 Nov 2024 19:40:08 -0800 Subject: [PATCH 07/25] Add suggested question prompts --- src/css/sumo.scss | 6 +++ src/pages/index.tsx | 128 +++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 128 insertions(+), 6 deletions(-) diff --git a/src/css/sumo.scss b/src/css/sumo.scss index 9f2a4c29e6..545a9bbbce 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -227,6 +227,12 @@ html[data-theme='light'] { min-width: 100px; } +/* Example: Force global styles back to normal */ +body, .MuiTypography-root, button, input, select, textarea { + font-family: 'Lab Grotesque', sans-serif !important; +} + + //GitHub icon .header-github-link:hover { opacity: 0.6; diff --git a/src/pages/index.tsx b/src/pages/index.tsx index a20e636034..ce860218bc 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from 'react'; +import React, { useState, useEffect } from 'react'; import Layout from '@theme/Layout'; import { Box, Button, Container, Grid, Stack, Tab, Tabs, Typography } from '@mui/material'; import { TabContext, TabPanel } from '@mui/lab'; @@ -7,18 +7,37 @@ import heroImage from '../../static/img/hero-secondary-graphic.webp'; import SumoLogicDocsLogo from '../../static/img/sumo-logic-docs.svg'; import { Feature } from '../components/Feature'; import { features } from '../helper/features'; -import ErrorBoundary from '../components/ErrorBoundary'; // Import the ErrorBoundary component +import ErrorBoundary from '../components/ErrorBoundary'; +import { SvgIcon } from '@mui/material'; + +const ChatIcon = (props) => ( + + + +); export const Home = () => { const [tab, setTab] = useState('0'); + const questions = [ + 'How can I set up alerts?', + 'What is real-time monitoring?', + 'How do I use dashboards?', + 'What types of logs can I analyze?', + 'How do I secure my environment?', + ]; + useEffect(() => { - // Load the Berry widget script only if it hasn’t already been loaded if (!document.getElementById('berry-widget-script')) { const script = document.createElement('script'); script.id = 'berry-widget-script'; - script.type = 'text/javascript'; script.src = 'https://www.berryapp.io/js/berry-widget.min.js'; + script.async = true; document.head.appendChild(script); script.onload = () => { @@ -31,10 +50,73 @@ export const Home = () => { botUrlPath: 'nova', showNewChat: true, }); + + // Inject dark mode styles as needed + applyDarkModeStyles(); }; + + script.onerror = () => console.error('Failed to load Berry widget script'); } + + // Inject dark mode styles on initial load + applyDarkModeStyles(); + + // Listen for theme change events if your site supports dynamic theme switching + window.addEventListener('themeChange', applyDarkModeStyles); + + return () => { + window.removeEventListener('themeChange', applyDarkModeStyles); + }; }, []); + const applyDarkModeStyles = () => { + const isDarkMode = document.body.getAttribute('data-theme') === 'dark'; + const styleId = 'dark-mode-styles'; + + // Remove existing dark mode styles to avoid duplicates + const existingStyle = document.getElementById(styleId); + if (existingStyle) existingStyle.remove(); + + // Apply dark mode styles only if in dark mode + if (isDarkMode) { + const style = document.createElement('style'); + style.id = styleId; + style.innerHTML = ` + body { + background-color: #121212 !important; + color: #ffffff !important; + } + a { + color: #90caf9 !important; + } + .MuiButton-outlined { + border-color: #90caf9 !important; + color: #90caf9 !important; + } + .MuiButton-outlined:hover { + background-color: #0045BE !important; + color: #ffffff !important; + } + .MuiTypography-root { + color: #ffffff !important; + } + /* Add more styles as necessary */ + `; + document.head.appendChild(style); + } + }; + + const handleQuestionClick = (question) => { + if (window.Berry) { + if (window.Berry.sendMessage) { + window.Berry.sendMessage(question); + } + if (window.Berry.open) { + window.Berry.open(); + } + } + }; + return ( { /> + {/* Suggested Questions */} + + + + Explore our new chatbot in the lower right corner! + + + Try asking these questions to get started: + + + {questions.map((question, index) => ( + + ))} + + + *Click on the chat icon in the bottom right if the chatbot does not open automatically. + + + + {/* Hero */} { {/* Main */} - {/* Product Guides */} { ))} - From 0d389075c76cd66b8b2e3abc5259a545a5b75cab Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Mon, 2 Dec 2024 14:51:34 -0800 Subject: [PATCH 08/25] undo --- src/pages/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ce860218bc..2082ee4696 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -324,6 +324,7 @@ export const Home = () => { {/* Main */} + {/* Product Guides */} { ))} +
From 40cd4186d6f035e5822631ae78e9eea06da8d85d Mon Sep 17 00:00:00 2001 From: "Kim (Sumo Logic)" <56411016+kimsauce@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:52:01 -0800 Subject: [PATCH 09/25] Update src/pages/index.tsx --- src/pages/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 2082ee4696..18085ade06 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -444,7 +444,6 @@ export const Home = () => { ))} - From c43d3bd2fb6832f8c8d615c707affc70752250bf Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Mon, 2 Dec 2024 14:52:46 -0800 Subject: [PATCH 10/25] undo --- src/pages/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ce860218bc..f4844a6d25 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -324,6 +324,7 @@ export const Home = () => { {/* Main */} + {/* Product Guides */} { ))} + From b21627f89c3a97879c72a64c529f0d84fe80890c Mon Sep 17 00:00:00 2001 From: "Kim (Sumo Logic)" <56411016+kimsauce@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:56:06 -0800 Subject: [PATCH 11/25] Update src/css/sumo.scss --- src/css/sumo.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/css/sumo.scss b/src/css/sumo.scss index 545a9bbbce..7f66e74d06 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -232,7 +232,6 @@ body, .MuiTypography-root, button, input, select, textarea { font-family: 'Lab Grotesque', sans-serif !important; } - //GitHub icon .header-github-link:hover { opacity: 0.6; From f22f1205c95438e89fb58c3cdec1bb431f71ed6c Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Sat, 28 Dec 2024 04:32:01 -0500 Subject: [PATCH 12/25] redesign --- docusaurus.config.js | 6 -- src/css/sumo.scss | 4 ++ src/pages/index.tsx | 136 ++++++++++++++++--------------------------- 3 files changed, 54 insertions(+), 92 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 0241273536..4b8cd1868b 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -271,12 +271,6 @@ module.exports = { return `https://github.com/SumoLogic/sumologic-documentation/issues/new?title=${query}`; }, }, - announcementBar: { - id: 'copilot', - content: 'Check out 🤖 Sumo Logic Copilot, our new AI-powered logs assistant!', - backgroundColor: '#D3BAF7', - textColor: '#000', - }, prism: { theme: lightCodeTheme, darkTheme: darkCodeTheme, diff --git a/src/css/sumo.scss b/src/css/sumo.scss index 7f66e74d06..a6f3b1b05e 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -232,6 +232,10 @@ body, .MuiTypography-root, button, input, select, textarea { font-family: 'Lab Grotesque', sans-serif !important; } +#inline-chatbot-container iframe { + height: 500px !important; +} + //GitHub icon .header-github-link:hover { opacity: 0.6; diff --git a/src/pages/index.tsx b/src/pages/index.tsx index f4844a6d25..a0bf8dce0a 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -25,11 +25,10 @@ export const Home = () => { const [tab, setTab] = useState('0'); const questions = [ - 'How can I set up alerts?', - 'What is real-time monitoring?', - 'How do I use dashboards?', - 'What types of logs can I analyze?', - 'How do I secure my environment?', + '✨ How do I set up alerts?', + '✨ What types of logs can I analyze?', + '✨ How do I secure my environment?', + '✨ How to navigate dashboards.' ]; useEffect(() => { @@ -46,66 +45,17 @@ export const Home = () => { token: widgetJwt, primaryColor: '#021b9a', position: { side: 'right', offsetX: 25, offsetY: 100 }, - isOpenByDefault: false, + isOpenByDefault: true, botUrlPath: 'nova', showNewChat: true, + parentElementId: 'inline-chatbot-container', }); - - // Inject dark mode styles as needed - applyDarkModeStyles(); }; script.onerror = () => console.error('Failed to load Berry widget script'); } - - // Inject dark mode styles on initial load - applyDarkModeStyles(); - - // Listen for theme change events if your site supports dynamic theme switching - window.addEventListener('themeChange', applyDarkModeStyles); - - return () => { - window.removeEventListener('themeChange', applyDarkModeStyles); - }; }, []); - const applyDarkModeStyles = () => { - const isDarkMode = document.body.getAttribute('data-theme') === 'dark'; - const styleId = 'dark-mode-styles'; - - // Remove existing dark mode styles to avoid duplicates - const existingStyle = document.getElementById(styleId); - if (existingStyle) existingStyle.remove(); - - // Apply dark mode styles only if in dark mode - if (isDarkMode) { - const style = document.createElement('style'); - style.id = styleId; - style.innerHTML = ` - body { - background-color: #121212 !important; - color: #ffffff !important; - } - a { - color: #90caf9 !important; - } - .MuiButton-outlined { - border-color: #90caf9 !important; - color: #90caf9 !important; - } - .MuiButton-outlined:hover { - background-color: #0045BE !important; - color: #ffffff !important; - } - .MuiTypography-root { - color: #ffffff !important; - } - /* Add more styles as necessary */ - `; - document.head.appendChild(style); - } - }; - const handleQuestionClick = (question) => { if (window.Berry) { if (window.Berry.sendMessage) { @@ -152,41 +102,55 @@ export const Home = () => { {/* Suggested Questions */} - + - - Explore our new chatbot in the lower right corner! - - - Try asking these questions to get started: + + Your Sumo Docs assistant is here to help! - - {questions.map((question, index) => ( - - ))} - - - *Click on the chat icon in the bottom right if the chatbot does not open automatically. + + Ask me a question! Try these to get started: + + + {questions.map((question, index) => ( + + ))} + + + {/* Inline Chatbot Container */} + + {/* The chatbot will render here */} + - {/* Hero */} Date: Fri, 3 Jan 2025 02:26:45 -0800 Subject: [PATCH 13/25] css fixes, add more Qs --- src/css/sumo.scss | 7 +++-- src/pages/index.tsx | 68 +++++++++++++-------------------------------- 2 files changed, 23 insertions(+), 52 deletions(-) diff --git a/src/css/sumo.scss b/src/css/sumo.scss index a6f3b1b05e..8fe20523e2 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -227,13 +227,14 @@ html[data-theme='light'] { min-width: 100px; } -/* Example: Force global styles back to normal */ +/* Berry CSS override to force global styles back to normal */ body, .MuiTypography-root, button, input, select, textarea { font-family: 'Lab Grotesque', sans-serif !important; } -#inline-chatbot-container iframe { - height: 500px !important; +/* Berry chatbot */ +#inline-berry-chatbot-container iframe { + height: 600px !important; } //GitHub icon diff --git a/src/pages/index.tsx b/src/pages/index.tsx index a0bf8dce0a..014c942251 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -8,27 +8,19 @@ import SumoLogicDocsLogo from '../../static/img/sumo-logic-docs.svg'; import { Feature } from '../components/Feature'; import { features } from '../helper/features'; import ErrorBoundary from '../components/ErrorBoundary'; -import { SvgIcon } from '@mui/material'; - -const ChatIcon = (props) => ( - - - -); export const Home = () => { const [tab, setTab] = useState('0'); const questions = [ - '✨ How do I set up alerts?', - '✨ What types of logs can I analyze?', - '✨ How do I secure my environment?', - '✨ How to navigate dashboards.' + '✨ timestamps', + '✨ how do you write a log search query?', + '✨ how do I set up alerts?', + '✨ what types of logs can I analyze?', + '✨ what is copilot?', + '✨ cloud siem', + '✨ how do I change my password?', + '✨ what is the parse operator?' ]; useEffect(() => { @@ -48,7 +40,7 @@ export const Home = () => { isOpenByDefault: true, botUrlPath: 'nova', showNewChat: true, - parentElementId: 'inline-chatbot-container', + parentElementId: 'inline-berry-chatbot-container', }); }; @@ -73,42 +65,20 @@ export const Home = () => { description='Sumo Logic docs - real-time alerting, security, dashboards, and machine-learning-powered analytics for all three types of telemetry — logs, metrics, and traces.' title='Home' > - {/* Header */} - - + {/* Suggested Questions */} + - - Your Sumo Docs assistant is here to help! + + Sumo Logic Documentation + + + Our Docs Assistant is here to help! - - Ask me a question! Try these to get started: + + Ask me anything! You can type full questions, sentences, or just keywords, and I'll help you find the information you need. Try these to get started: { {/* Inline Chatbot Container */} - + {/* The chatbot will render here */} From 3dfb3fdc10af0a42c91b3c1b0ef728c051149936 Mon Sep 17 00:00:00 2001 From: Viktor Nagy Date: Wed, 8 Jan 2025 16:37:03 +0100 Subject: [PATCH 14/25] install Berry popup on every page except on the home page --- src/components/Berry/index.tsx | 62 ++++++++++++++++++++++++++++++++++ src/pages/index.tsx | 30 ++-------------- src/theme/Root.tsx | 13 +++++++ 3 files changed, 77 insertions(+), 28 deletions(-) create mode 100644 src/components/Berry/index.tsx create mode 100644 src/theme/Root.tsx diff --git a/src/components/Berry/index.tsx b/src/components/Berry/index.tsx new file mode 100644 index 0000000000..5e0bea94a2 --- /dev/null +++ b/src/components/Berry/index.tsx @@ -0,0 +1,62 @@ +import React, { useEffect } from "react"; + +export type BerryMode = "inline" | "popup"; +export interface BerryProps { + mode: BerryMode; +}; + +export default function Berry({ mode }: BerryProps) { + useEffect(() => { + loadBerry(mode); + }, [mode]); + return null; +} + +function loadBerry(mode: BerryMode) { + if (!document.getElementById('berry-widget-script')) { + const script = document.createElement('script'); + script.id = 'berry-widget-script'; + script.src = 'https://www.berryapp.io/js/berry-widget.min.js'; + script.async = true; + document.head.appendChild(script); + + script.onload = () => { + initBerry(mode); + } + + script.onerror = () => console.error('Failed to load Berry widget script'); + } else { + initBerry(mode); + } + } + +function initBerry(mode: BerryMode) { + if (!window.Berry) { + console.error("Berry not defined"); + return; + } + + window.Berry.init(mode === 'inline' ? inlineConfig : popupConfig); + }; + + + const commonConfig = { + token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MjU5NDg5MTcsImV4cCI6MTc0MTYwODkxNywiYXVkIjoiV2lkZ2V0SW5pdGlhbGl6YXRpb24iLCJvcmdhbml6YXRpb25JZCI6NjN9.oJEGkGq1q3uFD66J916f_ZBrqQjPHP9orUOKFxInG38', + primaryColor: '#021b9a', + botUrlPath: 'nova', + showNewChat: true, + resumeChat: true, + } + + const inlineConfig = { + ...commonConfig, + isOpenByDefault: true, + parentElementId: 'inline-berry-chatbot-container', + hideToggle: true, + } + + const popupConfig = { + ...commonConfig, + position: { side: 'right', offsetX: 25, offsetY: 100 }, + isOpenByDefault: false, + } diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 014c942251..57df59e389 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -8,6 +8,7 @@ import SumoLogicDocsLogo from '../../static/img/sumo-logic-docs.svg'; import { Feature } from '../components/Feature'; import { features } from '../helper/features'; import ErrorBoundary from '../components/ErrorBoundary'; +import Berry from '../components/Berry'; export const Home = () => { const [tab, setTab] = useState('0'); @@ -23,39 +24,11 @@ export const Home = () => { '✨ what is the parse operator?' ]; - useEffect(() => { - if (!document.getElementById('berry-widget-script')) { - const script = document.createElement('script'); - script.id = 'berry-widget-script'; - script.src = 'https://www.berryapp.io/js/berry-widget.min.js'; - script.async = true; - document.head.appendChild(script); - - script.onload = () => { - const widgetJwt = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MjU5NDg5MTcsImV4cCI6MTc0MTYwODkxNywiYXVkIjoiV2lkZ2V0SW5pdGlhbGl6YXRpb24iLCJvcmdhbml6YXRpb25JZCI6NjN9.oJEGkGq1q3uFD66J916f_ZBrqQjPHP9orUOKFxInG38'; - window.Berry.init({ - token: widgetJwt, - primaryColor: '#021b9a', - position: { side: 'right', offsetX: 25, offsetY: 100 }, - isOpenByDefault: true, - botUrlPath: 'nova', - showNewChat: true, - parentElementId: 'inline-berry-chatbot-container', - }); - }; - - script.onerror = () => console.error('Failed to load Berry widget script'); - } - }, []); - const handleQuestionClick = (question) => { if (window.Berry) { if (window.Berry.sendMessage) { window.Berry.sendMessage(question); } - if (window.Berry.open) { - window.Berry.open(); - } } }; @@ -66,6 +39,7 @@ export const Home = () => { title='Home' > + {/* Suggested Questions */} diff --git a/src/theme/Root.tsx b/src/theme/Root.tsx new file mode 100644 index 0000000000..ab3417469e --- /dev/null +++ b/src/theme/Root.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import Berry from '../components/Berry'; +import { useLocation } from '@docusaurus/router'; + +export default function Root({ children }: { children: React.ReactNode }) { + const location = useLocation(); + return ( + <> + {children} + {location.pathname !== '/' && } + + ); +} From dd8061756e3a6ca73d8c45d655bc505dd6a524a5 Mon Sep 17 00:00:00 2001 From: Viktor Nagy Date: Thu, 9 Jan 2025 10:41:44 +0100 Subject: [PATCH 15/25] increase height of inline widget --- src/components/Berry/index.tsx | 1 + src/css/sumo.scss | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/Berry/index.tsx b/src/components/Berry/index.tsx index 5e0bea94a2..b21248866b 100644 --- a/src/components/Berry/index.tsx +++ b/src/components/Berry/index.tsx @@ -53,6 +53,7 @@ function initBerry(mode: BerryMode) { isOpenByDefault: true, parentElementId: 'inline-berry-chatbot-container', hideToggle: true, + height: 850, } const popupConfig = { diff --git a/src/css/sumo.scss b/src/css/sumo.scss index 8fe20523e2..5988838e48 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -232,11 +232,6 @@ body, .MuiTypography-root, button, input, select, textarea { font-family: 'Lab Grotesque', sans-serif !important; } -/* Berry chatbot */ -#inline-berry-chatbot-container iframe { - height: 600px !important; -} - //GitHub icon .header-github-link:hover { opacity: 0.6; From c766ffdb138d5df35c2d81e86983e03951cc1dc7 Mon Sep 17 00:00:00 2001 From: Viktor Nagy Date: Thu, 9 Jan 2025 18:26:43 +0100 Subject: [PATCH 16/25] handle color mode changes --- src/components/Berry/index.tsx | 49 ++++++++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/src/components/Berry/index.tsx b/src/components/Berry/index.tsx index b21248866b..01c40033dd 100644 --- a/src/components/Berry/index.tsx +++ b/src/components/Berry/index.tsx @@ -5,7 +5,36 @@ export interface BerryProps { mode: BerryMode; }; +declare global { + interface Window { + Berry: any; + } +} + export default function Berry({ mode }: BerryProps) { + useEffect(() => { + function onColorModeChange(newColorMode) { + if (!window.Berry) { + return; + } + + window.Berry.update({ + colorMode: newColorMode, + }) + } + + const observer = new MutationObserver((mutations) => { + mutations.forEach((mutation) => { + if (mutation.attributeName === 'data-theme') { + const newColorMode = getCurrentColorMode(); + onColorModeChange(newColorMode); + } + }); + }); + + observer.observe(document.documentElement, { attributes: true }); + }, []); + useEffect(() => { loadBerry(mode); }, [mode]); @@ -35,9 +64,24 @@ function initBerry(mode: BerryMode) { console.error("Berry not defined"); return; } + + const colorMode = getCurrentColorMode(); + const config = { + ...(mode === 'inline' ? inlineConfig : popupConfig), + colorMode: colorMode, + }; - window.Berry.init(mode === 'inline' ? inlineConfig : popupConfig); + window.Berry.init(config); }; + + function getCurrentColorMode(): 'light' | 'dark' { + const theme = document.documentElement.getAttribute('data-theme'); + if (theme === 'light' || theme === 'dark') { + return theme; + } else { + return 'light'; + } + } const commonConfig = { @@ -53,7 +97,8 @@ function initBerry(mode: BerryMode) { isOpenByDefault: true, parentElementId: 'inline-berry-chatbot-container', hideToggle: true, - height: 850, + height: 700, + showResize: false, } const popupConfig = { From feb935a4ba9e3bc5fb2db8379f5e2f450d779313 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Tue, 14 Jan 2025 21:23:33 -0800 Subject: [PATCH 17/25] :::sumo admonition css fix --- src/css/sumo.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/css/sumo.scss b/src/css/sumo.scss index 5988838e48..3da9d35f0d 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -746,7 +746,7 @@ html[data-theme='light'] .alert--secondary { } // SUMO -html[data-theme='dark'] .theme-admonition-sumo { +html[data-theme='dark'] .admonition--sumo { background-color: rgba(0, 0, 153, 0.1); --ifm-alert-border-color: #000099; border-left: 6px solid #000099; @@ -766,7 +766,7 @@ html[data-theme='dark'] .theme-admonition-sumo { } } -html[data-theme='light'] .theme-admonition-sumo { +html[data-theme='light'] .admonition--sumo { background-color: rgba(0, 0, 153, 0.05); color: #000046; --ifm-alert-color: #000099; From ed30f65e1342d70d9e561adc3a4ede568857febc Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Tue, 14 Jan 2025 21:55:32 -0800 Subject: [PATCH 18/25] test - index page card code fix --- docs/manage/index.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/manage/index.md b/docs/manage/index.md index 85311ffd28..378bba6320 100644 --- a/docs/manage/index.md +++ b/docs/manage/index.md @@ -17,81 +17,81 @@ This topic describes features and options that give you administration over acco
- icon

Fields

+ icon

Fields

Learn how to define and manage the assignment of metadata to your logs.

- icon

Health Events

+ icon

Health Events

Monitor the health of your Collectors and Sources.

- icon

Field Extractions

+ icon

Field Extractions

Accelerates the search process by parsing fields as log messages are ingested.

- icon

Partitions

+ icon

Partitions

Accelerate the search process by allowing Admins to filter a subset of the log messages in an index.

- icon

Users and Roles

+ icon

Users and Roles

Learn how to manage users and roles in Sumo Logic.

- icon

Manage Subscription

+ icon

Manage Subscription

Learn about Sumo Logic account plans and types and about how to manage yours.

- icon

Content Sharing

+ icon

Content Sharing

Allows you collaborate on apps, dashboards, and searches with specific users or roles.

- icon

Data Forwarding

+ icon

Data Forwarding

Allows you to forward selected data to an external server or Amazon S3.

- icon

Data Archiving

+ icon

Data Archiving

Learn how to archive selected data to an external server or Amazon S3.

- icon

Ingestion and Volume

+ icon

Ingestion and Volume

Learn how to manage the ingestion of data by Sumo Logic.

- icon

Scheduled Views

+ icon

Scheduled Views

Accelerate the search process for data subsets by functioning as a pre-aggregated index.

- icon

Security

+ icon

Security

Learn how to set up security for Sumo Logic accounts.

From b681288bc61f0503fcd4154eddbec54539700368 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Wed, 15 Jan 2025 17:14:46 -0800 Subject: [PATCH 19/25] Correct hard-coded index page links --- docs/alerts/index.md | 6 +- docs/alerts/monitors/index.md | 22 +-- docs/alerts/scheduled-searches/index.md | 16 +- docs/alerts/webhook-connections/index.md | 18 +- .../webhook-connections/servicenow/index.md | 8 +- docs/api/index.md | 94 +++++----- docs/apm/index.md | 12 +- .../traces/advanced-configuration/index.md | 8 +- .../get-started-transaction-tracing/index.md | 40 ++--- docs/apm/traces/index.md | 18 +- docs/cloud-soar/index.md | 12 +- docs/cloud-soar/legacy/index.md | 14 +- docs/contributing/index.md | 12 +- docs/cse/administration/index.md | 34 ++-- docs/cse/automation/index.md | 6 +- docs/cse/get-started-with-cloud-siem/index.md | 16 +- docs/cse/index.md | 20 +-- docs/cse/ingestion/index.md | 10 +- .../ingestion-sources-for-cloud-siem/index.md | 58 +++---- docs/cse/integrations/index.md | 12 +- .../cse/match-lists-suppressed-lists/index.md | 10 +- .../index.md | 24 +-- docs/cse/rules/index.md | 32 ++-- docs/cse/schema/index.md | 22 +-- docs/cse/sensors/index.md | 10 +- docs/dashboards/index.md | 32 ++-- docs/get-started/index.md | 18 +- docs/integrations/amazon-aws/index.md | 106 +++++------ docs/integrations/app-development/index.md | 20 +-- .../index.md | 20 +-- .../containers-orchestration/index.md | 22 +-- docs/integrations/databases/index.md | 121 ++++++++----- .../integrations/global-intelligence/index.md | 17 +- docs/integrations/google/index.md | 100 +++++------ .../hosts-operating-systems/index.md | 8 +- docs/integrations/index.md | 40 ++--- docs/integrations/microsoft-azure/index.md | 116 ++++++------- docs/integrations/pci-compliance/index.md | 16 +- docs/integrations/product-list/index.md | 4 +- docs/integrations/saas-cloud/index.md | 114 ++++++------ docs/integrations/saml/index.md | 6 +- .../security-threat-detection/index.md | 46 ++--- docs/integrations/sumo-apps/index.md | 18 +- docs/integrations/web-servers/index.md | 22 +-- docs/manage/content-sharing/index.md | 6 +- docs/manage/data-archiving/index.md | 2 +- docs/manage/data-forwarding/index.md | 8 +- .../field-extractions/fer-templates/index.md | 26 +-- docs/manage/field-extractions/index.md | 12 +- docs/manage/index.md | 2 +- .../data-volume-index/index.md | 4 +- docs/manage/ingestion-volume/index.md | 10 +- .../ingestion-volume/ingest-budgets/index.md | 4 +- docs/manage/manage-subscription/index.md | 26 +-- docs/manage/partitions/data-tiers/index.md | 16 +- docs/manage/partitions/flex/index.md | 10 +- docs/manage/partitions/index.md | 8 +- docs/manage/scheduled-views/index.md | 12 +- docs/manage/security/audit-indexes/index.md | 10 +- docs/manage/security/index.md | 40 ++--- docs/manage/security/saml/index.md | 20 +-- docs/manage/users-roles/index.md | 4 +- docs/manage/users-roles/roles/index.md | 10 +- docs/manage/users-roles/users/index.md | 20 +-- docs/metrics/index.md | 18 +- docs/metrics/manage-metric-volume/index.md | 8 +- docs/metrics/metrics-operators/index.md | 50 +++--- docs/metrics/metrics-queries/index.md | 18 +- docs/observability/aws/index.md | 10 +- docs/observability/aws/integrations/index.md | 28 +-- .../aws/other-configurations-tools/index.md | 6 +- docs/observability/index.md | 16 +- docs/observability/kubernetes/index.md | 16 +- docs/observability/sdo/index.md | 12 +- .../automation-service/app-central/index.md | 4 +- .../automation-service/index.md | 14 +- docs/platform-services/index.md | 2 +- docs/search/behavior-insights/index.md | 6 +- .../behavior-insights/logreduce/index.md | 12 +- .../build-search/index.md | 16 +- docs/search/get-started-with-search/index.md | 8 +- .../search-basics/index.md | 32 ++-- .../search-page/field-browser/index.md | 4 +- .../search-page/index.md | 24 +-- .../suggested-searches/index.md | 13 +- docs/search/index.md | 24 +-- docs/search/live-tail/index.md | 16 +- docs/search/lookup-tables/index.md | 4 +- docs/search/search-cheat-sheets/index.md | 8 +- .../group-aggregate-operators/index.md | 22 +-- docs/search/search-query-language/index.md | 12 +- .../math-expressions/index.md | 50 +++--- .../parse-operators/index.md | 22 +-- .../search-operators/index.md | 152 ++++++++-------- .../transaction-analytics/index.md | 8 +- .../additional-security-features/index.md | 10 +- .../cloud-infrastructure-security/index.md | 4 +- .../azure-blob-storage/index.md | 6 +- .../collect-metrics-telegraf/index.md | 10 +- .../collect-from-other-data-sources/index.md | 54 +++--- docs/send-data/collection/index.md | 22 +-- .../collection/processing-rules/index.md | 12 +- .../hosted-collectors/amazon-aws/index.md | 30 ++-- .../index.md | 164 +++++++++--------- .../hosted-collectors/google-source/index.md | 6 +- .../hosted-collectors/http-source/index.md | 16 +- docs/send-data/hosted-collectors/index.md | 16 +- docs/send-data/index.md | 18 +- .../collector-installation-reference/index.md | 32 ++-- docs/send-data/installed-collectors/index.md | 12 +- .../installed-collectors/sources/index.md | 32 ++-- .../data-source-configurations/index.md | 8 +- .../opentelemetry-collector/index.md | 16 +- .../install-collector/index.md | 12 +- .../remote-management/index.md | 6 +- .../processing-rules/index.md | 6 +- .../source-templates/index.md | 24 +-- docs/send-data/reference-information/index.md | 10 +- 118 files changed, 1416 insertions(+), 1375 deletions(-) diff --git a/docs/alerts/index.md b/docs/alerts/index.md index 70c294d347..a22cb23375 100644 --- a/docs/alerts/index.md +++ b/docs/alerts/index.md @@ -11,19 +11,19 @@ Sumo Logic offers several alerting features. See the topics below for details on
- icon

Monitors

+ icon

Monitors

Configure alerting policies notify you about critical changes or issues affecting your production applications.

- icon

Scheduled Searches

+ icon

Scheduled Searches

Create saved searches that are executed continuously on a schedule you set, monitoring your stack.

- icon

Monitors vs. Scheduled Searches

+ icon

Monitors vs. Scheduled Searches

Learn about the feature differences between Monitors and Scheduled Searches.

diff --git a/docs/alerts/monitors/index.md b/docs/alerts/monitors/index.md index e3bebff5cc..e9a18bc784 100644 --- a/docs/alerts/monitors/index.md +++ b/docs/alerts/monitors/index.md @@ -14,67 +14,67 @@ In this section, we'll introduce the following concepts:
- icon

Overview

+ icon

Overview

Set up monitors to continuously query your logs or metrics and send notifications when specific events occur.

- icon

Create a Monitor

+ icon

Create a Monitor

Learn how to create a monitor.

- icon

Monitor Settings

+ icon

Monitor Settings

Learn how to view, create, manage, and organize Monitors.

- icon

Monitors FAQ

+ icon

Monitors FAQ

This topic lists the common FAQs regarding Monitors.

- icon

Alert Variables

+ icon

Alert Variables

Use Alert Variables as parameters to customize the JSON payload object of your alert notifications.

- icon

Alert Response

+ icon

Alert Response

Get contextual insights about triggered alerts to minimize the time needed to investigate and resolve application failures.

- icon

Alert Response FAQ

+ icon

Alert Response FAQ

This topic lists the common FAQs regarding Alert Response.

- icon

Alert Grouping

+ icon

Alert Grouping

Customize how your alerts are generated from monitors by specifying a grouping condition based on specific fields.

- icon

Muting Schedules

+ icon

Muting Schedules

Pause alert notifications from monitors according to the schedule that you define.

- icon

Monitor Log Ingestion and Alerts

+ icon

Monitor Log Ingestion and Alerts

Add Scheduled Searches that monitor log ingestion and send alerts.

- icon

Automated Playbooks in Monitors

+ icon

Automated Playbooks in Monitors

Learn how to use Automation Service playbooks with monitors.

diff --git a/docs/alerts/scheduled-searches/index.md b/docs/alerts/scheduled-searches/index.md index 7550fef83c..399f71a577 100644 --- a/docs/alerts/scheduled-searches/index.md +++ b/docs/alerts/scheduled-searches/index.md @@ -11,49 +11,49 @@ A _Scheduled Search_ is a standard [Log Search](/docs/search) that you save and
- icon

Create a Scheduled Search

+ icon

Create a Scheduled Search

Learn how to add alerts and schedule search to run it at a regular scheduled time.

- icon

Create a Scheduled Search Email Alert

+ icon

Create a Scheduled Search Email Alert

Learn how to create a Scheduled Search email alert.

- icon

Create a Scheduled Search Real-Time Alert

+ icon

Create a Scheduled Search Real-Time Alert

Learn how to create an alert to get notified in real-time when error conditions exist.

- icon

Edit or Cancel a Scheduled Search

+ icon

Edit or Cancel a Scheduled Search

Learn how to edit or cancel a Scheduled Search at any time.

- icon

Save to Index

+ icon

Save to Index

Learn how to save the results to an Index after creating a Scheduled Search email alert.

- icon

Save to Lookup

+ icon

Save to Lookup

Learn how to save the results of a Scheduled Search to a Lookup Table.

- icon

Generate Cloud SIEM Signals with a Scheduled Search

+ icon

Generate Cloud SIEM Signals with a Scheduled Search

Learn how to create a Scheduled Search that will trigger a Cloud SIEM Signal.

- icon

FAQ

+ icon

FAQ

Review frequently asked questions about Scheduled Searches and troubleshooting tips.

diff --git a/docs/alerts/webhook-connections/index.md b/docs/alerts/webhook-connections/index.md index f80a476964..27a2041d77 100644 --- a/docs/alerts/webhook-connections/index.md +++ b/docs/alerts/webhook-connections/index.md @@ -23,55 +23,55 @@ In this section, we'll introduce the following concepts and more:
Thumbnail icon -

Slack

+

Slack

Thumbnail icon -

Jira

+

Jira

diff --git a/docs/alerts/webhook-connections/servicenow/index.md b/docs/alerts/webhook-connections/servicenow/index.md index 06e13bcc99..14707bbd39 100644 --- a/docs/alerts/webhook-connections/servicenow/index.md +++ b/docs/alerts/webhook-connections/servicenow/index.md @@ -19,25 +19,25 @@ In this section, we'll introduce the following concepts:
- icon

Set Up Security Incident Webhooks

+ icon

Set Up Security Incident Webhooks

Learn how to set up a ServiceNow Security Incident Webhook connection and create scheduled searches.

- icon

Launch ServiceNow Investigations

+ icon

Launch ServiceNow Investigations

Learn how to launch ad hoc investigations directly from search results in Sumo Logic.

- icon

Set Up ServiceNow Searches

+ icon

Set Up ServiceNow Searches

Learn how to set up scheduled searches for ServiceNow integration.

- icon

Set Up ServiceNow Connections

+ icon

Set Up ServiceNow Connections

Learn how to set up connections for ServiceNow integration.

diff --git a/docs/api/index.md b/docs/api/index.md index 0f234fe572..74d98743ab 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -16,238 +16,238 @@ To connect with other Sumo Logic users, post feedback, or ask a question, visit
- icon

Authentication and Endpoints

+ icon

Authentication and Endpoints

API authentication and the Sumo Logic endpoints to use for your API client.

- Thumbnail icon

Roles

+ Thumbnail icon

Roles

- Thumbnail icon

SLOs

+ Thumbnail icon

SLOs

- Thumbnail icon

Users

+ Thumbnail icon

Users

diff --git a/docs/apm/index.md b/docs/apm/index.md index 5c1e29e81d..4ff564e263 100644 --- a/docs/apm/index.md +++ b/docs/apm/index.md @@ -12,37 +12,37 @@ Monitor user activity, span analytics, service maps, and transaction traces betw
- icon

Traces

+ icon

Traces

Learn how to work with application tracing data using dashboards, Services Lists and Maps, Spans, and queries.

- icon

Get Started with Transaction Tracing

+ icon

Get Started with Transaction Tracing

Learn how to send Traces to Sumo Logic in AWS, Kubernetes, and other environments.

- icon

OpenTelemetry App Instrumentation

+ icon

OpenTelemetry App Instrumentation

OpenTelemetry provides a wide range of componentry to get you started with distributed tracing.

- icon

Real User Monitoring

+ icon

Real User Monitoring

Understand how users interact with the digital interfaces of your business.

- icon

Configure RUM Data Collection

+ icon

Configure RUM Data Collection

Learn how to collect Traces and RUM metrics from a browser using a RUM HTTP Traces Source.

- icon

RUM Dashboards

+ icon

RUM Dashboards

Use RUM Dashboards to gain visibility into application performance and end-user activity.

diff --git a/docs/apm/traces/advanced-configuration/index.md b/docs/apm/traces/advanced-configuration/index.md index ba236c776f..903ca93711 100644 --- a/docs/apm/traces/advanced-configuration/index.md +++ b/docs/apm/traces/advanced-configuration/index.md @@ -5,24 +5,26 @@ sidebar_label: Advanced Configuration description: This guide provides advanced configuration options for Distributed Tracing (APM). --- +import useBaseUrl from '@docusaurus/useBaseUrl'; + This guide provides advanced configuration options for Application Performance Management (APM) and distributed tracing, including the following:
-

Correlating Logs and Traces

+

Correlating Logs and Traces

Link your traces and logs to better understand your environment.

-

Filter and Shape Your Trace Data

+

Filter and Shape Your Trace Data

Create and apply custom rules to filter and shape your tracing data.

-

Working with Span Attributes

+

Working with Span Attributes

Learn how to modify the attributes of your spans.

diff --git a/docs/apm/traces/get-started-transaction-tracing/index.md b/docs/apm/traces/get-started-transaction-tracing/index.md index 23bc934a74..93adfac829 100644 --- a/docs/apm/traces/get-started-transaction-tracing/index.md +++ b/docs/apm/traces/get-started-transaction-tracing/index.md @@ -17,19 +17,19 @@ Sumo Logic tracing supports the OpenTelemetry standard as well as other legacy o
- icon

For Kubernetes environments

+ src={useBaseUrl('img/icons/operations/kubernetes.png')} alt="icon" width="40"/>

For Kubernetes environments

Learn how to install the Sumo Logic Kubernetes Collection and send traces using OpenTelemetry.

- icon

For Other environments

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="40"/>

For Other environments

Learn how to leverage OpenTelemetry standards and start collecting Traces.

@@ -48,49 +48,49 @@ Learn how to collect telemetry data from applications written in the following p
Thumbnail icon -

Java

+

Java

Thumbnail icon -

.NET

+

.NET

Thumbnail icon -

Ruby

+

Ruby

Thumbnail icon -

Istio

+

Istio

@@ -104,19 +104,19 @@ Learn how to install and configure OpenTelemetry distributed tracing for AWS Lam
Thumbnail icon -

Java

+

Java

@@ -129,19 +129,19 @@ Setting up Tracing instrumentation for applications deployed in Kubernetes just
Thumbnail icon -

Java

+

Java

@@ -151,19 +151,19 @@ Setting up Tracing instrumentation for applications deployed in Kubernetes just
- icon

Correlating Logs and Traces

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Correlating Logs and Traces

Linking together your Sumo Logic traces and logs will provide you a broad and deep understanding of your environment.

- icon

Filter and Shape Your Trace Data

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Filter and Shape Your Trace Data

Learn how to create and apply custom rules to shape tracing data and specify which data to send to Sumo Logic.

- icon

Working with Span Attributes

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Working with Span Attributes

Learn how to modify span attributes to enhance diagnostic data details, remove redundant information, and mask sensitive information before they leave your site.

diff --git a/docs/apm/traces/index.md b/docs/apm/traces/index.md index b98e4f1d04..e68b67aeed 100644 --- a/docs/apm/traces/index.md +++ b/docs/apm/traces/index.md @@ -14,55 +14,55 @@ This guide provides information to work with your tracing data.
- icon

Setup and Configuration

+ icon

Setup and Configuration

Learn how to send traces to Sumo Logic.

- icon

Quickstart

+ icon

Quickstart

Get up and running quickly with and explore how your application is behaving with Trace analytics.

- icon

View and Investigate Traces

+ icon

View and Investigate Traces

Learn how to search and investigate your traces, trace views, and trace events.

- icon

Services List and Services Map

+ icon

Services List and Services Map

View your application topology and investigate microservice interactions.

- icon

Application Service APM and Tracing Dashboards

+ icon

Application Service APM and Tracing Dashboards

Explore and create Tracing dashboards, install apps, and more.

- icon

Span Analytics and Queries

+ icon

Span Analytics and Queries

Learn how to use the Spans page to explore your span data.

- icon

Search Query Language Support for Traces

+ icon

Search Query Language Support for Traces

Use our Search Query Language to gain valuable insight into your traces.

- icon

Advanced Configuration

+ icon

Advanced Configuration

Learn how to link logs and traces, modify span attributes, and mask sensitive site information.

- icon

Troubleshoot Ingest

+ icon

Troubleshoot Ingest

Use tracing to troubleshoot problems with data ingest.

diff --git a/docs/cloud-soar/index.md b/docs/cloud-soar/index.md index b10d5b5d29..e9de446410 100644 --- a/docs/cloud-soar/index.md +++ b/docs/cloud-soar/index.md @@ -16,36 +16,36 @@ This section contains the following topics:
- Shield and gear icon

Overview

+ Shield and gear icon

Overview

Learn how Cloud SOAR allows you to perform incident management and threat response.

- Shield and gear icon

Introduction

+ Shield and gear icon

Introduction

Provides an introduction to Cloud SOAR for analysts and administrators.

- Shield and gear icon

Cloud SOAR Compared to the Automation Service

+ Shield and gear icon

Cloud SOAR Compared to the Automation Service

Compare the features of Cloud SOAR with the Automation Service.

- Shield and gear icon

Incidents and Triage

+ Shield and gear icon

Incidents and Triage

Customize your Cloud SOAR Incident data display.

- Shield and gear icon

Automation

+ Shield and gear icon

Automation

Configuration tools for Cloud SOAR automation and orchestration features.

- Shield and gear icon

Legacy Cloud SOAR

+ Shield and gear icon

Legacy Cloud SOAR

Learn about our legacy Cloud SOAR product offering.

diff --git a/docs/cloud-soar/legacy/index.md b/docs/cloud-soar/legacy/index.md index 2c3feaa234..0f190d392a 100644 --- a/docs/cloud-soar/legacy/index.md +++ b/docs/cloud-soar/legacy/index.md @@ -16,43 +16,43 @@ In this section, we'll introduce the following concepts:
- Computer chip icon

Legacy Cloud SOAR Architecture

+ Computer chip icon

Legacy Cloud SOAR Architecture

Learn about features of the legacy Cloud SOAR architecture.

- Computer chip icon

Legacy Cloud SOAR Global Functions Menu

+ Computer chip icon

Legacy Cloud SOAR Global Functions Menu

Learn about features of the legacy Cloud SOAR Global Functions menu.

- Computer chip icon

Legacy Cloud SOAR Main Menu

+ Computer chip icon

Legacy Cloud SOAR Main Menu

Learn about features of the legacy Cloud SOAR main menu.

- Computer chip icon

Legacy Cloud SOAR Incident Management and Triage

+ Computer chip icon

Legacy Cloud SOAR Incident Management and Triage

Learn about features of the legacy Cloud SOAR automated real-time incident management and threat response.

- Computer chip icon

Legacy Cloud SOAR Automation

+ Computer chip icon

Legacy Cloud SOAR Automation

Learn about features of legacy Cloud SOAR automation.

- Computer chip icon

Cloud SOAR for MSSPs (Legacy Only)

+ Computer chip icon

Cloud SOAR for MSSPs (Legacy Only)

Full-featured instance of legacy Cloud SOAR designed for internal MSSP use.

- Computer chip icon

Legacy Cloud SOAR APIs

+ Computer chip icon

Legacy Cloud SOAR APIs

Learn how to access legacy Cloud SOAR APIs and API documentation.

diff --git a/docs/contributing/index.md b/docs/contributing/index.md index e9ef0529e4..e43a688b48 100644 --- a/docs/contributing/index.md +++ b/docs/contributing/index.md @@ -21,32 +21,32 @@ You can also explore more Sumo Logic open-source projects on our [GitHub site](h diff --git a/docs/cse/administration/index.md b/docs/cse/administration/index.md index 1e5800b706..097711e074 100644 --- a/docs/cse/administration/index.md +++ b/docs/cse/administration/index.md @@ -12,103 +12,103 @@ Learn about onboarding tasks and best practices for Cloud SIEM administrators. I
- Magnifying glass icon

Filter and Search

+ Magnifying glass icon

Filter and Search

Learn how to filter and search Cloud SIEM list pages.

- Network icon

Network Blocks

+ Network icon

Network Blocks

Learn about Network Blocks, their purpose, and instructions for setting them up and using them.

- Tree diagram icon

Create a Custom Tag Schema

+ Tree diagram icon

Create a Custom Tag Schema

Learn how to create a custom tag schema in Cloud SIEM.

- Shield with a globe icon

Create a Custom Threat Intelligence Source

+ Shield with a globe icon

Create a Custom Threat Intelligence Source

Learn how to create and manage Custom Threat Sources.

- Cloud with a shield icon

Create Cloud SIEM Actions

+ Cloud with a shield icon

Create Cloud SIEM Actions

Learn how to issue a notification to another service when certain events occur in Cloud SIEM.

- Database symbol in a magnifying glass icon

Create Cloud SIEM Context Actions

+ Database symbol in a magnifying glass icon

Create Cloud SIEM Context Actions

Learn to query an external system for details about an entity, IOC, or data encountered in a record.

- Code icon

Cloud SIEM APIs

+ Code icon

Cloud SIEM APIs

Learn how to access Cloud SIEM APIs and API documentation.

- Database icon

Data Retention

+ Database icon

Data Retention

Learn about retention periods for different types of Cloud SIEM data.

- Document icon

Audit Logging

+ Document icon

Audit Logging

Learn how to search the Audit Event Index for Cloud SIEM log events.

- People with gears icon

Cloud SIEM User Accounts and Roles

+ People with gears icon

Cloud SIEM User Accounts and Roles

Learn how to create and manage user accounts and roles for Cloud SIEM.

- Small boxes merging into a circle icon

Custom Inventory Source

+ Small boxes merging into a circle icon

Custom Inventory Source

Learn how to extract Inventory Data from logs in Sumo Logic and send it to Cloud SIEM.

- Check mark in an magnifhing glass icon

Save Inventory Data to a Lookup Table

+ Check mark in an magnifhing glass icon

Save Inventory Data to a Lookup Table

Learn how to use a saved Sumo Logic search to populate a Lookup Table with Cloud SIEM inventory data.

- Bar chart with a gear icon

Manage Custom Insight Resolutions

+ Bar chart with a gear icon

Manage Custom Insight Resolutions

Learn how to create and manage custom insight resolutions.

- Bar chart in a circle icon

Managing Custom Insight Statuses

+ Bar chart in a circle icon

Managing Custom Insight Statuses

Learn how to create and manage custom insight statuses.

- Squares icon

Sensor Zones

+ Squares icon

Sensor Zones

Learn how to use Sensor Zones to distinguish between Cloud SIEM entities that have the same IP address.

- Peoople on a gear icon

Inventory Sources and Data

+ Peoople on a gear icon

Inventory Sources and Data

Learn about Inventory Sources and the Inventory Data they collect.

- People on a gear icon

MITRE Coverage

+ People on a gear icon

MITRE Coverage

Learn how well you are prepared to detect adversary attacks based on the tactics and techniques in the MITRE ATT&CK Enterprise Matrix.

diff --git a/docs/cse/automation/index.md b/docs/cse/automation/index.md index 5a3e9fbc85..97c3ec2bc4 100644 --- a/docs/cse/automation/index.md +++ b/docs/cse/automation/index.md @@ -15,19 +15,19 @@ In this section, we'll introduce the following concepts:
- Shield on a workflow icon

About the Automation Service and Cloud SIEM

+ Shield on a workflow icon

About the Automation Service and Cloud SIEM

Get an overview of how the Automation Service allows you to automate smart actions, including enrichments and notifications.

- Shield on a workflow icon

Automations in Cloud SIEM

+ Shield on a workflow icon

Automations in Cloud SIEM

Learn how to create automations that run playbooks to add enrichments and create notifications for either insights or entities.

- Shield on a workflow icon

Cloud SIEM Automation Examples

+ Shield on a workflow icon

Cloud SIEM Automation Examples

See examples that show you how to create automations for different situations.

diff --git a/docs/cse/get-started-with-cloud-siem/index.md b/docs/cse/get-started-with-cloud-siem/index.md index 370cfce448..3342c6ce0f 100644 --- a/docs/cse/get-started-with-cloud-siem/index.md +++ b/docs/cse/get-started-with-cloud-siem/index.md @@ -11,48 +11,48 @@ This guide helps you get started using Cloud SIEM for threat hunting.
- Shield on a workflow icon

Cloud SIEM User Interface

+ Shield on a workflow icon

Cloud SIEM User Interface

Learn about the Cloud SIEM user interface.

- Shield on a workflow icon

Introduction to Cloud SIEM for Analysts

+ Shield on a workflow icon

Introduction to Cloud SIEM for Analysts

Learn basic concepts about Cloud SIEM for security analysts.

- Shield on a workflow icon

Introduction to Cloud SIEM for Administrators

+ Shield on a workflow icon

Introduction to Cloud SIEM for Administrators

Learn basic concepts about Cloud SIEM for administrators.

- Shield on a workflow icon

Cloud SIEM Heads Up Display

+ Shield on a workflow icon

Cloud SIEM Heads Up Display

Learn how to use the Heads Up Display to perform threat investigations.

- Shield on a workflow icon

Insight Generation

+ Shield on a workflow icon

Insight Generation

Learn how Cloud SIEM correlates signals by entity to create insights.

- Shield on a workflow icon

Cloud SIEM Insight UI

+ Shield on a workflow icon

Cloud SIEM Insight UI

Learn about the contents of the insights UI in Cloud SIEM.

- Checklist icon

Cloud SIEM Content Catalog

+ Checklist icon

Cloud SIEM Content Catalog

See the out-of-the-box rules, schema, mappings, and parsers for Cloud SIEM.

- Checklist icon

Cloud SIEM Onboarding Checklist

+ Checklist icon

Cloud SIEM Onboarding Checklist

Get up and running quickly with Cloud SIEM administrator tasks.

diff --git a/docs/cse/index.md b/docs/cse/index.md index 99e9bbdb2c..8f3c039626 100644 --- a/docs/cse/index.md +++ b/docs/cse/index.md @@ -21,61 +21,61 @@ This section contains the following topics:
- Shield on a cloud icon

Get Started with Cloud SIEM

+ Shield on a cloud icon

Get Started with Cloud SIEM

Learn how to start using Cloud SIEM for threat hunting.

- Shield on a cloud icon

Records, Signals, Entities, and Insights

+ Shield on a cloud icon

Records, Signals, Entities, and Insights

Learn about Insight generation, working with Entities, and how to query Cloud SIEM Records.

- Shield on a cloud icon

Ingestion

+ Shield on a cloud icon

Ingestion

Learn how to configure ingestion for supported products and services.

- Shield on a cloud icon

Rules

+ Shield on a cloud icon

Rules

Learn how to write rules, rules syntax, and Cloud SIEM built-in rules.

- Shield on a cloud icon

Schema

+ Shield on a cloud icon

Schema

Learn about Cloud SIEM Schema v3, schema attributes, and the Record processing pipeline.

- Shield on a cloud icon

Sensors

+ Shield on a cloud icon

Sensors

Cloud SIEM Sensors collect log and event data from your infrastructure and applications.

- Shield on a cloud icon

Integrations

+ Shield on a cloud icon

Integrations

Cloud SIEM integration with Sumo Logic and threat intel sources, and leveraging the Cloud SIEM Insight Enrichment Server.

- Shield on a cloud icon

Match Lists and Suppressed Lists

+ Shield on a cloud icon

Match Lists and Suppressed Lists

Learn about creating a Match list and their usage in rules.

- Shield on a cloud icon

Automation

+ Shield on a cloud icon

Automation

Learn how to configure automations to create notifications and enrichments in Cloud SIEM.

- Shield on a cloud icon

Administration

+ Shield on a cloud icon

Administration

Learn how to set up user accounts and roles, Actions, Network Blocks, custom Insight status and sub-resolutions, and more.

diff --git a/docs/cse/ingestion/index.md b/docs/cse/ingestion/index.md index 67dbfe243d..13caad49ce 100644 --- a/docs/cse/ingestion/index.md +++ b/docs/cse/ingestion/index.md @@ -14,31 +14,31 @@ In this section, we'll introduce the following concepts:
- Database icon

Best Practices

+ Database icon

Best Practices

Learn how to send Sumo Logic Source or Cloud-to-Cloud Connector log messages to Cloud SIEM to be transformed into Records.

- Database icon

Products with Log Mappings

+ Database icon

Products with Log Mappings

See the product and services that Cloud SIEM supports with log mappings and parsers.

- Database icon

Viewing Log Mappers

+ Database icon

Viewing Log Mappers

Learn how to find what mappers Cloud SIEM provides for a product or service.

- Shield on a cloud icon

Sumo Logic Cloud SIEM Ingest Mapping

+ Shield on a cloud icon

Sumo Logic Cloud SIEM Ingest Mapping

Configure Sumo Logic to send log messages to be processed by Cloud SIEM's system mapper.

- Shield on a cloud icon

Ingestion Sources for Cloud SIEM

+ Shield on a cloud icon

Ingestion Sources for Cloud SIEM

Learn the sources available for ingesting data to Cloud SIEM.

diff --git a/docs/cse/ingestion/ingestion-sources-for-cloud-siem/index.md b/docs/cse/ingestion/ingestion-sources-for-cloud-siem/index.md index 00800a163b..216b97738f 100644 --- a/docs/cse/ingestion/ingestion-sources-for-cloud-siem/index.md +++ b/docs/cse/ingestion/ingestion-sources-for-cloud-siem/index.md @@ -13,175 +13,175 @@ In this section, we'll introduce the following concepts:
- Auth0 thumbnail icon

Auth0 system parser

+ Auth0 thumbnail icon

Auth0 system parser

Configure an HTTP source to ingest Auth0 log messages and send them to Cloud SIEM’s Auth0 system parser.

- AWS Load Balancer thumbnail icon

AWS Application Load Balancer

+ AWS Load Balancer thumbnail icon

AWS Application Load Balancer

Configure collection and ingestion of AWS ALB log messages from an S3 bucket to be parsed by Cloud SIEM.

- AWS CloudTrail thumbnail icon

AWS CloudTrail

+ AWS CloudTrail thumbnail icon

AWS CloudTrail

Configure a CloudTrail source on a hosted collector to ingest CloudTrail log messages to be parsed by Cloud SIEM.

- AWS GuardDuty thumbnail icon

AWS GuardDuty

+ AWS GuardDuty thumbnail icon

AWS GuardDuty

Configure an HTTP source to ingest AWS GuardDuty log messages and send them to Cloud SIEM's system parser.

- AWS Network Firewall thumbnail icon

AWS Network Firewall

+ AWS Network Firewall thumbnail icon

AWS Network Firewall

Configure collection and ingestion of AWS Network Firewall log messages from an S3 bucket to be parsed by Cloud SIEM.

- AWS VPC Flow thumbnail icon

AWS VPC Flow

+ AWS VPC Flow thumbnail icon

AWS VPC Flow

Configure collection and ingestion of VPC Flow logs from an S3 bucket to be parsed by Cloud SIEM.

- Carbon Black Cloud thumbnail icon

Carbon Black Cloud

+ Carbon Black Cloud thumbnail icon

Carbon Black Cloud

Configure collection of Carbon Black Cloud logs messages from an S3 bucket to be parsed by Cloud SIEM.

- Check Point Firewall thumbnail icon

Check Point Firewall

+ Check Point Firewall thumbnail icon

Check Point Firewall

Configure a syslog source to ingest Check Point Firewall log messages to be parsed by Cloud SIEM.

- Cisco ASA thumbnail icon

Cisco ASA

+ Cisco ASA thumbnail icon

Cisco ASA

Configure a syslog source to ingest Cisco ASA log messages to be parsed by Cloud SIEM.

- Cisco Meraki icon

Cisco Meraki

+ Cisco Meraki icon

Cisco Meraki

Configure a syslog source to ingest Cisco Meraki log messages to be parsed by Cloud SIEM Cisco.

- Corelight Zeek icon

Corelight Zeek

+ Corelight Zeek icon

Corelight Zeek

Configure a syslog source to ingest Corelight Zeek log messages and send them to Cloud SIEM's log mapper.

- Fortigate Firewall icon

Fortigate Firewall

+ Fortigate Firewall icon

Fortigate Firewall

Configure a syslog source to ingest Fortigate Firewall log messages to be parsed by Cloud SIEM.

- G Suite Alert Center icon

G Suite Alert Center

+ G Suite Alert Center icon

G Suite Alert Center

Collect log messages from G Suite Alert Center to be parsed by Cloud SIEM.

- Kemp LoadMaster icon

Kemp LoadMaster

+ Kemp LoadMaster icon

Kemp LoadMaster

Configure a syslog source to ingest Kemp LoadMaster messages to be parsed by Cloud SIEM.

- Linux OS Syslog icon

Linux OS Syslog

+ Linux OS Syslog icon

Linux OS Syslog

Configure a syslog source to ingest Linux OS log messages to be parsed by Cloud SIEM.

- Microsoft 365 Audit icon

Microsoft 365 Audit (Office 365 Audit)

+ Microsoft 365 Audit icon

Microsoft 365 Audit (Office 365 Audit)

Configure collection of Microsoft 365 log messages to be parsed by Cloud SIEM. 

- Microsoft Azure Activity Log icon

Microsoft Azure Activity Log

+ Microsoft Azure Activity Log icon

Microsoft Azure Activity Log

Configure an HTTP Source to ingest Microsoft Azure Activity Log messages and to be parsed by Cloud SIEM.

- Microsoft Windows icon

Microsoft Windows

+ Microsoft Windows icon

Microsoft Windows

Configure collection of Windows Event Log messages and send them to the Cloud SIEM mapper.

- Nginx Access Logs icon

Nginx Access Logs

+ Nginx Access Logs icon

Nginx Access Logs

Configure a syslog source to ingest Nginx Access log messages to be parsed by Cloud SIEM.

- Okta icon

Okta

+ Okta icon

Okta

Configure an Okta source to ingest Okta log messages and send them to Cloud SIEM’s system parser.

- OneLogin icon

OneLogin

+ OneLogin icon

OneLogin

Learn how to collect OneLogin log messages and send them to Sumo Logic to be ingested by Cloud SIEM.

- Osquery icon

Osquery

+ Osquery icon

Osquery

Configure an HTTP source to ingest osquery log messages and send them to the Cloud SIEM system parser.

- Palo Alto Firewall icon

Palo Alto Firewall

+ Palo Alto Firewall icon

Palo Alto Firewall

Configure collection of Palo Alto Firewall log messages to be parsed by Cloud SIEM's system parser.

- SentinelOne icon

SentinelOne

+ SentinelOne icon

SentinelOne

Learn how to collect SentinelOne log messages and send them to be ingested by Cloud SIEM.

- Signal Sciences WAF icon

Signal Sciences WAF

+ Signal Sciences WAF icon

Signal Sciences WAF

Lean how to collect Signal Sciences WAF log messages and sending them to Sumo Logic to be ingested by Cloud SIEM.

- Symantec Blue Coat Proxy icon

Symantec Blue Coat Proxy

+ Symantec Blue Coat Proxy icon

Symantec Blue Coat Proxy

Configure a Syslog source to collect and send Symantec Proxy Secure Gateway (ProxySG) log messages to Cloud SIEM.

- Symantec Proxy Secure Gateway icon

Symantec Proxy Secure Gateway

+ Symantec Proxy Secure Gateway icon

Symantec Proxy Secure Gateway

Configure a syslog source to ingest Symantec Proxy Secure Gateway log messages to be parsed by Cloud SIEM.

- ZScaler NSS icon

ZScaler NSS

+ ZScaler NSS icon

ZScaler NSS

Configure collection of ZScaler NSS log messages to be parsed by Cloud SIEM's system parser for ZScaler NSS.

- Zscaler Private Access icon

Zscaler Private Access

+ Zscaler Private Access icon

Zscaler Private Access

Configure an HTTP source to ingest Zscaler Private Access log messages and send them to Cloud SIEM's system parser.

diff --git a/docs/cse/integrations/index.md b/docs/cse/integrations/index.md index e62c170d41..b7794a31a0 100644 --- a/docs/cse/integrations/index.md +++ b/docs/cse/integrations/index.md @@ -12,37 +12,37 @@ In this section, we'll introduce the following concepts:
- Icon of two screens

ThreatQ Source

+ Icon of two screens

ThreatQ Source

Learn how to set up a ThreatQ source.

- Icon of two screens

Insight Enrichment Server

+ Icon of two screens

Insight Enrichment Server

Learn how to automatically enrich Cloud SIEM insights.

- Icon of two screens

Enable VirusTotal Enrichment

+ Icon of two screens

Enable VirusTotal Enrichment

Learn how to enrich signals based on queries it runs against VirusTotal.

- Icon of two screens

TAXII Feed

+ Icon of two screens

TAXII Feed

Learn how to integrate Cloud SIEM with a TAXII threat intelligence feed.

- Icon of two screens

Security Incident Response (SIR)

+ Icon of two screens

Security Incident Response (SIR)

Learn to install and configure the integration between Sumo Logic Cloud SIEM and ServiceNow's SIR.

- Icon of two screens

Enrichments and Threat Indicators

+ Icon of two screens

Enrichments and Threat Indicators

Learn how enrichments can add threat indicators to show risk level in insights and entities.

diff --git a/docs/cse/match-lists-suppressed-lists/index.md b/docs/cse/match-lists-suppressed-lists/index.md index 1b7776f233..8a8af5703c 100644 --- a/docs/cse/match-lists-suppressed-lists/index.md +++ b/docs/cse/match-lists-suppressed-lists/index.md @@ -13,31 +13,31 @@ In this section, we'll introduce the following concepts:
- List icon

Create a Match List

+ List icon

Create a Match List

Learn about match lists, their purpose, usage, and how to create them.

- List icon

Custom match list Columns

+ List icon

Custom match list Columns

Learn how to define custom columns for use in match lists.

- List icon

Match Fields Reference

+ List icon

Match Fields Reference

Learn what record fields a match list with a given target column will be compared to.

- List icon

Entity Tags and Standard Match Lists

+ List icon

Entity Tags and Standard Match Lists

Learn how to identify specific entities that should be treated differently during Cloud SIEM rule processing.

- List icon

Suppressed Lists

+ List icon

Suppressed Lists

Learn to suppress signals that contain a particular indicator value in any of the signal's records.

diff --git a/docs/cse/records-signals-entities-insights/index.md b/docs/cse/records-signals-entities-insights/index.md index 3e8c6d82bc..065c27fc46 100644 --- a/docs/cse/records-signals-entities-insights/index.md +++ b/docs/cse/records-signals-entities-insights/index.md @@ -13,73 +13,73 @@ In this section, we'll introduce the following concepts:
- Icon of a shield on a flow diagram

Insight Generation Settings

+ Icon of a shield on a flow diagram

Insight Generation Settings

Learn how to configure the detection window and the threshold activity score for insight generation.

- Icon of a shield on a flow diagram

Custom Insights

+ Icon of a shield on a flow diagram

Custom Insights

Learn how to set up custom insight configurations.

- Icon of a shield on a flow diagram

View and Manage Entities

+ Icon of a shield on a flow diagram

View and Manage Entities

Learn about all the entities in Cloud SIEM and their activity scores.

- Icon of a shield on a flow diagram

Entity Criticality

+ Icon of a shield on a flow diagram

Entity Criticality

Learn how to adjust the severity of signals for specific entities.

- Icon of a shield on a flow diagram

Custom Entity Types

+ Icon of a shield on a flow diagram

Custom Entity Types

Learn how to create custom entity types in Cloud SIEM.

- Icon of a shield on a flow diagram

Entity Groups

+ Icon of a shield on a flow diagram

Entity Groups

Learn how to automatically group entities in terms of criteria like name or IP address.

- Icon of a shield on a flow diagram

Entity Lookup Tables

+ Icon of a shield on a flow diagram

Entity Lookup Tables

Learn how to normalize the names of users and hosts (machines) in your environment.

- Icon of a shield on a flow diagram

View Records for a Signal

+ Icon of a shield on a flow diagram

View Records for a Signal

Learn how to view records associated with a signal in Cloud SIEM.

- Icon of a shield on a flow diagram

Signal Suppression

+ Icon of a shield on a flow diagram

Signal Suppression

Learn about ways to suppress and exclude Cloud SIEM signals from the insight generation process.

- Icon of a shield on a flow diagram

Search Sumo Logic for Cloud SIEM Records

+ Icon of a shield on a flow diagram

Search Sumo Logic for Cloud SIEM Records

Learn to search the Sumo Logic platform for records and signals that have been forwarded from Cloud SIEM.

- Icon of a shield on a flow diagram

Using Tags

+ Icon of a shield on a flow diagram

Using Tags

Learn how to add context to Cloud SIEM items, and search and filter items by tag.

diff --git a/docs/cse/rules/index.md b/docs/cse/rules/index.md index 8033c3f4da..d4d79f5c98 100644 --- a/docs/cse/rules/index.md +++ b/docs/cse/rules/index.md @@ -13,97 +13,97 @@ In this section, we'll introduce the following concepts:
- Flow diagram icon

About Cloud SIEM Rules

+ Flow diagram icon

About Cloud SIEM Rules

Learn about Cloud SIEM rules, rules syntax, and how to write rules.

- Flow diagram icon

Before You Write a Custom Rule

+ Flow diagram icon

Before You Write a Custom Rule

Learn how to plan a custom rule and prototype rule expressions.

- Flow diagram icon

Rules Syntax

+ Flow diagram icon

Rules Syntax

Learn about the functions you can use when writing Cloud SIEM rules.

- Flow diagram icon

Match Rule

+ Flow diagram icon

Match Rule

Learn how to write a match rule.

- Flow diagram icon

Chain Rule

+ Flow diagram icon

Chain Rule

Learn how to write a chain rule.

- Flow diagram icon

Aggregation Rule

+ Flow diagram icon

Aggregation Rule

Learn how to write an Aggregation rule.

- Flow diagram icon

Threshold Rule

+ Flow diagram icon

Threshold Rule

Learn how to write a Threshold rule.

- Flow diagram icon

First Seen Rule

+ Flow diagram icon

First Seen Rule

Learn how to write a First Seen rule.

- Flow diagram icon

Outlier Rule

+ Flow diagram icon

Outlier Rule

Learn how to write an Outlier rule.

- Flow diagram icon

Built-In Rules

+ Flow diagram icon

Built-In Rules

Look at the various page lists and Cloud SIEM's built-in rules.

- Flow diagram icon

Import YARA Rules

+ Flow diagram icon

Import YARA Rules

Learn how to import YARA rules from GitHub into Cloud SIEM.

- Flow diagram icon

Normalized Authentication Rules

+ Flow diagram icon

Normalized Authentication Rules

Detect activities that compromise accounts using authentication logs.

- Flow diagram icon

Normalized Threat Rules

+ Flow diagram icon

Normalized Threat Rules

Learn about Cloud SIEM’s built-in normalized threat rules.

- Flow diagram icon

Rule Tuning

+ Flow diagram icon

Rule Tuning

Learn how to create and use tuning expressions for rules.

- Flow diagram icon

Tailor a Global Rule

+ Flow diagram icon

Tailor a Global Rule

Learn how to tailor global (built-in) rules in Cloud SIEM.

- Flow diagram icon

Insight Trainer

+ Flow diagram icon

Insight Trainer

Learn how to adjust rules to improve insight generation.

diff --git a/docs/cse/schema/index.md b/docs/cse/schema/index.md index 42e8c71b94..95cffe764b 100644 --- a/docs/cse/schema/index.md +++ b/docs/cse/schema/index.md @@ -11,67 +11,67 @@ This guide has information about Cloud SIEM schemas. In this section, we'll intr
- Flow diagram icon

Record Processing Pipeline

+ Flow diagram icon

Record Processing Pipeline

Learn how Cloud SIEM transforms incoming raw messages into records.

- Flow diagram icon

Cloud SIEM Schema Attributes

+ Flow diagram icon

Cloud SIEM Schema Attributes

Learn about Cloud SIEM schema attributes.

- Flow diagram icon

Mappable Attributes

+ Flow diagram icon

Mappable Attributes

Learn what Cloud SIEM schema attributes you can map to records.

- Flow diagram icon

Record Types

+ Flow diagram icon

Record Types

Learn about the record types to which you can map schema attributes.

- Flow diagram icon

Parsing Language Reference

+ Flow diagram icon

Parsing Language Reference

Parsing is the first step in the Cloud SIEM record processing pipeline.

- Flow diagram icon

Log Mapping

+ Flow diagram icon

Log Mapping

Learn how to create a log mapping for structured messages.

- Flow diagram icon

Normalized Classification

+ Flow diagram icon

Normalized Classification

Set up schema fields with an enforced, Cloud SIEM-defined output.

- Flow diagram icon

Field Mappings

+ Flow diagram icon

Field Mappings

Set up field mappings for messages that you want to be processed by Cloud SIEM's normalized threat rules.

- Flow diagram icon

Parser Editor

+ Flow diagram icon

Parser Editor

Learn how to use the Parser Editor to configure and test a custom parser.

- Flow diagram icon

Username and Hostname Normalization

+ Flow diagram icon

Username and Hostname Normalization

Learn how to import YARA rules from GitHub into Cloud SIEM.

- Flow diagram icon

Parser Troubleshooting

+ Flow diagram icon

Parser Troubleshooting

Learn how to troubleshoot problems with parsers.

diff --git a/docs/cse/sensors/index.md b/docs/cse/sensors/index.md index 6ad1e09bd3..0e63c31d0e 100644 --- a/docs/cse/sensors/index.md +++ b/docs/cse/sensors/index.md @@ -14,31 +14,31 @@ In this section, we'll introduce the following concepts:
- Document icon

Ingest Zeek Logs

+ Document icon

Ingest Zeek Logs

Learn how to collect Zeek (Bro) logs and ingest them to Cloud SIEM.

- Database icon

Sensor Download Locations

+ Database icon

Sensor Download Locations

Learn about where to download the Cloud SIEM Network Sensor that's specific to your Cloud SIEM deployment.

- Arrows icon

Network Sensor Deployment

+ Arrows icon

Network Sensor Deployment

Learn about how to deploy and configure a Cloud SIEM Network Sensor.

- Wrench icon

Network Sensor Troubleshooting

+ Wrench icon

Network Sensor Troubleshooting

Learn how to troubleshoot problems with the Cloud SIEM Network Sensor.

- Wrench icon

Log Sensor Troubleshooting

+ Wrench icon

Log Sensor Troubleshooting

Learn how to collect Log Sensor status and data to support troubleshooting efforts.

diff --git a/docs/dashboards/index.md b/docs/dashboards/index.md index 1b79552c84..ed98201f90 100644 --- a/docs/dashboards/index.md +++ b/docs/dashboards/index.md @@ -16,97 +16,97 @@ In this section, we'll introduce the following concepts:
- icon

About Dashboards

+ icon

About Dashboards

Learn about the benefits of Sumo Logic dashboards and how they seamlessly integrate logs, metrics, and traces data.

- icon

Migrating from Legacy Dashboards

+ icon

Migrating from Legacy Dashboards

Learn how to migrate data from our legacy dashboards solution.

- icon

Create a Dashboard

+ icon

Create a Dashboard

Create and customize dashboards with panels and queries.

- icon

Dashboard Panels

+ icon

Dashboard Panels

Learn about the various Dashboard panels and the types of data best suited for each.

- icon

Linking Together Multiple Dashboards

+ icon

Linking Together Multiple Dashboards

Learn how to quickly link dashboards together to view related data.

- icon

Explore Monitoring Dashboards

+ icon

Explore Monitoring Dashboards

Monitoring dashboards give you an easy way to view and navigate the hierarchy of your environment.

- icon

Set Dashboard and Panel Time Ranges

+ icon

Set Dashboard and Panel Time Ranges

Learn how to set dashboard and panel time ranges.

- icon

Exporting Dashboards

+ icon

Exporting Dashboards

Learn how to export dashboards as PDF or PNG files.

- icon

FAQ

+ icon

FAQ

Find answers to frequently asked questions about our dashboards.

- icon

Root Cause Investigation

+ icon

Root Cause Investigation

Use dashboards to investigate root causes of a spike of interest.

- icon

Locate Deviations in a Time Series

+ icon

Locate Deviations in a Time Series

Learn how to create charts that locate deviations and outliers in a time series.

- icon

Restricted Operators in Dashboards

+ icon

Restricted Operators in Dashboards

Learn about the restrictions when you use operators with dashboards.

- icon

Sharing Dashboards

+ icon

Sharing Dashboards

Learn how to share a custom dashboard with colleagues.

- icon

Sharing Dashboards Outside Your Organization

+ icon

Sharing Dashboards Outside Your Organization

Learn how to share a custom dashboard outside your organization.

- icon

Advanced Features

+ icon

Advanced Features

Learn about advanced dashboard features.

diff --git a/docs/get-started/index.md b/docs/get-started/index.md index 4bfb917f3c..118afcd84d 100644 --- a/docs/get-started/index.md +++ b/docs/get-started/index.md @@ -19,55 +19,55 @@ Let's get started!
- icon

Sign up

+ icon

Sign up

Sign up for a free trial and activate your account.

- icon

Sumo Quickstart

+ icon

Sumo Quickstart

Get up and running quickly with Sumo Logic.

- icon

Sumo Overview

+ icon

Sumo Overview

Before diving in, check out our Sumo Logic overview and micro lessons.

- icon

Onboarding Tasks

+ icon

Onboarding Tasks

Must-do onboarding tasks for users and admins.

- icon

Account Preferences

+ icon

Account Preferences

Account settings, access keys, and credentials.

- icon

System Req.

+ icon

System Req.

Supported browsers and other requirements.

- icon

App Installation

+ icon

App Installation

How to install Sumo Logic apps and integrations.

- iconicon

Training

+ iconicon

Training

Sumo Logic Training and Certification offerings.

- icon

Help

+ icon

Help

Get help from Sumo Docs, Support, and more.

diff --git a/docs/integrations/amazon-aws/index.md b/docs/integrations/amazon-aws/index.md index 0a0e5fd646..8c9c7c2a3d 100644 --- a/docs/integrations/amazon-aws/index.md +++ b/docs/integrations/amazon-aws/index.md @@ -12,371 +12,371 @@ This guide has documentation for all of the apps that Sumo provides for Amazon a
Thumbnail icon -

Amazon AppFlow

+

Amazon AppFlow

A guide to the Sumo Logic integration for Amazon AppFlow.

Thumbnail icon -

Amazon AppStream 2.0

+

Amazon AppStream 2.0

A guide to the Sumo Logic integration for Amazon AppStream 2.0.

Thumbnail icon -

Amazon Athena

+

Amazon Athena

A guide to the Sumo Logic integration for Amazon Athena.

Thumbnail icon -

AWS Amplify

+

AWS Amplify

A guide to the Sumo Logic integration for AWS Amplify.

Thumbnail icon -

AWS App Runner

+

AWS App Runner

A guide to the Sumo Logic integration for AWS App Runner.

Thumbnail icon -

AWS AppSync

+

AWS AppSync

A guide to the Sumo Logic integration for AWS AppSync.

Thumbnail icon -

AWS Backup

+

AWS Backup

A guide to the Sumo Logic integration for AWS Backup.

Thumbnail icon -

Amazon Bedrock

+

Amazon Bedrock

A guide to the Sumo Logic integration for Amazon Bedrock.

Thumbnail icon -

AWS Certificate Manager

+

AWS Certificate Manager

A guide to the Sumo Logic integration for AWS Certificate Manager.

Thumbnail icon -

AWS Chatbot

+

AWS Chatbot

A guide to the Sumo Logic integration for AWS Chatbot.

Thumbnail icon -

AWS Private Certificate Authority

+

AWS Private Certificate Authority

A guide to the Sumo Logic integration for AWS Private Certificate Authority.

Thumbnail icon -

Amazon CloudFront

+

Amazon CloudFront

A guide to the Sumo Logic app for Amazon CloudFront.

Thumbnail icon -

Amazon DynamoDB

+

Amazon DynamoDB

A guide to the Sumo Logic app for Amazon DynamoDB.

Thumbnail icon -

Amazon EKS - Control Plane

+

Amazon EKS - Control Plane

A guide to the Sumo Logic app Amazon EKS Control Plane.

Thumbnail icon -

Amazon ElastiCache

+

Amazon ElastiCache

A guide to the Sumo Logic app for Amazon ElastiCache.

Thumbnail icon -

Amazon ECS

+

Amazon ECS

A guide to the Sumo Logic app for Amazon ECS.

Thumbnail icon -

Amazon ECS CW

+

Amazon ECS CW

A guide to our app for Amazon ECS CloudWatch.

Thumbnail icon -

Amazon GuardDuty

+

Amazon GuardDuty

A guide to the Sumo Logic app for Amazon GuardDuty.

Thumbnail icon -

Amazon GuardDuty Benchmark

+

Amazon GuardDuty Benchmark

A guide to the Sumo Logic app for Amazon GuardDuty Benchmark.

Thumbnail icon -

GI for Amazon GuardDuty

+

GI for Amazon GuardDuty

A guide to the Sumo Logic app for GI for Amazon GuardDuty.

Thumbnail icon -

Amazon Inspector

+

Amazon Inspector

A guide to the Sumo Logic app for Amazon Inspector.

Thumbnail icon -

Amazon Inspector App Classic

+

Amazon Inspector App Classic

A guide to the Sumo Logic app for Amazon Inspector App Classic.

Thumbnail icon -

Amazon Kinesis - Streams Classic

+

Amazon Kinesis - Streams Classic

A guide to our app for Amazon Kinesis - Streams.

Thumbnail icon -

Amazon OpenSearch

+

Amazon OpenSearch

Learn about the collection process for the Amazon OpenSearch Service.

Thumbnail icon -

AWS Network Load Balancer

+

AWS Network Load Balancer

A guide to the Sumo Logic app for AWS Network Load Balancer.

Thumbnail icon -

Amazon RDS

+

Amazon RDS

A guide to the Sumo Logic app for Amazon RDS.

Thumbnail icon -

Amazon Redshift ULM

+

Amazon Redshift ULM

A guide to our app for Amazon Redshift ULM.

Thumbnail icon -

Route53 Resolver Security

+

Route53 Resolver Security

A guide to our app for Route53 Resolver Security.

Thumbnail icon -

Amazon S3 Audit

+

Amazon S3 Audit

A guide to the Sumo Logic app for Amazon S3 Audit.

Thumbnail icon -

Amazon Security QuickStart

+

Amazon Security QuickStart

A guide to our Security QuickStart app.

Thumbnail icon -

Amazon SES

+

Amazon SES

A guide to the Sumo Logic app for Amazon SES.

Thumbnail icon -

Amazon SNS

+

Amazon SNS

A guide to the Sumo Logic app for Amazon SNS.

Thumbnail icon -

Amazon SQS

+

Amazon SQS

A guide to the Sumo Logic app for Amazon SQS.

Thumbnail icon -

VPC Flow Logs

+

VPC Flow Logs

A guide to the Sumo Logic app for Amazon VPC Flow Logs.

Thumbnail icon -

PCI Compliance - VPC Flow Logs

+

PCI Compliance - VPC Flow Logs

A guide to our PCI app for VPC Flow Logs.

Thumbnail icon -

AWS API Gateway

+

AWS API Gateway

A guide to the Sumo Logic app for AWS API Gateway.

Thumbnail icon -

AWS ALB

+

AWS ALB

A guide to our AWS Application Load Balancer app.

Thumbnail icon -

AWS Classic Load Balancer

+

AWS Classic Load Balancer

A guide to our Classic Load Balancer app.

Thumbnail icon -

AWS CloudTrail

+

AWS CloudTrail

A guide to the Sumo Logic app for AWS CloudTrail.

Thumbnail icon -

GI for AWS CloudTrail SecOps

+

GI for AWS CloudTrail SecOps

A guide to the GI for AWS CloudTrail SecOps app.

Thumbnail icon -

GI for AWS CloudTrail DevOps

+

GI for AWS CloudTrail DevOps

A guide to the GI for AWS CloudTrail DevOps app.

Thumbnail icon -

PCI Compliance - CloudTrail

+

PCI Compliance - CloudTrail

A guide to our PCI CloudTrail app.

Thumbnail icon -

AWS Config

+

AWS Config

A guide to the Sumo Logic app for AWS Config.

icon -

AWS Cost Explorer

+

AWS Cost Explorer

A guide to the Sumo Logic app for AWS Cost Explorer.

Thumbnail icon -

AWS EC2 CW Metrics

+

AWS EC2 CW Metrics

A guide to our app for AWS EC2 CW Metrics.

Thumbnail icon -

AWS EC2 Host Metrics

+

AWS EC2 Host Metrics

A guide to our app for AWS EC2 Host Metrics.

Thumbnail icon -

AWS Elastic Load Balancing

+

AWS Elastic Load Balancing

A guide to the Sumo Logic app for AWS ELB.

Thumbnail icon -

AWS Lambda

+

AWS Lambda

A guide to the Sumo Logic app for AWS Lambda.

Thumbnail icon -

AWS Network Firewall

+

AWS Network Firewall

A guide to our app for AWS Network Firewall.

Thumbnail icon -

AWS Security Hub

+

AWS Security Hub

A guide to the Sumo Logic app for AWS Security Hub.

Thumbnail icon -

AWS WAF

+

AWS WAF

A guide to the Sumo Logic app for AWS WAF.

Thumbnail icon -
CIS AWS Foundations Benchmark App
+
CIS AWS Foundations Benchmark App

A guide to our CIS AWS Foundations Benchmark app.

Thumbnail icon -

AWS Foundations Benchmark App

+

AWS Foundations Benchmark App

A guide to the Sumo Logic app for AWS Threat Intel.

diff --git a/docs/integrations/app-development/index.md b/docs/integrations/app-development/index.md index 079b3cff53..1abce0db05 100644 --- a/docs/integrations/app-development/index.md +++ b/docs/integrations/app-development/index.md @@ -11,62 +11,62 @@ Sumo Logic provides apps for platforms and tools that support software developme
- Thumbnail icon

Bitbucket

+ Thumbnail icon

Bitbucket

A guide to Sumo Logic apps for Bitbucket.

- Thumbnail icon

GitHub

+ Thumbnail icon

GitHub

A guide to Sumo Logic apps for GitHub.

- Thumbnail icon

GitLab

+ Thumbnail icon

GitLab

A guide to Sumo Logic apps for GitLab.

- Thumbnail icon

Jenkins

+ Thumbnail icon

Jenkins

A guide to Sumo Logic apps for Jenkins.

- Thumbnail icon

JFrog Artifactory

+ Thumbnail icon

JFrog Artifactory

A guide to Sumo Logic apps for JFrog Artifactory.

- Thumbnail icon

JFrog Xray

+ Thumbnail icon

JFrog Xray

A guide to Sumo Logic apps for JFrog Xray.

Thumbnail icon -

Jira

+

Jira

A guide to Sumo Logic apps for Jira.

- Thumbnail icon

Jira Cloud

+ Thumbnail icon

Jira Cloud

A guide to Sumo Logic apps for Jira Cloud.

- Thumbnail icon

JMX

+ Thumbnail icon

JMX

A guide to Sumo Logic apps for JMX.

- Thumbnail icon

Puppet

+ Thumbnail icon

Puppet

A guide to Sumo Logic apps for Puppet.

diff --git a/docs/integrations/cloud-security-monitoring-analytics/index.md b/docs/integrations/cloud-security-monitoring-analytics/index.md index 2913366886..4d37318186 100644 --- a/docs/integrations/cloud-security-monitoring-analytics/index.md +++ b/docs/integrations/cloud-security-monitoring-analytics/index.md @@ -16,70 +16,70 @@ import CisNote from '../../reuse/cis-note.md';
Thumbnail icon -

Amazon GuardDuty

+

Amazon GuardDuty

A guide to Amazon GuardDuty Cloud Security Monitoring and Analytics.

Thumbnail icon -

Amazon VPC Flow

+

Amazon VPC Flow

A guide to the Sumo Logic app for Amazon VPC Flow.

Amazon CloudTrail - Cloud Security Monitoring and Analytics icon -

Amazon CloudTrail

+

Amazon CloudTrail

A guide to the Sumo Logic app for Amazon CloudTrail - Cloud Security Monitoring and Analytics

Thumbnail icon -

AWS Security Hub

+

AWS Security Hub

A guide to the Sumo Logic app for AWS Security Hub.

Thumbnail icon -

WAF

+

WAF

A guide to the Sumo Logic app for AWS WAF Security Analytics.

Thumbnail icon -

Linux

+

Linux

A guide to the Sumo Logic app for Linux Cloud Security Monitoring and Analytics.

Thumbnail icon -

Linux - OpenTelemetry

+

Linux - OpenTelemetry

A guide to the Sumo Logic app for Linux Cloud Security Monitoring and Analytics via OpenTelemetry filelog receiver.

Thumbnail icon -

Palo Alto Firewall 9

+

Palo Alto Firewall 9

A guide to the Sumo Logic app for Palo Alto Firewall 9 - Cloud Security Monitoring and Analytics.

Thumbnail icon -

Palo Alto Firewall 10

+

Palo Alto Firewall 10

A guide to the Sumo Logic app for Palo Alto Firewall 10 - Cloud Security Monitoring and Analytics.

Thumbnail icon -

Windows

+

Windows

A guide to the Sumo Logic app for Windows - Cloud Security Monitoring and Analytics.

diff --git a/docs/integrations/containers-orchestration/index.md b/docs/integrations/containers-orchestration/index.md index fb1f75b3dd..d707c90390 100644 --- a/docs/integrations/containers-orchestration/index.md +++ b/docs/integrations/containers-orchestration/index.md @@ -12,77 +12,77 @@ This guide has documentation Sumo apps for container management and orchestratio
Thumbnail icon -

Active MQ

+

Active MQ

A guide to the Sumo Logic App for ActiveMQ.

Thumbnail icon -

Docker Community Edition

+

Docker Community Edition

A guide to Sumo Logic app for Docker Community Edition.

Thumbnail icon -

Docker ULM

+

Docker ULM

A guide to the Sumo Logic app for Docker ULM.

Thumbnail icon -

Kafka

+

Kafka

A guide to the Sumo Logic app for Kafka related features and technologies.

Thumbnail icon -

Strimzi Kafka

+

Strimzi Kafka

A guide to collecting logs and metrics for Strimzi Kafka.

Thumbnail icon -

Kubernetes

+

Kubernetes

A guide to the Sumo Logic app for Kubernetes.

Thumbnail icon -

Kubernetes Control Plane

+

Kubernetes Control Plane

A guide to the Sumo Logic app for Kubernetes Control Pane.

Thumbnail icon -

RabbitMQ

+

RabbitMQ

A guide to the Sumo Logic app for RabbitMQ.

Thumbnail icon -

VMware

+

VMware

A guide to the Sumo Logic app for VMware.

Thumbnail icon -

VMware Legacy

+

VMware Legacy

A guide to the Sumo Logic app for VMware Legacy.

Thumbnail icon -

VMware Tanzu Application Service

+

VMware Tanzu Application Service

A guide to the Sumo Logic app for VMware Tanzu Application Service.

diff --git a/docs/integrations/databases/index.md b/docs/integrations/databases/index.md index e16136b5fa..1be3653f47 100644 --- a/docs/integrations/databases/index.md +++ b/docs/integrations/databases/index.md @@ -9,67 +9,106 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; This guide has documentation for Sumo apps for database servers.
-
-
- Thumbnail icon

Cassandra

-

Monitor the availability, performance, health, and resource utilization of your Cassandra clusters.

+
+
+ + Thumbnail icon +

Cassandra

+
+

Monitor the availability, performance, health, and resource utilization of your Cassandra clusters.

+
-
-
-
- Thumbnail icon

Couchbase

-

Monitor Couchbase cluster activity, errors, and health.

+ +
+
+ + Thumbnail icon +

Couchbase

+
+

Monitor Couchbase cluster activity, errors, and health.

+
-
-
+ +
- Thumbnail icon

Elasticsearch

+ + Thumbnail icon +

Elasticsearch

+

Monitor the availability, performance, health, and resource utilization of your Elasticsearch clusters.

-
-
-
- Thumbnail icon

MariaDB

+
+ +
+
+ + Thumbnail icon +

MariaDB

+

Monitor the availability, performance, and resource utilization of your MariaDB clusters.

-
-
-
- Thumbnail icon

Memcached

+
+ +
+
+ + Thumbnail icon +

Memcached

+

Monitor the availability, performance, health, and resource utilization of your Memcached clusters.

-
-
-
- Thumbnail icon

MongoDB

+
+ +
+
+ + Thumbnail icon +

MongoDB

+

Insight into overall system health, queries, logins, connections, errors and warnings, replication, and sharding.

-
-
- + +
+
+ + Thumbnail icon +

MongoDB Atlas

+

Visibility into the security posture of your clusters, performance KPIs, and database operational activities.

-
-
-
- Thumbnail icon

MySQL

+
+ +
+
+ + Thumbnail icon +

MySQL

+

Gain insight into the health of your MySQL servers, replication status, and errors.

-
-
- + +
+
+ + Thumbnail icon +

PostgreSQL

+

Track your performance, logins, connections, errors, and overall system health.

-
-
-
- Thumbnail icon

Redis

+
+ +
+
+ + Thumbnail icon +

Redis

+

Monitor the state of your Redis database cluster.

-
+

diff --git a/docs/integrations/global-intelligence/index.md b/docs/integrations/global-intelligence/index.md index be609b22e1..68a44f03d2 100644 --- a/docs/integrations/global-intelligence/index.md +++ b/docs/integrations/global-intelligence/index.md @@ -13,57 +13,56 @@ Our Global Intelligence Service apps provide security teams with valuable real-t
- icon -

Global Intelligence for Apache

+ icon

Global Intelligence for Apache

A guide to the Sumo Logic app for GI for Apache.

icon -

Global Intelligence for Apache Tomcat

+

Global Intelligence for Apache Tomcat

A guide to the Sumo Logic app for GI for Apache Tomcat.

icon -

Global Intelligence for Kubernetes DevOps

+

Global Intelligence for Kubernetes DevOps

A guide to the Sumo Logic app for GI for Kubernetes DevOps.

Thumbnail icon -

Global Intelligence for Nginx

+

Global Intelligence for Nginx

A guide to the Sumo Logic app for GI for Nginx.

icon -

Global Intelligence for Security Insights

+

Global Intelligence for Security Insights

A guide to the Sumo Logic app for GI for Security Insights (Cloud SIEM).

Thumbnail icon -

Global Intelligence for AWS CloudTrail DevOps

+

Global Intelligence for AWS CloudTrail DevOps

A guide to the Sumo Logic app for GI for AWS CloudTrail DevOps.

Thumbnail icon -

Global Intelligence for AWS CloudTrail SecOps

+

Global Intelligence for AWS CloudTrail SecOps

A guide to the Sumo Logic app for GI for AWS CloudTrail SecOps.

Thumbnail icon -

Global Intelligence for Amazon GuardDuty

+

Global Intelligence for Amazon GuardDuty

A guide to the Sumo Logic app for GI for Amazon GuardDuty.

diff --git a/docs/integrations/google/index.md b/docs/integrations/google/index.md index 3153f8ae5e..78754276b6 100644 --- a/docs/integrations/google/index.md +++ b/docs/integrations/google/index.md @@ -11,335 +11,335 @@ This guide has documentation for all of the apps that Sumo Logic provides for Go
- Thumbnail icon

Google Cloud AlloyDB for PostgreSQL

+ Thumbnail icon

Google Cloud AlloyDB for PostgreSQL

A guide to the Sumo Logic app for Google Cloud AlloyDB for PostgreSQL.

- Thumbnail icon

Google Cloud API Gateway

+ Thumbnail icon

Google Cloud API Gateway

A guide to the Sumo Logic app for Google Cloud API Gateway.

- Thumbnail icon

Google Cloud APIs

+ Thumbnail icon

Google Cloud APIs

A guide to the Sumo Logic app for Google Cloud APIs.

Thumbnail icon -

Google Cloud Armor

+

Google Cloud Armor

A guide to the Sumo Logic app for Google Cloud Armor.

Thumbnail icon -

Google Cloud Auto Scaler

+

Google Cloud Auto Scaler

A guide to the Sumo Logic app for Google Cloud Auto Scaler.

Thumbnail icon -

Google Cloud Backup for GKE

+

Google Cloud Backup for GKE

A guide to the Sumo Logic app for Google Cloud Backup for GKE.

Thumbnail icon -

Google Cloud BigQuery BI Engine

+

Google Cloud BigQuery BI Engine

A guide to the Sumo Logic app for Google Cloud BigQuery BI Engine.

Thumbnail icon -

Google Cloud Bigtable

+

Google Cloud Bigtable

A guide to the Sumo Logic app for Google Cloud Bigtable.

Thumbnail icon -

Google Cloud Certificate Authority Service

+

Google Cloud Certificate Authority Service

A guide to the Sumo Logic app for Google Cloud Certificate Authority Service.

Thumbnail icon -

Google Cloud Certificate Manager

+

Google Cloud Certificate Manager

A guide to the Sumo Logic app for Google Cloud Certificate Manager.

Thumbnail icon -

Google Cloud Composer

+

Google Cloud Composer

A guide to the Sumo Logic app for Google Cloud Composer.

Thumbnail icon -

Google Cloud Dataflow

+

Google Cloud Dataflow

A guide to the Sumo Logic app for Google Cloud Dataflow.

Thumbnail icon -

Google Cloud Dataproc Metastore

+

Google Cloud Dataproc Metastore

A guide to the Sumo Logic app for Google Cloud Dataproc Metastore.

Thumbnail icon -

Google Cloud Dataproc

+

Google Cloud Dataproc

A guide to the Sumo Logic app for Google Cloud Dataproc.

Thumbnail icon -

Google Cloud Datastore

+

Google Cloud Datastore

A guide to the Sumo Logic app for Google Cloud Datastore.

Thumbnail icon -

Google Cloud Datastream

+

Google Cloud Datastream

A guide to the Sumo Logic app for Google Cloud Datastream.

Thumbnail icon -

Google Cloud Deploy

+

Google Cloud Deploy

A guide to the Sumo Logic app for Google Cloud Deploy.

Thumbnail icon -

Google Cloud Filestore

+

Google Cloud Filestore

A guide to the Sumo Logic app for Google Cloud Filestore.

Thumbnail icon -

Google Cloud Firebase

+

Google Cloud Firebase

A guide to the Sumo Logic app for Google Cloud Firebase.

Thumbnail icon -

Google Cloud Firestore

+

Google Cloud Firestore

A guide to the Sumo Logic app for Google Cloud Firestore.

Thumbnail icon -

Google Cloud Fleet Engine

+

Google Cloud Fleet Engine

A guide to the Sumo Logic app for Google Cloud Fleet Engine.

Thumbnail icon -

Google Cloud Interconnect

+

Google Cloud Interconnect

A guide to the Sumo Logic app for Google Cloud Interconnect.

Thumbnail icon -

Google Cloud Logging

+

Google Cloud Logging

A guide to the Sumo Logic app for Google Cloud Logging.

Thumbnail icon -

Google Cloud Memorystore for Redis

+

Google Cloud Memorystore for Redis

A guide to the Sumo Logic app for Google Cloud Memorystore for Redis.

Thumbnail icon -

Google Cloud Net App Cloud Volumes Service

+

Google Cloud Net App Cloud Volumes Service

A guide to the Sumo Logic app for Google Cloud Net App Cloud Volumes Service.

Thumbnail icon -

Google Cloud Network Topology

+

Google Cloud Network Topology

A guide to the Sumo Logic app for Google Cloud Network Topology.

Thumbnail icon -

Google Cloud Pub Sub

+

Google Cloud Pub Sub

A guide to the Sumo Logic app forGoogle Cloud Pub Sub.

Thumbnail icon -

Google Cloud Router

+

Google Cloud Router

A guide to the Sumo Logic app for Google Cloud Router.

- Thumbnail icon

Google Cloud Run

+ Thumbnail icon

Google Cloud Run

A guide to the Sumo Logic app for Google Cloud Run.

- Thumbnail icon

Google Cloud Spanner

+ Thumbnail icon

Google Cloud Spanner

A guide to the Sumo Logic app for Google Cloud Spanner.

- Thumbnail icon

Google Cloud Tasks

+ Thumbnail icon

Google Cloud Tasks

A guide to the Sumo Logic app for Google Cloud Tasks.

- Thumbnail icon

Google Cloud TPU

+ Thumbnail icon

Google Cloud TPU

A guide to the Sumo Logic app for Google Cloud TPU.

- Thumbnail icon

Google Cloud Trace

+ Thumbnail icon

Google Cloud Trace

A guide to the Sumo Logic app for Google Cloud Trace.

- Thumbnail icon

Google Cloud Traffic Director

+ Thumbnail icon

Google Cloud Traffic Director

A guide to the Sumo Logic app for Google Cloud Traffic Director.

- Thumbnail icon

Google Cloud Vertex AI

+ Thumbnail icon

Google Cloud Vertex AI

A guide to the Sumo Logic app for Google Cloud Vertex AI.

- Thumbnail icon

Google Cloud VPN

+ Thumbnail icon

Google Cloud VPN

A guide to the Sumo Logic app for Google Cloud VPN.

- Thumbnail icon

Google App Engine

+ Thumbnail icon

Google App Engine

A guide to the Sumo Logic app for Google App Engine.

- Thumbnail icon

Google BigQuery

+ Thumbnail icon

Google BigQuery

A guide to the Sumo Logic app for Google BigQuery.

Thumbnail icon -

Google Cloud Audit

+

Google Cloud Audit

A guide to the Sumo Logic app for Google Cloud Audit.

Thumbnail icon -

Google Cloud Firewall

+

Google Cloud Firewall

A guide to the Sumo Logic app for Google Cloud Firewall.

- Thumbnail icon

Google Cloud Bigtable

+ Thumbnail icon

Google Cloud Bigtable

A guide to the Sumo Logic app for Google Cloud Bigtable.

- Thumbnail icon

Google Cloud Functions

+ Thumbnail icon

Google Cloud Functions

A guide to the Sumo Logic app for Google Cloud Functions.

Thumbnail icon -

Google Cloud IAM

+

Google Cloud IAM

A guide to the Sumo Logic app for Google Cloud IAM.

Thumbnail icon -

Google Cloud Load Balancing

+

Google Cloud Load Balancing

A guide to the Sumo Logic app for Google Cloud Load Balancing.

Thumbnail icon -

Google Cloud SQL

+

Google Cloud SQL

A guide to the Sumo Logic app for Google Cloud SQL.

Thumbnail icon -

Google Cloud Storage

+

Google Cloud Storage

A guide to the Sumo Logic app for Google Cloud Storage.

Thumbnail icon -

Google Cloud VPC

+

Google Cloud VPC

A guide to the Sumo Logic app for Google Cloud VPC.

- Thumbnail icon

Google Compute Engine

+ Thumbnail icon

Google Compute Engine

A guide to the Sumo Logic app for Google Compute Engine.

Thumbnail icon -

Google Kubernetes Engine (GKE)

+

Google Kubernetes Engine (GKE)

A guide to the Sumo Logic app for Google Kubernetes Engine.

thumbnail icon -

Google Workspace

+

Google Workspace

A guide to the Sumo Logic app for Google Workspace.

diff --git a/docs/integrations/hosts-operating-systems/index.md b/docs/integrations/hosts-operating-systems/index.md index a6ee85c784..030ee9aacc 100644 --- a/docs/integrations/hosts-operating-systems/index.md +++ b/docs/integrations/hosts-operating-systems/index.md @@ -14,28 +14,28 @@ If you're looking for an app for Microsoft Windows, see [Microsoft and Azure](/d
Thumbnail icon -

Host Metrics

+

Host Metrics

A guide to the Sumo Logic app for Host Metrics.

Thumbnail icon -

Host and Process Metrics

+

Host and Process Metrics

A guide to the Sumo Logic app for Host and Process Metrics.

Thumbnail icon -

Linux

+

Linux

A guide to the Sumo Logic app for Linux.

Thumbnail icon -

Linux Performance (Deprecated)

+

Linux Performance (Deprecated)

A guide to the Sumo Logic app for Linux Performance.

diff --git a/docs/integrations/index.md b/docs/integrations/index.md index caf73c7d83..3c947292a9 100644 --- a/docs/integrations/index.md +++ b/docs/integrations/index.md @@ -64,121 +64,121 @@ Watch this tutorial to learn how to use our **App Catalog**.
- Thumbnail icon

Product List

+ Thumbnail icon

Product List

A list of all the products that Sumo Logic integrates with.

- Thumbnail icon

Amazon/AWS

+ Thumbnail icon

Amazon/AWS

A guide to Sumo Logic apps for Amazon and AWS products.

- Thumbnail icon

Microsoft/Azure

+ Thumbnail icon

Microsoft/Azure

A guide to Sumo Logic apps for Microsoft and Azure.

- Thumbnail icon

Google

+ Thumbnail icon

Google

A guide to Sumo Logic apps for Google products, such as Workspace.

- Thumbnail icon

App Development

+ Thumbnail icon

App Development

Monitor your platforms and tools that support software development and automation.

- Thumbnail icon

Containers

+ Thumbnail icon

Containers

A guide to Sumo Logic apps for container management, such as Kubernetes and Docker.

- icon

Cloud Security Monitoring/Analytics

+ icon

Cloud Security Monitoring/Analytics

A guide to Sumo Logic apps for cloud security data source.

- Thumbnail icon

Database Servers

+ Thumbnail icon

Database Servers

A guide to Sumo Logic apps for database servers, such as Oracle and MongoDB.

- icon

Global Intelligence

+ icon

Global Intelligence

Sumo Logic apps for Global Intelligence provide valuable real-time security intelligence.

- Thumbnail icon

Hosts and Operating Systems

+ Thumbnail icon

Hosts and Operating Systems

Monitor host metrics and the Linux OS.

- PCI Compliance icon

PCI Compliance

+ PCI Compliance icon

PCI Compliance

Meet evolving PCI requirements without the data hassle.

- Thumbnail icon

SaaS/Cloud

+ Thumbnail icon

SaaS/Cloud

Learn about Sumo Logic apps for SaaS and Cloud applications.

- Thumbnail icon

SAML

+ Thumbnail icon

SAML

A guide to Sumo Logic apps for SAML.

- thumbnail icon

Security and Threat Detection

+ thumbnail icon

Security and Threat Detection

Learn about Sumo apps for Security and Threat Detection.

- Thumbnail icon

Sumo Logic Apps

+ Thumbnail icon

Sumo Logic Apps

Use these apps to monitor your Sumo Logic org activities and data volume.

- Thumbnail icon

Web Servers

+ Thumbnail icon

Web Servers

A guide to Sumo Logic apps for web servers, such as Apache, Nginx, and Squid Proxy.

- Thumbnail icon

Apps for Sumo Logic Account Plans

+ Thumbnail icon

Apps for Sumo Logic Account Plans

Apps for various Sumo Logic account plans.

- Thumbnail icon

Community Ecosystem Apps

+ Thumbnail icon

Community Ecosystem Apps

Community Ecosystem Apps Listing and program description.

- Thumbnail icon

Partner Ecosystem Apps

+ Thumbnail icon

Partner Ecosystem Apps

Third-party Sumo Logic apps for partners including Auth0, CircleCI, and more.

- Thumbnail icon

Partner Integrations

+ Thumbnail icon

Partner Integrations

Sumo Logic Partner Integrations are provided and supported by our partner network.

diff --git a/docs/integrations/microsoft-azure/index.md b/docs/integrations/microsoft-azure/index.md index adac828efc..88e9c920ef 100644 --- a/docs/integrations/microsoft-azure/index.md +++ b/docs/integrations/microsoft-azure/index.md @@ -12,405 +12,405 @@ This guide has documentation for all of the apps that Sumo Logic provides for Mi
Thumbnail icon -

Active Directory JSON

+

Active Directory JSON

A guide to the Sumo Logic app for Active Directory JSON.

Thumbnail icon -

Active Directory (Legacy)

+

Active Directory (Legacy)

A guide to the Sumo Logic app for Active Directory (Legacy).

Thumbnail icon -

Azure Active Directory

+

Azure Active Directory

A guide to the Sumo Logic app for Active Directory Azure.

Thumbnail icon -

Azure Analysis Services

+

Azure Analysis Services

A guide to the Sumo Logic integration for Azure Analysis Services.

Thumbnail icon -

Azure Audit

+

Azure Audit

A guide to the Sumo Logic app for Azure Audit.

Thumbnail icon -

Azure API Management

+

Azure API Management

A guide to the Sumo Logic integration for Azure API Management.

Thumbnail icon -

Azure App Configuration

+

Azure App Configuration

A guide to the Sumo Logic integration for Azure App Configuration.

Thumbnail icon -

Azure App Service Environment

+

Azure App Service Environment

A guide to the Sumo Logic integration for Azure App Service Environment.

Thumbnail icon -

Azure App Service Plan

+

Azure App Service Plan

A guide to the Sumo Logic integration for Azure App Service Plan.

Thumbnail icon -

Azure Application Gateway

+

Azure Application Gateway

A guide to the Sumo Logic integration for Azure Application Gateway.

Thumbnail icon -

Azure Automation

+

Azure Automation

A guide to the Sumo Logic integration for Azure Automation.

Thumbnail icon -

Azure Backup

+

Azure Backup

A guide to the Sumo Logic integration for Azure Backup.

Thumbnail icon -

Azure Batch

+

Azure Batch

A guide to the Sumo Logic integration for Azure Batch.

Thumbnail icon -

Azure Cache for Redis

+

Azure Cache for Redis

A guide to the Sumo Logic integration for Azure Cache for Redis.

Thumbnail icon -

Azure Cognitive Search

+

Azure Cognitive Search

A guide to the Sumo Logic integration for Azure Cognitive Search.

Thumbnail icon -

Azure Cosmos DB for PostgreSQL

+

Azure Cosmos DB for PostgreSQL

A guide to the Sumo Logic integration for Azure Cosmos DB for PostgreSQL.

Thumbnail icon -

Azure Cosmos DB

+

Azure Cosmos DB

A guide to the Sumo Logic integration for Azure Cosmos DB.

Thumbnail icon -

Azure Data Explorer

+

Azure Data Explorer

A guide to the Sumo Logic integration for Azure Data Explorer.

Thumbnail icon -

Azure Data Factory

+

Azure Data Factory

A guide to the Sumo Logic integration for Azure Data Factory.

Thumbnail icon -

Azure Database for MariaDB

+

Azure Database for MariaDB

A guide to the Sumo Logic integration for Azure Database for MariaDB.

Thumbnail icon -

Azure Database for MySQL

+

Azure Database for MySQL

A guide to the Sumo Logic integration for Azure Database for MySQL.

Thumbnail icon -

Azure Database for PostgreSQL

+

Azure Database for PostgreSQL

A guide to the Sumo Logic integration for Azure Database for PostgreSQL.

Thumbnail icon -

Azure Event Grid

+

Azure Event Grid

A guide to the Sumo Logic integration for Azure Event Grid.

Thumbnail icon -

Azure Event Hubs

+

Azure Event Hubs

A guide to the Sumo Logic integration for Azure Event Hubs.

Thumbnail icon -

Azure Front Door

+

Azure Front Door

A guide to the Sumo Logic integration for Azure Front Door.

Thumbnail icon -

Azure Functions

+

Azure Functions

A guide to the Sumo Logic integration for Azure Functions.

Thumbnail icon -

Azure HDInsight

+

Azure HDInsight

A guide to the Sumo Logic integration for Azure HDInsight.

Thumbnail icon -

Azure IoT Hub

+

Azure IoT Hub

A guide to the Sumo Logic integration for Azure IoT Hub.

Thumbnail icon -

Azure Key Vault

+

Azure Key Vault

A guide to the Sumo Logic integration for Azure Key Vault.

Thumbnail icon -

Azure Load Balancer

+

Azure Load Balancer

A guide to the Sumo Logic integration for Azure Load Balancer.

Thumbnail icon -

Azure Logic App

+

Azure Logic App

A guide to the Sumo Logic integration for Azure Logic App.

Thumbnail icon -

Azure Machine Learning

+

Azure Machine Learning

A guide to the Sumo Logic integration for Azure Machine Learning.

Thumbnail icon -

Azure Network Interface

+

Azure Network Interface

A guide to the Sumo Logic integration for Azure Network Interface.

Thumbnail icon -

Azure Notification Hubs

+

Azure Notification Hubs

A guide to the Sumo Logic integration for Azure Notification Hubs.

Thumbnail icon -

Azure IP Addresses

+

Azure IP Addresses

A guide to the Sumo Logic integration for Azure IP Addresses.

Thumbnail icon -

Azure Relay

+

Azure Relay

A guide to the Sumo Logic integration for Azure Relay.

Thumbnail icon -

Azure Service Bus

+

Azure Service Bus

A guide to the Sumo Logic integration for Azure Service Bus.

Thumbnail icon -

Azure SQL Elastic Pool

+

Azure SQL Elastic Pool

A guide to the Sumo Logic integration for Azure SQL Elastic Pool.

Thumbnail icon -

Azure SQL Managed Instance

+

Azure SQL Managed Instance

A guide to the Sumo Logic integration for Azure SQL Managed Instance.

Thumbnail icon -

Azure Storage

+

Azure Storage

A guide to the Sumo Logic integration for Azure Storage.

Thumbnail icon -

Azure Stream Analytics

+

Azure Stream Analytics

A guide to the Sumo Logic integration for Azure Stream Analytics.

Thumbnail icon -

Azure Synapse Analytics

+

Azure Synapse Analytics

A guide to the Sumo Logic integration for Azure Synapse Analytics.

Thumbnail icon -

Azure Virtual Network

+

Azure Virtual Network

A guide to the Sumo Logic integration for Azure Virtual Network.

Thumbnail icon -

Azure Kubernetes Service Control Plane

+

Azure Kubernetes Service Control Plane

A guide to the Sumo Logic app for Azure Kubernetes Service Control Plane.

- thumbnail icon

Microsoft Defender for Cloud

+ thumbnail icon

Microsoft Defender for Cloud

Learn about the Sumo Logic collection process for the Microsoft Defender for Cloud service.

Thumbnail icon -

Azure Network Watcher

+

Azure Network Watcher

A guide to the Sumo Logic app for Azure Network Watcher.

Thumbnail icon -

Azure SQL

+

Azure SQL

A guide to the Sumo Logic app for Azure SQL.

Thumbnail icon -

Azure Web Apps

+

Azure Web Apps

A guide to the Sumo Logic app for Azure Web Apps.

Thumbnail icon -

IIS 7

+

IIS 7

A guide to the Sumo Logic app for IIS 7.

Thumbnail icon -

Microsoft Dynamics 365 Customer Insights

+

Microsoft Dynamics 365 Customer Insights

A guide to the Sumo Logic app for Microsoft Dynamics 365 Customer Insights.

Thumbnail icon -

Microsoft Graph Identity Protection

+

Microsoft Graph Identity Protection

A guide to the Sumo Logic app for Microsoft Graph Identity Protection.

Thumbnail icon -

Microsoft Office Audit 365

+

Microsoft Office Audit 365

A guide to the Sumo Logic app for Microsoft Office Audit 365.

Thumbnail icon -

Microsoft SQL Server

+

Microsoft SQL Server

A guide to the Sumo Logic app for Microsoft SQL Server.

Thumbnail icon -

Microsoft Teams

+

Microsoft Teams

A guide to the Sumo Logic app for Microsoft Teams.

Thumbnail icon -

PCI Compliance for Windows JSON

+

PCI Compliance for Windows JSON

A guide to the Sumo Logic app for PCI Compliance for Windows JSON.

Thumbnail icon -

Windows JSON

+

Windows JSON

A guide to the Sumo Logic app for Windows JSON.

Thumbnail icon -

Windows Legacy

+

Windows Legacy

A guide to the Sumo Logic app for Windows Legacy.

Thumbnail icon -

Windows Performance

+

Windows Performance

A guide to the Sumo Logic app for Windows Performance.

diff --git a/docs/integrations/pci-compliance/index.md b/docs/integrations/pci-compliance/index.md index 00d3dea745..07c6d08a62 100644 --- a/docs/integrations/pci-compliance/index.md +++ b/docs/integrations/pci-compliance/index.md @@ -18,56 +18,56 @@ With the Sumo Logic apps for PCI Compliance, you can meet evolving PCI requireme
Thumbnail icon -

PCI Compliance for Linux - OpenTelemetry

+

PCI Compliance for Linux - OpenTelemetry

A guide to the Sumo Logic app for PCI Compliance for Linux.

Thumbnail icon -

PCI Compliance for Windows JSON - OpenTelemetry

+

PCI Compliance for Windows JSON - OpenTelemetry

A guide to the Sumo Logic app for PCI Compliance for Windows JSON using OpenTelemetry.

Thumbnail icon -

PCI Compliance for AWS CloudTrail(Legacy)

+

PCI Compliance for AWS CloudTrail(Legacy)

A guide to the Sumo Logic app for PCI Compliance for AWS CloudTrail(Legacy).

Thumbnail icon -

PCI Compliance for Amazon VPC Flow Logs

+

PCI Compliance for Amazon VPC Flow Logs

A guide to the Sumo Logic app for PCI Compliance for Amazon VPC Flow Logs.

Thumbnail icon -

PCI Compliance for Linux

+

PCI Compliance for Linux

A guide to the Sumo Logic app for PCI Compliance for Linux.

Thumbnail icon -

PCI Compliance for Palo Alto Networks 9

+

PCI Compliance for Palo Alto Networks 9

A guide to the Sumo Logic app for PCI Compliance for Palo Alto Networks 9.

Thumbnail icon -

PCI Compliance for Palo Alto Networks 10 (Legacy)

+

PCI Compliance for Palo Alto Networks 10 (Legacy)

A guide to the Sumo Logic app for PCI Compliance for Palo Alto Networks 10(Legacy).

Thumbnail icon -

PCI Compliance for Windows JSON

+

PCI Compliance for Windows JSON

A guide to the Sumo Logic app for PCI Compliance for Windows JSON.

diff --git a/docs/integrations/product-list/index.md b/docs/integrations/product-list/index.md index d66ba7217c..9173f9c294 100644 --- a/docs/integrations/product-list/index.md +++ b/docs/integrations/product-list/index.md @@ -22,13 +22,13 @@ See the following articles for the vendors and products that Sumo Logic integrat
- List icon

Product List A-L

+ List icon

Product List A-L

List of vendors and products A-L that Sumo Logic integrates with.

- List icon

Product List M-Z

+ List icon

Product List M-Z

List of vendors and products M-Z that Sumo Logic integrates with.

diff --git a/docs/integrations/saas-cloud/index.md b/docs/integrations/saas-cloud/index.md index 0f0944ec49..3f57543f2f 100644 --- a/docs/integrations/saas-cloud/index.md +++ b/docs/integrations/saas-cloud/index.md @@ -11,343 +11,343 @@ Learn about the Sumo Logic apps for SaaS and Cloud applications.
- Thumbnail icon

1Password

+ Thumbnail icon

1Password

1Password helps you monitor your 1Password account’s sign-in and item usage events.

- icon

Abnormal Security

+ icon

Abnormal Security

Gain robust monitoring of email security threats.

- icon

Acquia

+ icon

Acquia

Gain visibility into your key Acquia platform components.

- airtable-icon.png

Airtable

+ airtable-icon.png

Airtable

Monitor and analyze your Airtable audit logs.

- icon

Akamai Cloud Monitor

+ icon

Akamai Cloud Monitor

Analyze and correlate Akamai data with origin data.

- icon

Akamai DataStream

+ icon

Akamai DataStream

Monitor and analyze the performance of Akamai Edge server

- armis-icon.png

Armis

+ armis-icon.png

Armis

Monitor and manage your device security.

- asana-icon.png

Asana

+ asana-icon.png

Asana

Monitor and analyze the Asana data to detect potential security threats related to user activity.

- atlassian-icon.png

Atlassian

+ atlassian-icon.png

Atlassian

Monitor and analyze the critical events of Atlassian data.

- icon

Box

+ icon

Box

Gain insight into user behavior patterns and resources.

- icon

Cato Networks

+ icon

Cato Networks

Gain insight into the events and identify potential security threats with admin activities.

- icon

Cisco AMP

+ icon

Cisco AMP

Monitor and analyze the host activity status and file types implicated in cybersecurity incidents.

- icon

Cisco Meraki - C2C

+ icon

Cisco Meraki - C2C

Gain insights into the events and identify potential network events along with admin activities.

- icon

Cisco Umbrella

+ icon

Cisco Umbrella

View analytics on DNS, Proxy, and Audit admin activities.

- citrix-cloud-icon

Citrix

+ citrix-cloud-icon

Citrix

Track configuration modifications impacting your environment and admins.

- icon

Cloudflare

+ icon

Cloudflare

Analyze logs, events, and trends from your websites and apps on the Cloudflare network.

- icon

CrowdStrike Falcon FileVantage

+ icon

CrowdStrike Falcon FileVantage

Monitor and analyze file integrity.

- icon

CrowdStrike FDR Host Inventory

+ icon

CrowdStrike FDR Host Inventory

Monitor and manage your device security.

- icon

CrowdStrike Spotlight

+ icon

CrowdStrike Spotlight

Gather real-time visibility into the vulnerabilities.

- Thumbnail icon

Digital Guardian ARC

+ Thumbnail icon

Digital Guardian ARC

Monitor, detect, and respond to critical events.

- Thumbnail icon

DocuSign

+ Thumbnail icon

DocuSign

Monitor and secure your DocuSign account.

- dropbox-icon.png

Dropbox

+ dropbox-icon.png

Dropbox

Monitor and analyze your Dropbox usage data.

- dropbox-icon.png

Druva Cyber Resilience

+ dropbox-icon.png

Druva Cyber Resilience

Enhance your cybersecurity posture by providing real-time insights.

- Thumbnail icon

Fastly

+ Thumbnail icon

Fastly

Control how and where you serve content, and view performance analytics.

- icon

Gmail Trace Logs

+ icon

Gmail Trace Logs

Monitor spam, malware threats, and dropped or rejected messages.

- icon

Istio

+ icon

Istio

Gain visibility into your Istio and control plane component performance.

- icon

Jamf

+ icon

Jamf

Get critical insights into your organization's Jamf environment.

- icon

Kandji

+ icon

Kandji

Identify security threats by analyzing threat events and device events.

- icon

KnowBe4

+ icon

KnowBe4

Monitor and analyze KnowBe4 Phishing Security logs.

- icon

LastPass

+ icon

LastPass

Identify security threats by analyzing audit events.

- icon

Microsoft Azure AD Inventory

+ icon

Microsoft Azure AD Inventory

Identify security threats by analyzing users and devices logs.

- icon

Microsoft Exchange Trace Logs

+ icon

Microsoft Exchange Trace Logs

Monitor Delivered, Failed, Quarantined, Pending, and Spam messages.

- icon

Mimecast

+ icon

Mimecast

Monitor and analyze Mimecast email data to identify potential threats and improve email security posture.

- icon

Microsoft Graph Security V1

+ icon

Microsoft Graph Security V1

Identify security threats by analyzing alert logs.

- icon

Microsoft Graph Security V2

+ icon

Microsoft Graph Security V2

Identify security threats by analyzing alert logs.

- icon

Miro

+ icon

Miro

Monitoring and investigate Miro potential security threats.

- icon

MS Graph Azure AD Reporting

+ icon

MS Graph Azure AD Reporting

Monitor and analyze user activity, sign-in patterns and provisioning activities.

- icon

Opsgenie

+ icon

Opsgenie

Gain insight into your incidents and event handling operations.

- icon

PagerDuty V2

+ icon

PagerDuty V2

Monitor PagerDuty V2 incident data.

- icon

PagerDuty V3

+ icon

PagerDuty V3

Monitor PagerDuty V3 incident data.

- icon

Palo Alto Cortex XDR

+ icon

Palo Alto Cortex XDR

Monitor and analyze alerts and incidents from Palo Alto Networks Cortex XDR platform.

- icon

Proofpoint on Demand

+ icon

Proofpoint on Demand

Analyze message logs and improve your security posture.

- icon

Proofpoint TAP

+ icon

Proofpoint TAP

Analyze messages and clicks of malicious URLs to improve your security posture.

- icon

Qualys VMDR

+ icon

Qualys VMDR

Track errors, health, start-up progress, and cloud security.

- icon

Rapid7

+ icon

Rapid7

Monitor asset and vulnerability management activities.

- Thumbnail icon

Salesforce

+ Thumbnail icon

Salesforce

Analyze event logs generated by your Salesforce instance and apps.

- sentinelone-icon.png

SentinelOne

+ sentinelone-icon.png

SentinelOne

Monitor your organization's SentinelOne Threats and Agents logs.

- icon

Slack

+ icon

Slack

Monitor analytics for your Slack users, channels, and access logs for workspaces.

- icon

Sophos

+ icon

Sophos

Identify security threats by analyzing alerts and events logs.

- icon

Symantec Endpoint Security Service

+ icon

Symantec Endpoint Security Service

Gain insights into the log data and identify potential security threats.

- icon

Symantec Web Security Service

+ icon

Symantec Web Security Service

Gain insights into the web traffic and identify potential security threats.

- icon

Tenable

+ icon

Tenable

Gain comprehensive visibility and actionable insights into your organization's security posture.

- icon

Trend Micro Vision One

+ icon

Trend Micro Vision One

Analyze alert logs to detect potential security risks.

- icon

Webex

+ icon

Webex

Monitor and analyse Webex security events, user activities, and system health.

- icon

Workday

+ icon

Workday

Monitor Workday login activity, user activity, and admin activity.

- icon

Zendesk

+ icon

Zendesk

Identify security threats by analyzing audit logs.

- icon

Zoom

+ icon

Zoom

Monitor your organization's Zoom performance, security, and user activity.

diff --git a/docs/integrations/saml/index.md b/docs/integrations/saml/index.md index bbacb2ec90..22f30fa91d 100644 --- a/docs/integrations/saml/index.md +++ b/docs/integrations/saml/index.md @@ -11,19 +11,19 @@ Learn how to use Sumo Logic apps for SAML.
- Thumbnail icon

Auth0

+ Thumbnail icon

Auth0

Sumo Logic app for Auth0.

- Thumbnail icon

Okta

+ Thumbnail icon

Okta

Sumo Logic app for Okta.

- Thumbnail icon

OneLogin

+ Thumbnail icon

OneLogin

Sumo Logic app for OneLogin.

diff --git a/docs/integrations/security-threat-detection/index.md b/docs/integrations/security-threat-detection/index.md index 927dfe689b..c9d424bff3 100644 --- a/docs/integrations/security-threat-detection/index.md +++ b/docs/integrations/security-threat-detection/index.md @@ -15,139 +15,139 @@ import CisNote from '../../reuse/cis-note.md';
- icon

Akamai Security Events

+ icon

Akamai Security Events

A guide to the Sumo Logic app for Akamai Security Events.

- icon

Alert Logic

+ icon

Alert Logic

A guide to the Sumo Logic app for Alert Logic.

- icon

Barracuda WAF

+ icon

Barracuda WAF

A guide to the Sumo Logic app for Barracuda WAF.

- icon

Carbon Black Cloud

+ icon

Carbon Black Cloud

A guide to the Sumo Logic app for Carbon Black Cloud.

- icon

Cisco ASA

+ icon

Cisco ASA

A guide to the Sumo Logic app for Cisco ASA.

- thumbnail icon

Cisco Meraki

+ thumbnail icon

Cisco Meraki

A guide to the Sumo Logic app for Cisco Meraki.

- thumbnail icon

CloudPassage Halo

+ thumbnail icon

CloudPassage Halo

A guide to the Sumo Logic app for CloudPassage Halo.

- thumbnail icon

CrowdStrike Falcon Endpoint Protection

+ thumbnail icon

CrowdStrike Falcon Endpoint Protection

A guide to the Sumo Logic app for CrowdStrike.

- thumbnail icon

Cylance

+ thumbnail icon

Cylance

A guide to the Sumo Logic app for Cylance.

- thumbnail icon

Duo Security

+ thumbnail icon

Duo Security

A guide to the Sumo Logic app for Duo Security.

- thumbnail icon

Evident.io ESP

+ thumbnail icon

Evident.io ESP

A guide to the Sumo Logic app for Evident.io ESP.

- thumbnail icon

F5 - BIG-IP LTM

+ thumbnail icon

F5 - BIG-IP LTM

A guide to the Sumo Logic app for F5 - BIG-IP LTM.

- thumbnail icon

Imperva Incapsula

+ thumbnail icon

Imperva Incapsula

A guide to the Sumo Logic app for Imperva Incapsula.

- thumbnail icon

Netskope Legacy Collection

+ thumbnail icon

Netskope Legacy Collection

A guide to the Sumo Logic app for Netskope Legacy Collection.

- thumbnail icon

Netskope

+ thumbnail icon

Netskope

A guide to the Sumo Logic app for Netskope.

- thumbnail icon

Observable Networks

+ thumbnail icon

Observable Networks

A guide to the Sumo Logic app for Observable Networks.

- thumbnail icon

Palo Alto Networks 9

+ thumbnail icon

Palo Alto Networks 9

A guide to the Sumo Logic app for Palo Alto Networks 9.

-

SailPoint

+

SailPoint

A guide to the Sumo Logic app for SailPoint.

- thumbnail icon

Threat Intel Quick Analysis

+ thumbnail icon

Threat Intel Quick Analysis

A guide to the Sumo Logic app for Threat Intel Quick Analysis.

- thumbnail icon

Trend Micro Deep Security

+ thumbnail icon

Trend Micro Deep Security

A guide to the Sumo Logic app for Trend Micro Deep Security.

- thumbnail icon

Twistlock

+ thumbnail icon

Twistlock

A guide to the Sumo Logic app for Twistlock.

- thumbnail icon

Zscaler Internet Access

+ thumbnail icon

Zscaler Internet Access

A guide to the Sumo Logic app for Zscaler Internet Access.

- thumbnail icon

Zscaler Private Access

+ thumbnail icon

Zscaler Private Access

A guide to the Sumo Logic app for Zscaler Private Access.

diff --git a/docs/integrations/sumo-apps/index.md b/docs/integrations/sumo-apps/index.md index 38dbe12da3..84fbf2ab0b 100644 --- a/docs/integrations/sumo-apps/index.md +++ b/docs/integrations/sumo-apps/index.md @@ -27,55 +27,55 @@ Once a request has been submitted, a support ticket is automatically opened. A r
- icon

Audit

+ icon

Audit

Use this guide to work with the Sumo Logic Audit App.

- icon

Cloud SIEM

+ icon

Cloud SIEM

Gives visibility into what’s going on in your Cloud SIEM.

- icon

Data Volume

+ icon

Data Volume

Provides a summary and detailed views of your account's data usage volume.

- Thumbnail icon

Enterprise Audit (multiple apps)

+ Thumbnail icon

Enterprise Audit (multiple apps)

A guide to the Sumo Logic app for Enterprise Audit.

- icon

Enterprise Search Audit

+ icon

Enterprise Search Audit

A guide to our Enterprise Search Audit App.

- Thumbnail icon

Flex

+ Thumbnail icon

Flex

A guide to the Sumo Logic Flex app.

- Thumbnail icon

Infrequent Data Tier

+ Thumbnail icon

Infrequent Data Tier

A guide to the Sumo Logic Infrequent Data Tier app.

- Thumbnail icon

Log Analysis QuickStart

+ Thumbnail icon

Log Analysis QuickStart

A guide to the Sumo Logic Log Analysis QuickStart app.

- Thumbnail icon

Security Analytics

+ Thumbnail icon

Security Analytics

A guide to the Sumo Logic app for Security Analytics.

diff --git a/docs/integrations/web-servers/index.md b/docs/integrations/web-servers/index.md index 4939e61c60..2ade44abaf 100644 --- a/docs/integrations/web-servers/index.md +++ b/docs/integrations/web-servers/index.md @@ -12,77 +12,77 @@ This guide has documentation for Sumo apps for web servers.
Thumbnail icon -

Apache

+

Apache

The Apache app gives insight into website behavior patterns, monitor server operations, and assists in troubleshooting issues that span entire web sever farms.

Thumbnail icon -

Apache Tomcat

+

Apache Tomcat

The Apache Tomcat app monitors server operations, assists in troubleshooting issues, and provides insight into website visitor behavior patterns across entire web server farms.

Thumbnail icon -

HAProxy

+

HAProxy

The Sumo Logic App for HAProxy is a unified logs and metrics app that helps you monitor the availability, performance, and health of your HAProxy cluster.

thumbnail icon -

IIS 10

+

IIS 10

The IIS 10 app is a unified logs and metrics app that helps you monitor your IIS web servers' availability, performance, health, and resource utilization.

Thumbnail icon -

Nginx

+

Nginx

The Sumo Logic App for Nginx helps to monitor activity generated by Nginx servers.

Thumbnail icon -

Nginx Ingress

+

Nginx Ingress

The Nginx Ingress app is a unified logs and metrics app that helps you monitor the availability, performance, health, and resource utilization of your Nginx Ingress web servers.

Thumbnail icon -

Nginx Plus

+

Nginx Plus

The Nginx Plus app is an unified logs and metrics app that helps you monitor the availability, performance, health and resource utilization of your Nginx Plus web servers.

Thumbnail icon -

Nginx Plus Ingress

+

Nginx Plus Ingress

The Nginx Plus Ingress 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.

Thumbnail icon -

Squid Proxy

+

Squid Proxy

The Squid Proxy app is a unified logs and metrics app that helps you monitor activity in Squid Proxy.

Thumbnail icon -

Varnish

+

Varnish

The Sumo Logic App for Varnish provides dashboards that help you analyze log and metric events generated by Varnish servers.

Thumbnail icon -

Heroku

+

Heroku

The Sumo Logic app for Heroku is a logs only app that allows you to monitor your Heroku environment.

diff --git a/docs/manage/content-sharing/index.md b/docs/manage/content-sharing/index.md index 88e23b4d5b..9d5e9ae88b 100644 --- a/docs/manage/content-sharing/index.md +++ b/docs/manage/content-sharing/index.md @@ -85,19 +85,19 @@ In this section, we'll introduce the following concepts:
- icon

Admin Mode

+ icon

Admin Mode

Learn how to control your content and add important items to the Admin Recommended folder.

- icon

Changing Other Alerts

+ icon

Changing Other Alerts

Learn how to modify or turn off alerts created by another user.

- icon

FAQ

+ icon

FAQ

Get to know the answers to basic questions around Content Sharing.

diff --git a/docs/manage/data-archiving/index.md b/docs/manage/data-archiving/index.md index de486ac13d..86e4c5a999 100644 --- a/docs/manage/data-archiving/index.md +++ b/docs/manage/data-archiving/index.md @@ -20,7 +20,7 @@ In this section, we'll introduce the following concepts:
- + Thumbnail icon

Archive Log Data to S3

diff --git a/docs/manage/data-forwarding/index.md b/docs/manage/data-forwarding/index.md index 0d62ff2a3f..2672c2491e 100644 --- a/docs/manage/data-forwarding/index.md +++ b/docs/manage/data-forwarding/index.md @@ -17,7 +17,7 @@ In this section, we'll introduce the following concepts:
- + Document with a forward symbol  icon

Forward Data from an Installed Collector

@@ -26,7 +26,7 @@ In this section, we'll introduce the following concepts:
- + Document with a forward symbol  icon

Forward Data from Sumo Logic to S3

@@ -35,7 +35,7 @@ In this section, we'll introduce the following concepts:
- + Document with a forward symbol  icon

Manage Data Forwarding

@@ -44,7 +44,7 @@ In this section, we'll introduce the following concepts:
- + Document with a forward symbol  icon

View Information About Data Forwarding

diff --git a/docs/manage/field-extractions/fer-templates/index.md b/docs/manage/field-extractions/fer-templates/index.md index 9ed66ceae2..ae79791af5 100644 --- a/docs/manage/field-extractions/fer-templates/index.md +++ b/docs/manage/field-extractions/fer-templates/index.md @@ -16,79 +16,79 @@ In this section, we'll introduce the following concepts:
- icon

Akamai Cloud Monitor

+ icon

Akamai Cloud Monitor

Learn how to parse the common fields in your Akamai Cloud Monitor log.

- icon

Apache Access Logs

+ icon

Apache Access Logs

Learn how to parse the common fields in your Apache Access log.

- icon

Apache Tomcat Access Logs

+ icon

Apache Tomcat Access Logs

Learn how to parse the common fields in your Apache Tomcat Access log.

- icon

Sample Apache Tomcat 7 Access Log Field Extraction Rule

+ icon

Sample Apache Tomcat 7 Access Log Field Extraction Rule

Learn how to parse the Remote IP address, Method, Requested URL path, HTTP status code, Time Taken, and Bytes Sent.

- icon

AWS CloudTrail Logs

+ icon

AWS CloudTrail Logs

Learn how to parse the common fields in your AWS CloudTrail log.

- icon

AWS Elastic Load Balancing Logs

+ icon

AWS Elastic Load Balancing Logs

Learn how to parse the common fields in your AWS Elastic Load Balancing log.

- icon

Amazon S3 Usage Logs

+ icon

Amazon S3 Usage Logs

Learn how to parse the common fields in your Amazon S3 Usage log.

- icon

Cisco Logs Extraction Template

+ icon

Cisco Logs Extraction Template

Learn how to parse the common fields in your Cisco ASA log.

- icon

Sample Cisco FWSM Field Extraction Rule

+ icon

Sample Cisco FWSM Field Extraction Rule

Learn how to create field extraction rules for CISCO FWSM.

- icon

Microsoft IIS Logs

+ icon

Microsoft IIS Logs

Learn how to parse the common fields in your Microsoft IIS log.

- icon

Nginx Logs

+ icon

Nginx Logs

Learn how to parse the common fields in your Nginx Access log.

- icon

Palo Alto Networks

+ icon

Palo Alto Networks

Learn how to parse the common fields in your Palo Alto Networks log.

- icon

Varnish Logs Extraction Template

+ icon

Varnish Logs Extraction Template

Learn how to parse the common fields in your Varnish log.

diff --git a/docs/manage/field-extractions/index.md b/docs/manage/field-extractions/index.md index f156614b77..05795a827b 100644 --- a/docs/manage/field-extractions/index.md +++ b/docs/manage/field-extractions/index.md @@ -111,37 +111,37 @@ In this section, we'll introduce the following concepts:
- icon

Field Naming Convention

+ icon

Field Naming Convention

Learn about the recommended naming conventions for standard fields in Sumo Logic.

- icon

Create a Field Extraction Rule

+ icon

Create a Field Extraction Rule

Learn how to instruct Sumo Logic to parse out fields automatically.

- icon

Edit Field Extraction Rules

+ icon

Edit Field Extraction Rules

Learn how to change Field Extraction Rules.

- icon

FER Templates

+ icon

FER Templates

Learn how to use FER Templates to parse common fields for various applications.

- icon

Parse AWS ELB Logs

+ icon

Parse AWS ELB Logs

Learn how to parse the common fields in AWS ELB logs.

- icon

Sample Safend Field Extraction

+ icon

Sample Safend Field Extraction

Learn how to create Field Extraction Rules for Safend.

diff --git a/docs/manage/index.md b/docs/manage/index.md index 378bba6320..ddefed8f4b 100644 --- a/docs/manage/index.md +++ b/docs/manage/index.md @@ -78,7 +78,7 @@ This topic describes features and options that give you administration over acco
- icon

CyberArk EPM

+ icon

CyberArk EPM

Before configuring an AWS Source give Sumo Logic access to your AWS product

- icon

Cybereason

+ icon

Cybereason

Provides a secure endpoint to receive authentication logs from the Cybereason Malops API.

- Thumbnail icon

Digital Guardian

+ Thumbnail icon

Digital Guardian

Learn how to collect export data from the Digital Guardian and send it to Sumo Logic.

- Thumbnail icon

DocuSign

+ Thumbnail icon

DocuSign

Learn how to collect customer event data from the DocuSign and send it to Sumo Logic.

- Thumbnail icon

Dragos

+ Thumbnail icon

Dragos

Learn how to collect address, asset, vulnerability, and zone details from the Dragos API and send them to Sumo Logic.

- dropbox-icon.png

Dropbox

+ dropbox-icon.png

Dropbox

Provides a secure endpoint to receive team events from the Get Events API.

- thumbnail icon

Druva

+ thumbnail icon

Druva

Learn how to configure the Druva C2C source setup in your Sumo Logic environment.

- thumbnail icon

Druva Cyber Resilience

+ thumbnail icon

Druva Cyber Resilience

Learn how to configure the Druva Cyber Resilience C2C source setup in your Sumo Logic environment.

- thumbnail icon

Duo

+ thumbnail icon

Duo

Provides a secure endpoint to receive authentication logs from the Duo Authentication Logs API.

- Gmail

Gmail Trace Logs

+ Gmail

Gmail Trace Logs

Pulls Gmail log data using BigQuery Library APIs.

- Gmail

Google BigQuery

+ Gmail

Google BigQuery

Learn how to collect data using the BigQuery API.

- thumbnail icon

Google Workspace AlertCenter

+ thumbnail icon

Google Workspace AlertCenter

Configure Google Workspace AlertCenter Cloud-to-Cloud connector.

- thumbnail icon

Google Workspace

+ thumbnail icon

Google Workspace

Collects a list of users from the Google Workspace Users API.

- icon

Jamf

+ icon

Jamf

Collect inventory data from the Jamf platform.

- icon

JFrog Xray

+ icon

JFrog Xray

Collect violation events from JFrog Xray.

- icon

JumpCloud Directory Insights

+ icon

JumpCloud Directory Insights

Collect events data from the JumpCloud Directory Insight.

- icon

Kaltura Source

+ icon

Kaltura Source

Learn how to collect Audit Trail and Base Entry events from Kaltura platform.

- icon

Kandji Source

+ icon

Kandji Source

Learn how to collect threat details, devices list, device activities, and device details from the Kandji platform.

- icon

KnowBe4 API Source

+ icon

KnowBe4 API Source

Collects user events data into Sumo Logic for storage, analysis, and alerting.

- icon

LastPass Source

+ icon

LastPass Source

Collects audit reporting events from the LastPass platform.

- thumbnail icon

Microsoft Azure AD Inventory (Tag)

+ thumbnail icon

Microsoft Azure AD Inventory (Tag)

Collects user and device data from the Microsoft Graph API Security endpoint.

- icon

Microsoft Exchange Trace Logs

+ icon

Microsoft Exchange Trace Logs

Collects email trace logs from the Office 365 reporting web service.

- icon

Microsoft Graph Azure AD Reporting

+ icon

Microsoft Graph Azure AD Reporting

Collects Directory Audit, Sign-in, and Provisioning data from MS Graph API Azure AD activity reports.

- icon

Microsoft Graph Identity Protection

+ icon

Microsoft Graph Identity Protection

Collects Risk Detection and Risky User data from the Microsoft Graph Identity Protection API.

- icon

Microsoft Graph Security API

+ icon

Microsoft Graph Security API

Provides a secure endpoint to receive alerts from the Microsoft Graph Security API endpoint.

- icon

Mimecast

+ icon

Mimecast

Supports collecting SIEM, DLP, Audit, and Hold Message List data from the Mimecast API.

- icon

Miro

+ icon

Miro

Ingests audit logs obtained from the Audit log API.

- thumbnail icon

Netskope

+ thumbnail icon

Netskope

Provides a secure endpoint to receive event data from the Netskope API.

- thumbnail icon

Netskope WebTx

+ thumbnail icon

Netskope WebTx

The Netskope WebTx API integration ingests Web Transaction logs from Netskope Event Stream.

- Thumbnail icon

Okta

+ Thumbnail icon

Okta

Provides a secure endpoint to receive event data from the Okta System Log API and Users API.

- thumbnail icon

Palo Alto Cortex XDR

+ thumbnail icon

Palo Alto Cortex XDR

Allows you to ingest incidents from your Cortex XDR application.

- icon

Proofpoint On Demand

+ icon

Proofpoint On Demand

Collects data and uses the secure WebSocket protocol to stream logs.

- icon

Proofpoint TAP

+ icon

Proofpoint TAP

Provides a secure endpoint to receive data from the Proofpoint TAP SIEM API.

- qualys-icon.png

Qualys VMDR

+ qualys-icon.png

Qualys VMDR

The Qualys VMDR Source tracks errors, reports its health, and start-up progress.

-

Rapid7

+

Rapid7

Collects asset and vulnerabilities data from Rapid7 InsightVM.

-

SailPoint

+

SailPoint

Provides a secure endpoint to receive Events and User Inventory data from the IdentityNow V3 API.

- Thumbnail icon

Salesforce

+ Thumbnail icon

Salesforce

Provides a secure endpoint to receive event data from the Salesforce through its Rest API.

- sentinelone-icon.png

SentinelOne Mgmt API

+ sentinelone-icon.png

SentinelOne Mgmt API

Collects data from the SentinelOne Management Console.

- Thumbnail icon

Slack

+ Thumbnail icon

Slack

Learn about the Slack Source, part of Sumo Logic's Cloud-to-Cloud Integration Framework.

- Thumbnail icon

Smartsheet

+ Thumbnail icon

Smartsheet

Learn how to collect events from Smartsheet platform.

- icon

Sophos Central

+ icon

Sophos Central

Learn to receive authentication logs from the Sophos Central APIs.

- icon

Symantec Endpoint Security Source

+ icon

Symantec Endpoint Security Source

Learn to collect incidents and incident events from the Symantec Endpoint Security platform.

- icon

Symantec Web Security Service

+ icon

Symantec Web Security Service

Learn to receive WSS Access logs from the Symantec WSS API.

- icon

Tenable

+ icon

Tenable

Learn to ingest audit-log events, vulnerability, and asset data from the Tenable.io APIs.

- icon

Trellix mVision ePO

+ icon

Trellix mVision ePO

Learn how to collect event logs using the Trellix mVision ePO.

- Thumbnail icon

Trend Micro

+ Thumbnail icon

Trend Micro

Learn how to collect alert details from Trend Micro platform.

- trust-login-icon

Trust Login

+ trust-login-icon

Trust Login

Learn how to collect report logs from Trust Login platform.

- Thumbnail icon

Universal Connector Source

+ Thumbnail icon

Universal Connector Source

Learn how to set up a Universal Connector to collect data into the Sumo Logic environment.

- Thumbnail icon

VMware Workspace One

+ Thumbnail icon

VMware Workspace One

Learn how to collect the device details and corresponding list of applications for the devices from the VMware Workspace One platform.

- Thumbnail icon

Webex

+ Thumbnail icon

Webex

Learn to collect admin audit events using Webex API.

- Thumbnail icon

Workday

+ Thumbnail icon

Workday

Learn to create a Workday Source.

- Thumbnail icon

Zendesk

+ Thumbnail icon

Zendesk

Learn to collect audit logs from the Zendesk platform.

- Thumbnail icon

Zero Networks Segment

+ Thumbnail icon

Zero Networks Segment

Learn to collect audit logs and network activity data from Zero Networks Segment.

diff --git a/docs/send-data/hosted-collectors/google-source/index.md b/docs/send-data/hosted-collectors/google-source/index.md index 9fee3e02df..74895e28d2 100644 --- a/docs/send-data/hosted-collectors/google-source/index.md +++ b/docs/send-data/hosted-collectors/google-source/index.md @@ -12,19 +12,19 @@ In this section, we'll introduce the following concepts:
- icon

Google Workspace Apps Audit

+ icon

Google Workspace Apps Audit

Add a Google Workspace Apps Audit Source to ingest audit logs from Google apps.

- icon

Google Cloud Platform

+ icon

Google Cloud Platform

Export data collected by Stackdriver to Google Cloud Pub/Sub.

- icon

Google Cloud Platform Metrics

+ icon

Google Cloud Platform Metrics

Get visibility into Google Cloud Platform infrastructure and managed services.

diff --git a/docs/send-data/hosted-collectors/http-source/index.md b/docs/send-data/hosted-collectors/http-source/index.md index c41bf88607..0a3fca76a9 100644 --- a/docs/send-data/hosted-collectors/http-source/index.md +++ b/docs/send-data/hosted-collectors/http-source/index.md @@ -13,49 +13,49 @@ In this section, we'll introduce the following concepts:
- Thumbnail icon

HTTP Logs and Metrics

+ Thumbnail icon

HTTP Logs and Metrics

An HTTP Logs and Metrics Source is an endpoint for receiving log and metric data uploaded to a unique URL generated for the Source.

- Thumbnail icon

OTLP

+ Thumbnail icon

OTLP

Use an HTTP OTLP Source to collect OTLP formatted Logs, Metrics, and Traces data.

- Thumbnail icon

Upload Logs to HTTP Source

+ Thumbnail icon

Upload Logs to HTTP Source

This guide provides instructions on uploading logs to an HTTP Source.

- Thumbnail icon

Upload Metrics to HTTP Source

+ Thumbnail icon

Upload Metrics to HTTP Source

This guide provides instructions on uploading metrics to an HTTP Source.

- Thumbnail icon

Generate HTTP Source URL

+ Thumbnail icon

Generate HTTP Source URL

You can generate a new URL for an HTTP Source at any time. Generating a new URL completely invalidates the old URL.

- Thumbnail icon

HTTP Traces

+ Thumbnail icon

HTTP Traces

An HTTP Traces Source is an endpoint for receiving trace data.

- Thumbnail icon

RUM HTTP Traces Source

+ Thumbnail icon

RUM HTTP Traces Source

Learn how to configure a RUM HTTP Traces Source.

- Thumbnail icon

HTTP Source Troubleshooting

+ Thumbnail icon

HTTP Source Troubleshooting

Check the HTTP status codes.

diff --git a/docs/send-data/hosted-collectors/index.md b/docs/send-data/hosted-collectors/index.md index cee2361155..38ed894e32 100644 --- a/docs/send-data/hosted-collectors/index.md +++ b/docs/send-data/hosted-collectors/index.md @@ -57,49 +57,49 @@ The maximum number of Collectors allowed per organization is 10,000.
- icon

Configure a Hosted Collector

+ icon

Configure a Hosted Collector

Set up Hosted Collectors so you can move data to Sumo Logic.

- icon

Amazon and AWS Sources

+ icon

Amazon and AWS Sources

Collect from one of the many AWS products that we support.

- thumbnail icon

Google Sources

+ thumbnail icon

Google Sources

Collect data from your Google Cloud Platform and other products.

- Thumbnail icon

C2C Integration Sources

+ Thumbnail icon

C2C Integration Sources

Collect logs and events directly from SaaS and Cloud platforms.

- Thumbnail icon

HTTP Sources

+ Thumbnail icon

HTTP Sources

Upload logs, metrics, traces, and more to an HTTP Source.

- Thumbnail icon

Microsoft Sources

+ Thumbnail icon

Microsoft Sources

Collect Audit Log content types to track and monitor usage of MS 365.

- thumbnail icon

Cloud Syslog Sources

+ thumbnail icon

Cloud Syslog Sources

Configure a cloud syslog source to send data to Sumo Logic.

- Thumbnail icon

Zoom Source

+ Thumbnail icon

Zoom Source

Learn how to create HTTP Zoom source and enable events subscriptions.

diff --git a/docs/send-data/index.md b/docs/send-data/index.md index 2e29683361..9de4bab378 100644 --- a/docs/send-data/index.md +++ b/docs/send-data/index.md @@ -21,55 +21,55 @@ Learn how to send data to Sumo Logic and get started with our observability and
- Data collection icon

Sumo Logic Distro for OpenTelemetry

+ Data collection icon

Sumo Logic Distro for OpenTelemetry

Our OpenTelemetry Distribution is a single unified agent to send Logs, Metrics, Traces, and more.

- Data collection icon

Installed Collectors

+ Data collection icon

Installed Collectors

Installed collector is our proprietary agent that you can deploy in your environment to collect logs and some metrics sources.

- Data collection icon

Hosted Collectors

+ Data collection icon

Hosted Collectors

Set up a Hosted Collector to collect data directly from cloud sources like AWS, GCP, and more without installing an agent.

- Data collection icon

Kubernetes

+ Data collection icon

Kubernetes

Learn how to collect Kubernetes logs, metrics, and events.

- Data collection icon

Other Data Sources

+ Data collection icon

Other Data Sources

Collect logs and metrics from a variety of other data sources.

- Data collection icon

JSON Configuration

+ Data collection icon

JSON Configuration

Learn how to configure Installed and Hosted Collectors sources using JSON files.

- Data collection icon

Time Reference

+ Data collection icon

Time Reference

Learn about supported timestamps, date formatting, and more.

- Data collection icon

Wildcards in Paths

+ Data collection icon

Wildcards in Paths

Use wildcards in Source paths to collect all files of a certain type.

- Data collection icon

Troubleshooting

+ Data collection icon

Troubleshooting

Troubleshooting Sumo Logic data collection.

diff --git a/docs/send-data/installed-collectors/collector-installation-reference/index.md b/docs/send-data/installed-collectors/collector-installation-reference/index.md index 817272f863..b8d9d5293e 100644 --- a/docs/send-data/installed-collectors/collector-installation-reference/index.md +++ b/docs/send-data/installed-collectors/collector-installation-reference/index.md @@ -13,97 +13,97 @@ In this section, we'll introduce the following concepts:
- icon

Download Collector from Static URL

+ icon

Download Collector from Static URL

Static URLs provide download links to the most recent Collector versions.

- icon

user.properties

+ icon

user.properties

Pass Collector parameters for some installation methods.

- icon

Test Collector Connectivity

+ icon

Test Collector Connectivity

Test access and connectivity from an installed Collector to the Sumo Logic service.

- icon

Collector CLI Parameters

+ icon

Collector CLI Parameters

Parameters available when using the Collector's command line installer.

- icon

collector.properties

+ icon

collector.properties

Define the waiting time between scans of the objects in your S3 bucket.

- icon

Collector Installation Error Messages

+ icon

Collector Installation Error Messages

Troubleshoot issues that arise during collector installation.

- icon

Add Collector to Linux Machine Image

+ icon

Add Collector to Linux Machine Image

Build a Collector into a Linux machine image.

- icon

Add Collector to Windows Machine Image

+ icon

Add Collector to Windows Machine Image

Build a Collector into a Windows machine image.

- icon

Advanced UI Installer Settings

+ icon

Advanced UI Installer Settings

Advanced settings for the UI installer.

- icon

Force a Collector's Name with Clobber

+ icon

Force a Collector's Name with Clobber

Use the clobber flag when you're creating a new Collector that will use a name that is already in use.

- icon

sumo.conf for Legacy Collectors

+ icon

sumo.conf for Legacy Collectors

Pass Collector config parameters during installation if the Debian or RPM option is used.

- icon

Set the RUN_AS_USER for a Collector

+ icon

Set the RUN_AS_USER for a Collector

Specify the user under whose account the Collector will run.

- icon

Enabling SNI in a Collector to Support Transparent Proxy

+ icon

Enabling SNI in a Collector to Support Transparent Proxy

Enable SNI on Collectors to support third-party transparent proxy services.

- icon

Using the Binary Package

+ icon

Using the Binary Package

Install a Collector on macOS or Windows if you need to use a specific JRE version.

- icon

Enhanced File System Security

+ icon

Enhanced File System Security

Protect the log cache and configuration files for Installed Collectors.

- icon

Set Collector as Ephemeral

+ icon

Set Collector as Ephemeral

Flag a Collector as ephemeral to delete it after being offline for 12 hours.

diff --git a/docs/send-data/installed-collectors/index.md b/docs/send-data/installed-collectors/index.md index 4e57d10139..e48db24a48 100644 --- a/docs/send-data/installed-collectors/index.md +++ b/docs/send-data/installed-collectors/index.md @@ -15,37 +15,37 @@ In this section, we'll introduce the following concepts:
- icon

Install and Configure a Collector

+ icon

Install and Configure a Collector

Install and configure a collector to gather and send data to Sumo Logic.

- icon

For macOS

+ icon

For macOS

Install or uninstall a Collector on a macOS system.

- icon

For Linux

+ icon

For Linux

Install or uninstall a Collector on a Linux system.

- icon

For Windows

+ icon

For Windows

Install or uninstall a Collector on a Windows system.

- icon

Sources

+ icon

Sources

Learn how to configure a variety of local and remote Sources for your Installed Collector.

- icon

Reference Guide

+ icon

Reference Guide

Customize your Installed Collector with these configuration parameters and options.

diff --git a/docs/send-data/installed-collectors/sources/index.md b/docs/send-data/installed-collectors/sources/index.md index 6b3576f25d..00f3dfef31 100644 --- a/docs/send-data/installed-collectors/sources/index.md +++ b/docs/send-data/installed-collectors/sources/index.md @@ -13,97 +13,97 @@ In this section, we'll introduce the following concepts:
- icon

Collect Windows Forwarded Events

+ icon

Collect Windows Forwarded Events

Track and collect forwarded events from a Windows Event Collector.

- icon

Docker Sources

+ icon

Docker Sources

Configure Docker Logs or a Docker Stats Source.

- icon

Host Metrics Source

+ icon

Host Metrics Source

Collect host metrics from a local host.

- icon

Local File Source

+ icon

Local File Source

Collect log messages from the same machine where a collector is installed.

- icon

Local Windows Event Log Source

+ icon

Local Windows Event Log Source

Collect local performance data from the Windows Performance Monitor.

- icon

Windows Event Source Custom Channels

+ icon

Windows Event Source Custom Channels

Find Windows event channels to collect with a Local Windows Event Source.

- icon

Local Windows Performance Monitor Log Source

+ icon

Local Windows Performance Monitor Log Source

Collect local performance data from the Windows Performance Monitor.

- icon

Streaming Metrics Source

+ icon

Streaming Metrics Source

Add a streaming metrics source to collect Graphite, Carbon 2.0, or Prometheus metrics.

- icon

Syslog Source

+ icon

Syslog Source

Obtain syslog messages by listening on a designated port.

- icon

Define Boundary Regex for Multiline Messages

+ icon

Define Boundary Regex for Multiline Messages

Detect when a log message spans multiple lines and then index it as a single message.

- icon

Preconfigure a Machine to Collect Remote Windows Events

+ icon

Preconfigure a Machine to Collect Remote Windows Events

Configure a system for remote access by a Remote Windows Event Log Source.

- icon

Windows Active Directory Inventory Source

+ icon

Windows Active Directory Inventory Source

Collect inventory data from Active Directory Database.

- icon

Remote Windows Event Log Source

+ icon

Remote Windows Event Log Source

Collect Windows event log entries from multiple remote systems.

- icon

Remote Windows Performance Monitor Log Source

+ icon

Remote Windows Performance Monitor Log Source

Collect remote performance data from the Windows Performance Monitor.

- icon

Script Action

+ icon

Script Action

This Script Action passes the results of a scheduled search to a script or program that runs on a machine.

diff --git a/docs/send-data/opentelemetry-collector/data-source-configurations/index.md b/docs/send-data/opentelemetry-collector/data-source-configurations/index.md index 36d84d22a6..fc97b6cc62 100644 --- a/docs/send-data/opentelemetry-collector/data-source-configurations/index.md +++ b/docs/send-data/opentelemetry-collector/data-source-configurations/index.md @@ -11,25 +11,25 @@ In this section, we'll cover data source configuration for the Sumo Logic OpenTe
- icon

Collect Logs

+ icon

Collect Logs

Instructions for collecting logs with the OpenTelemetry collector.

- icon

Collect Metrics

+ icon

Collect Metrics

Instructions for collecting metrics with the OpenTelemetry collector.

- icon

Collect Traces

+ icon

Collect Traces

Instructions for collecting tracing data with the OpenTelemetry collector.

- icon

Additional Configurations

+ icon

Additional Configurations

More OpenTelemetry collector configurations.

diff --git a/docs/send-data/opentelemetry-collector/index.md b/docs/send-data/opentelemetry-collector/index.md index 65f2f4d996..7aa6d93041 100644 --- a/docs/send-data/opentelemetry-collector/index.md +++ b/docs/send-data/opentelemetry-collector/index.md @@ -19,13 +19,13 @@ In this section, we'll introduce the following concepts:
- OTel thumbnail icon

Install Collector

+ OTel thumbnail icon

Install Collector

Step-by-step instructions for installing the OpenTelemetry collector on Linux, Windows, macOS, and more.

- + OTel thumbnail icon

Data Source and Configurations

@@ -34,7 +34,7 @@ In this section, we'll introduce the following concepts:
- + OTel thumbnail icon

Auto Discovery

@@ -43,13 +43,13 @@ In this section, we'll introduce the following concepts:
- OTel thumbnail icon

Performance Benchmarks

+ OTel thumbnail icon

Performance Benchmarks

Collect data to establish performance benchmarks.

- + OTel thumbnail icon

String Hashing and Masking

@@ -58,19 +58,19 @@ In this section, we'll introduce the following concepts:
- OTel thumbnail icon

Troubleshooting

+ OTel thumbnail icon

Troubleshooting

Find solutions to common issues with the OpenTelemetry collector.

- OTel thumbnail icon

FAQ

+ OTel thumbnail icon

FAQ

Find answers to frequently asked questions about the OpenTelemetry collector.

- OTel thumbnail icon

Sumo Logic OTel

+ OTel thumbnail icon

Sumo Logic OTel

Understand the relationship between the Sumo Logic OpenTelemetry Collector and the OpenTelemetry upstream project.

diff --git a/docs/send-data/opentelemetry-collector/install-collector/index.md b/docs/send-data/opentelemetry-collector/install-collector/index.md index d81b6b71be..335cfea569 100644 --- a/docs/send-data/opentelemetry-collector/install-collector/index.md +++ b/docs/send-data/opentelemetry-collector/install-collector/index.md @@ -10,37 +10,37 @@ Learn how to install the Sumo Logic OpenTelemetry Collector on various platforms
- Thumbnail icon

Install Collector on Linux

+ Thumbnail icon

Install Collector on Linux

Install the OpenTelemetry collector on Linux.

- macOS

Install Collector on macOS

+ macOS

Install Collector on macOS

Install the OpenTelemetry collector on macOS.

- thumbnail icon

Install Collector on Windows

+ thumbnail icon

Install Collector on Windows

Install the OpenTelemetry collector on Windows.

- ansible

Install Collector on Ansible

+ ansible

Install Collector on Ansible

Install the OpenTelemetry collector on Ansible.

- puppet icon

Install Collector on Puppet

+ puppet icon

Install Collector on Puppet

Install the OpenTelemetry collector on Puppet.

- chef

Install Collector on Chef

+ chef

Install Collector on Chef

Install the OpenTelemetry collector on Chef.

diff --git a/docs/send-data/opentelemetry-collector/remote-management/index.md b/docs/send-data/opentelemetry-collector/remote-management/index.md index 5bbe7912cf..36bbcdc729 100644 --- a/docs/send-data/opentelemetry-collector/remote-management/index.md +++ b/docs/send-data/opentelemetry-collector/remote-management/index.md @@ -34,19 +34,19 @@ In this section, we'll introduce the following concepts:
- OTel thumbnail icon

Install and Tag Your OpenTelemetry Collector

+ OTel thumbnail icon

Install and Tag Your OpenTelemetry Collector

Learn how to install and tag your OTel Collector for remote management of data collection.

- OTel thumbnail icon

Source Templates

+ OTel thumbnail icon

Source Templates

Learn how to create and modify your OpenTelemetry Remote Management source templates.

- OTel thumbnail icon

Processing Rules

+ OTel thumbnail icon

Processing Rules

Use processing rules for an OpenTelemetry agent with remote management source templates.

diff --git a/docs/send-data/opentelemetry-collector/remote-management/processing-rules/index.md b/docs/send-data/opentelemetry-collector/remote-management/processing-rules/index.md index 8a2a2c64bc..43c8083691 100644 --- a/docs/send-data/opentelemetry-collector/remote-management/processing-rules/index.md +++ b/docs/send-data/opentelemetry-collector/remote-management/processing-rules/index.md @@ -13,19 +13,19 @@ In this section, we'll introduce the following concepts:
- icon

OTRM Include and Exclude Rules

+ icon

OTRM Include and Exclude Rules

Use OTRM include and exclude processing rules to specify which data you want to send to Sumo Logic.

- icon

OTRM Mask Rules

+ icon

OTRM Mask Rules

Create an OTRM mask rule to replace an expression with a mask string.

- icon

OTRM Windows Source Template Mask Rules

+ icon

OTRM Windows Source Template Mask Rules

Create an OTRM Windows source template mask rule to replace an expression with a mask string.

diff --git a/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md b/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md index 889d106012..ec5297b8e7 100644 --- a/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md +++ b/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md @@ -13,62 +13,62 @@ In this section, we'll show you how to set up source templates for the following
- OTel thumbnail icon

Managing Source Templates

Learn how to create and modify OTel remote management source templates.

+ OTel thumbnail icon

Managing Source Templates

Learn how to create and modify OTel remote management source templates.

- Thumbnail icon

Apache

Learn how to configure our OTel Apache source template.

+ Thumbnail icon

Apache

Learn how to configure our OTel Apache source template.

- Thumbnail icon

Docker

Learn how to configure our OTel Docker source template.

+ Thumbnail icon

Docker

Learn how to configure our OTel Docker source template.

- icon

Kafka

Learn how to configure our OTel Kafka source template.

+ icon

Kafka

Learn how to configure our OTel Kafka source template.

- Thumbnail icon

Linux

Learn how to configure our OTel Linux source template.

+ Thumbnail icon

Linux

Learn how to configure our OTel Linux source template.

- OTel thumbnail icon

Local File

Learn how to configure our OTel Local File source template.

+ OTel thumbnail icon

Local File

Learn how to configure our OTel Local File source template.

- Thumbnail icon

Mac

Learn how to configure our OTel Mac source template.

+ Thumbnail icon

Mac

Learn how to configure our OTel Mac source template.

- Thumbnail icon

Nginx

Learn how to configure our OTel Nginx source template.

+ Thumbnail icon

Nginx

Learn how to configure our OTel Nginx source template.

- Thumbnail icon

RabbitMQ

Learn how to configure our OTel RabbitMQ source template.

+ Thumbnail icon

RabbitMQ

Learn how to configure our OTel RabbitMQ source template.

- Thumbnail icon

Redis

Learn how to configure our OTel Redis source template.

+ Thumbnail icon

Redis

Learn how to configure our OTel Redis source template.

- OTel thumbnail icon

Syslog

Learn how to configure our OTel Syslog source template.

+ OTel thumbnail icon

Syslog

Learn how to configure our OTel Syslog source template.

- Thumbnail icon

Windows

Learn how to configure our OTel Windows source template.

+ Thumbnail icon

Windows

Learn how to configure our OTel Windows source template.

diff --git a/docs/send-data/reference-information/index.md b/docs/send-data/reference-information/index.md index 23d6b14f5f..db170a4d87 100644 --- a/docs/send-data/reference-information/index.md +++ b/docs/send-data/reference-information/index.md @@ -13,31 +13,31 @@ In this section, we'll introduce the following concepts:
- icon

Using Wildcards in Paths

+ icon

Using Wildcards in Paths

Use wildcards in the Source path to collect all files of a certain type.

- icon

Collecting Multiline Logs

+ icon

Collecting Multiline Logs

Detect log boundaries automatically or with a regular expression.

- icon

Metadata Naming Conventions

+ icon

Metadata Naming Conventions

Establish naming conventions for your deployment's sources, collectors, and metadata.

- icon

Source Log Encoding

+ icon

Source Log Encoding

The log encoding supported by Sumo Logic depends on the Source that you use.

From bf13dc989ab309c2dc04a976f9c802ac265be350 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Fri, 31 Jan 2025 19:17:01 -0800 Subject: [PATCH 20/25] test baseURL --- .../source-templates/index.md | 24 +++++++++---------- docs/send-data/reference-information/index.md | 10 ++++---- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md b/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md index ec5297b8e7..889d106012 100644 --- a/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md +++ b/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md @@ -13,62 +13,62 @@ In this section, we'll show you how to set up source templates for the following
- OTel thumbnail icon

Managing Source Templates

Learn how to create and modify OTel remote management source templates.

+ OTel thumbnail icon

Managing Source Templates

Learn how to create and modify OTel remote management source templates.

- Thumbnail icon

Apache

Learn how to configure our OTel Apache source template.

+ Thumbnail icon

Apache

Learn how to configure our OTel Apache source template.

- Thumbnail icon

Docker

Learn how to configure our OTel Docker source template.

+ Thumbnail icon

Docker

Learn how to configure our OTel Docker source template.

- icon

Kafka

Learn how to configure our OTel Kafka source template.

+ icon

Kafka

Learn how to configure our OTel Kafka source template.

- Thumbnail icon

Linux

Learn how to configure our OTel Linux source template.

+ Thumbnail icon

Linux

Learn how to configure our OTel Linux source template.

- OTel thumbnail icon

Local File

Learn how to configure our OTel Local File source template.

+ OTel thumbnail icon

Local File

Learn how to configure our OTel Local File source template.

- Thumbnail icon

Mac

Learn how to configure our OTel Mac source template.

+ Thumbnail icon

Mac

Learn how to configure our OTel Mac source template.

- Thumbnail icon

Nginx

Learn how to configure our OTel Nginx source template.

+ Thumbnail icon

Nginx

Learn how to configure our OTel Nginx source template.

- Thumbnail icon

RabbitMQ

Learn how to configure our OTel RabbitMQ source template.

+ Thumbnail icon

RabbitMQ

Learn how to configure our OTel RabbitMQ source template.

- Thumbnail icon

Redis

Learn how to configure our OTel Redis source template.

+ Thumbnail icon

Redis

Learn how to configure our OTel Redis source template.

- OTel thumbnail icon

Syslog

Learn how to configure our OTel Syslog source template.

+ OTel thumbnail icon

Syslog

Learn how to configure our OTel Syslog source template.

- Thumbnail icon

Windows

Learn how to configure our OTel Windows source template.

+ Thumbnail icon

Windows

Learn how to configure our OTel Windows source template.

diff --git a/docs/send-data/reference-information/index.md b/docs/send-data/reference-information/index.md index db170a4d87..23d6b14f5f 100644 --- a/docs/send-data/reference-information/index.md +++ b/docs/send-data/reference-information/index.md @@ -13,31 +13,31 @@ In this section, we'll introduce the following concepts:
- icon

Using Wildcards in Paths

+ icon

Using Wildcards in Paths

Use wildcards in the Source path to collect all files of a certain type.

- icon

Collecting Multiline Logs

+ icon

Collecting Multiline Logs

Detect log boundaries automatically or with a regular expression.

- icon

Metadata Naming Conventions

+ icon

Metadata Naming Conventions

Establish naming conventions for your deployment's sources, collectors, and metadata.

- icon

Source Log Encoding

+ icon

Source Log Encoding

The log encoding supported by Sumo Logic depends on the Source that you use.

From c151f51452fe5b206431c71063c9177fe0222b8e Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Fri, 31 Jan 2025 19:35:04 -0800 Subject: [PATCH 21/25] revert baseURL for A-C --- docs/alerts/monitors/index.md | 22 ++--- docs/alerts/scheduled-searches/index.md | 16 ++-- docs/alerts/webhook-connections/index.md | 18 ++-- .../webhook-connections/servicenow/index.md | 12 +-- docs/api/index.md | 94 +++++++++---------- docs/apm/index.md | 12 +-- .../traces/advanced-configuration/index.md | 8 +- .../get-started-transaction-tracing/index.md | 40 ++++---- docs/cloud-soar/index.md | 12 +-- docs/cloud-soar/legacy/index.md | 16 ++-- docs/contributing/index.md | 12 +-- docs/cse/administration/index.md | 34 +++---- docs/cse/automation/index.md | 6 +- docs/cse/get-started-with-cloud-siem/index.md | 18 ++-- docs/cse/index.md | 20 ++-- docs/cse/ingestion/index.md | 10 +- 16 files changed, 174 insertions(+), 176 deletions(-) diff --git a/docs/alerts/monitors/index.md b/docs/alerts/monitors/index.md index e9a18bc784..e3bebff5cc 100644 --- a/docs/alerts/monitors/index.md +++ b/docs/alerts/monitors/index.md @@ -14,67 +14,67 @@ In this section, we'll introduce the following concepts:
- icon

Overview

+ icon

Overview

Set up monitors to continuously query your logs or metrics and send notifications when specific events occur.

- icon

Create a Monitor

+ icon

Create a Monitor

Learn how to create a monitor.

- icon

Monitor Settings

+ icon

Monitor Settings

Learn how to view, create, manage, and organize Monitors.

- icon

Monitors FAQ

+ icon

Monitors FAQ

This topic lists the common FAQs regarding Monitors.

- icon

Alert Variables

+ icon

Alert Variables

Use Alert Variables as parameters to customize the JSON payload object of your alert notifications.

- icon

Alert Response

+ icon

Alert Response

Get contextual insights about triggered alerts to minimize the time needed to investigate and resolve application failures.

- icon

Alert Response FAQ

+ icon

Alert Response FAQ

This topic lists the common FAQs regarding Alert Response.

- icon

Alert Grouping

+ icon

Alert Grouping

Customize how your alerts are generated from monitors by specifying a grouping condition based on specific fields.

- icon

Muting Schedules

+ icon

Muting Schedules

Pause alert notifications from monitors according to the schedule that you define.

- icon

Monitor Log Ingestion and Alerts

+ icon

Monitor Log Ingestion and Alerts

Add Scheduled Searches that monitor log ingestion and send alerts.

- icon

Automated Playbooks in Monitors

+ icon

Automated Playbooks in Monitors

Learn how to use Automation Service playbooks with monitors.

diff --git a/docs/alerts/scheduled-searches/index.md b/docs/alerts/scheduled-searches/index.md index 399f71a577..7550fef83c 100644 --- a/docs/alerts/scheduled-searches/index.md +++ b/docs/alerts/scheduled-searches/index.md @@ -11,49 +11,49 @@ A _Scheduled Search_ is a standard [Log Search](/docs/search) that you save and
- icon

Create a Scheduled Search

+ icon

Create a Scheduled Search

Learn how to add alerts and schedule search to run it at a regular scheduled time.

- icon

Create a Scheduled Search Email Alert

+ icon

Create a Scheduled Search Email Alert

Learn how to create a Scheduled Search email alert.

- icon

Create a Scheduled Search Real-Time Alert

+ icon

Create a Scheduled Search Real-Time Alert

Learn how to create an alert to get notified in real-time when error conditions exist.

- icon

Edit or Cancel a Scheduled Search

+ icon

Edit or Cancel a Scheduled Search

Learn how to edit or cancel a Scheduled Search at any time.

- icon

Save to Index

+ icon

Save to Index

Learn how to save the results to an Index after creating a Scheduled Search email alert.

- icon

Save to Lookup

+ icon

Save to Lookup

Learn how to save the results of a Scheduled Search to a Lookup Table.

- icon

Generate Cloud SIEM Signals with a Scheduled Search

+ icon

Generate Cloud SIEM Signals with a Scheduled Search

Learn how to create a Scheduled Search that will trigger a Cloud SIEM Signal.

- icon

FAQ

+ icon

FAQ

Review frequently asked questions about Scheduled Searches and troubleshooting tips.

diff --git a/docs/alerts/webhook-connections/index.md b/docs/alerts/webhook-connections/index.md index 27a2041d77..f80a476964 100644 --- a/docs/alerts/webhook-connections/index.md +++ b/docs/alerts/webhook-connections/index.md @@ -23,55 +23,55 @@ In this section, we'll introduce the following concepts and more:
Thumbnail icon -

Slack

+

Slack

Thumbnail icon -

Jira

+

Jira

diff --git a/docs/alerts/webhook-connections/servicenow/index.md b/docs/alerts/webhook-connections/servicenow/index.md index 14707bbd39..896c262202 100644 --- a/docs/alerts/webhook-connections/servicenow/index.md +++ b/docs/alerts/webhook-connections/servicenow/index.md @@ -8,9 +8,9 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; Your org can use collected data to investigate issues across your deployment and then upload it to ServiceNow through the use of scheduled searches. After saving a search, results are available in ServiceNow. Additionally, you can launch ad hoc ServiceNow investigations using search results in Sumo Logic. -[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). To access ServiceNow connections, in the main Sumo Logic menu select **Manage Data > Monitoring > Connections**. +[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). To access ServiceNow connections, in the main Sumo Logic menu select **Manage Data > Monitoring > Connections**. -
[**New UI**](/docs/get-started/sumo-logic-ui). To access ServiceNow connections, in the top menu select **Configuration**, and then under **Monitoring** select **Connections**. You can also click the **Go To...** menu at the top of the screen and select **Connections**. +
[**New UI**](/docs/get-started/sumo-logic-ui). To access ServiceNow connections, in the top menu select **Configuration**, and then under **Monitoring** select **Connections**. You can also click the **Go To...** menu at the top of the screen and select **Connections**. From here, you can search, edit, delete, and view of the details of [ServiceNow connections](/docs/alerts/webhook-connections/servicenow/). @@ -19,25 +19,25 @@ In this section, we'll introduce the following concepts:
- icon

Set Up Security Incident Webhooks

+ icon

Set Up Security Incident Webhooks

Learn how to set up a ServiceNow Security Incident Webhook connection and create scheduled searches.

- icon

Launch ServiceNow Investigations

+ icon

Launch ServiceNow Investigations

Learn how to launch ad hoc investigations directly from search results in Sumo Logic.

- icon

Set Up ServiceNow Searches

+ icon

Set Up ServiceNow Searches

Learn how to set up scheduled searches for ServiceNow integration.

- icon

Set Up ServiceNow Connections

+ icon

Set Up ServiceNow Connections

Learn how to set up connections for ServiceNow integration.

diff --git a/docs/api/index.md b/docs/api/index.md index 74d98743ab..0f234fe572 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -16,238 +16,238 @@ To connect with other Sumo Logic users, post feedback, or ask a question, visit
- icon

Authentication and Endpoints

+ icon

Authentication and Endpoints

API authentication and the Sumo Logic endpoints to use for your API client.

- Thumbnail icon

Roles

+ Thumbnail icon

Roles

- Thumbnail icon

SLOs

+ Thumbnail icon

SLOs

- Thumbnail icon

Users

+ Thumbnail icon

Users

diff --git a/docs/apm/index.md b/docs/apm/index.md index 4ff564e263..5c1e29e81d 100644 --- a/docs/apm/index.md +++ b/docs/apm/index.md @@ -12,37 +12,37 @@ Monitor user activity, span analytics, service maps, and transaction traces betw
- icon

Traces

+ icon

Traces

Learn how to work with application tracing data using dashboards, Services Lists and Maps, Spans, and queries.

- icon

Get Started with Transaction Tracing

+ icon

Get Started with Transaction Tracing

Learn how to send Traces to Sumo Logic in AWS, Kubernetes, and other environments.

- icon

OpenTelemetry App Instrumentation

+ icon

OpenTelemetry App Instrumentation

OpenTelemetry provides a wide range of componentry to get you started with distributed tracing.

- icon

Real User Monitoring

+ icon

Real User Monitoring

Understand how users interact with the digital interfaces of your business.

- icon

Configure RUM Data Collection

+ icon

Configure RUM Data Collection

Learn how to collect Traces and RUM metrics from a browser using a RUM HTTP Traces Source.

- icon

RUM Dashboards

+ icon

RUM Dashboards

Use RUM Dashboards to gain visibility into application performance and end-user activity.

diff --git a/docs/apm/traces/advanced-configuration/index.md b/docs/apm/traces/advanced-configuration/index.md index 903ca93711..ba236c776f 100644 --- a/docs/apm/traces/advanced-configuration/index.md +++ b/docs/apm/traces/advanced-configuration/index.md @@ -5,26 +5,24 @@ sidebar_label: Advanced Configuration description: This guide provides advanced configuration options for Distributed Tracing (APM). --- -import useBaseUrl from '@docusaurus/useBaseUrl'; - This guide provides advanced configuration options for Application Performance Management (APM) and distributed tracing, including the following:
-

Correlating Logs and Traces

+

Correlating Logs and Traces

Link your traces and logs to better understand your environment.

-

Filter and Shape Your Trace Data

+

Filter and Shape Your Trace Data

Create and apply custom rules to filter and shape your tracing data.

-

Working with Span Attributes

+

Working with Span Attributes

Learn how to modify the attributes of your spans.

diff --git a/docs/apm/traces/get-started-transaction-tracing/index.md b/docs/apm/traces/get-started-transaction-tracing/index.md index 93adfac829..23bc934a74 100644 --- a/docs/apm/traces/get-started-transaction-tracing/index.md +++ b/docs/apm/traces/get-started-transaction-tracing/index.md @@ -17,19 +17,19 @@ Sumo Logic tracing supports the OpenTelemetry standard as well as other legacy o
- src={useBaseUrl('img/icons/operations/kubernetes.png')} alt="icon" width="40"/>

For Kubernetes environments

+ icon

For Kubernetes environments

Learn how to install the Sumo Logic Kubernetes Collection and send traces using OpenTelemetry.

- src={useBaseUrl('img/icons/traces.png')} alt="icon" width="40"/>

For Other environments

+ icon

For Other environments

Learn how to leverage OpenTelemetry standards and start collecting Traces.

@@ -48,49 +48,49 @@ Learn how to collect telemetry data from applications written in the following p
Thumbnail icon -

Java

+

Java

Thumbnail icon -

.NET

+

.NET

Thumbnail icon -

Ruby

+

Ruby

Thumbnail icon -

Istio

+

Istio

@@ -104,19 +104,19 @@ Learn how to install and configure OpenTelemetry distributed tracing for AWS Lam
Thumbnail icon -

Java

+

Java

@@ -129,19 +129,19 @@ Setting up Tracing instrumentation for applications deployed in Kubernetes just
Thumbnail icon -

Java

+

Java

@@ -151,19 +151,19 @@ Setting up Tracing instrumentation for applications deployed in Kubernetes just
- src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Correlating Logs and Traces

+ icon

Correlating Logs and Traces

Linking together your Sumo Logic traces and logs will provide you a broad and deep understanding of your environment.

- src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Filter and Shape Your Trace Data

+ icon

Filter and Shape Your Trace Data

Learn how to create and apply custom rules to shape tracing data and specify which data to send to Sumo Logic.

- src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Working with Span Attributes

+ icon

Working with Span Attributes

Learn how to modify span attributes to enhance diagnostic data details, remove redundant information, and mask sensitive information before they leave your site.

diff --git a/docs/cloud-soar/index.md b/docs/cloud-soar/index.md index e9de446410..b10d5b5d29 100644 --- a/docs/cloud-soar/index.md +++ b/docs/cloud-soar/index.md @@ -16,36 +16,36 @@ This section contains the following topics:
- Shield and gear icon

Overview

+ Shield and gear icon

Overview

Learn how Cloud SOAR allows you to perform incident management and threat response.

- Shield and gear icon

Introduction

+ Shield and gear icon

Introduction

Provides an introduction to Cloud SOAR for analysts and administrators.

- Shield and gear icon

Cloud SOAR Compared to the Automation Service

+ Shield and gear icon

Cloud SOAR Compared to the Automation Service

Compare the features of Cloud SOAR with the Automation Service.

- Shield and gear icon

Incidents and Triage

+ Shield and gear icon

Incidents and Triage

Customize your Cloud SOAR Incident data display.

- Shield and gear icon

Automation

+ Shield and gear icon

Automation

Configuration tools for Cloud SOAR automation and orchestration features.

- Shield and gear icon

Legacy Cloud SOAR

+ Shield and gear icon

Legacy Cloud SOAR

Learn about our legacy Cloud SOAR product offering.

diff --git a/docs/cloud-soar/legacy/index.md b/docs/cloud-soar/legacy/index.md index 0f190d392a..f64b2f1398 100644 --- a/docs/cloud-soar/legacy/index.md +++ b/docs/cloud-soar/legacy/index.md @@ -16,44 +16,44 @@ In this section, we'll introduce the following concepts:
- Computer chip icon

Legacy Cloud SOAR Architecture

+ Computer chip icon

Legacy Cloud SOAR Architecture

Learn about features of the legacy Cloud SOAR architecture.

- Computer chip icon

Legacy Cloud SOAR Global Functions Menu

+ Computer chip icon

Legacy Cloud SOAR Global Functions Menu

Learn about features of the legacy Cloud SOAR Global Functions menu.

- Computer chip icon

Legacy Cloud SOAR Main Menu

+ Computer chip icon

Legacy Cloud SOAR Main Menu

Learn about features of the legacy Cloud SOAR main menu.

- Computer chip icon

Legacy Cloud SOAR Incident Management and Triage

+ Computer chip icon

Legacy Cloud SOAR Incident Management and Triage

Learn about features of the legacy Cloud SOAR automated real-time incident management and threat response.

- Computer chip icon

Legacy Cloud SOAR Automation

+ Computer chip icon

Legacy Cloud SOAR Automation

Learn about features of legacy Cloud SOAR automation.

- Computer chip icon

Cloud SOAR for MSSPs (Legacy Only)

+ Computer chip icon

Cloud SOAR for MSSPs (Legacy Only)

Full-featured instance of legacy Cloud SOAR designed for internal MSSP use.

- Computer chip icon

Legacy Cloud SOAR APIs

+ Computer chip icon

Legacy Cloud SOAR APIs

Learn how to access legacy Cloud SOAR APIs and API documentation.

-
\ No newline at end of file +
diff --git a/docs/contributing/index.md b/docs/contributing/index.md index e43a688b48..e9ef0529e4 100644 --- a/docs/contributing/index.md +++ b/docs/contributing/index.md @@ -21,32 +21,32 @@ You can also explore more Sumo Logic open-source projects on our [GitHub site](h diff --git a/docs/cse/administration/index.md b/docs/cse/administration/index.md index 097711e074..1e5800b706 100644 --- a/docs/cse/administration/index.md +++ b/docs/cse/administration/index.md @@ -12,103 +12,103 @@ Learn about onboarding tasks and best practices for Cloud SIEM administrators. I
- Magnifying glass icon

Filter and Search

+ Magnifying glass icon

Filter and Search

Learn how to filter and search Cloud SIEM list pages.

- Network icon

Network Blocks

+ Network icon

Network Blocks

Learn about Network Blocks, their purpose, and instructions for setting them up and using them.

- Tree diagram icon

Create a Custom Tag Schema

+ Tree diagram icon

Create a Custom Tag Schema

Learn how to create a custom tag schema in Cloud SIEM.

- Shield with a globe icon

Create a Custom Threat Intelligence Source

+ Shield with a globe icon

Create a Custom Threat Intelligence Source

Learn how to create and manage Custom Threat Sources.

- Cloud with a shield icon

Create Cloud SIEM Actions

+ Cloud with a shield icon

Create Cloud SIEM Actions

Learn how to issue a notification to another service when certain events occur in Cloud SIEM.

- Database symbol in a magnifying glass icon

Create Cloud SIEM Context Actions

+ Database symbol in a magnifying glass icon

Create Cloud SIEM Context Actions

Learn to query an external system for details about an entity, IOC, or data encountered in a record.

- Code icon

Cloud SIEM APIs

+ Code icon

Cloud SIEM APIs

Learn how to access Cloud SIEM APIs and API documentation.

- Database icon

Data Retention

+ Database icon

Data Retention

Learn about retention periods for different types of Cloud SIEM data.

- Document icon

Audit Logging

+ Document icon

Audit Logging

Learn how to search the Audit Event Index for Cloud SIEM log events.

- People with gears icon

Cloud SIEM User Accounts and Roles

+ People with gears icon

Cloud SIEM User Accounts and Roles

Learn how to create and manage user accounts and roles for Cloud SIEM.

- Small boxes merging into a circle icon

Custom Inventory Source

+ Small boxes merging into a circle icon

Custom Inventory Source

Learn how to extract Inventory Data from logs in Sumo Logic and send it to Cloud SIEM.

- Check mark in an magnifhing glass icon

Save Inventory Data to a Lookup Table

+ Check mark in an magnifhing glass icon

Save Inventory Data to a Lookup Table

Learn how to use a saved Sumo Logic search to populate a Lookup Table with Cloud SIEM inventory data.

- Bar chart with a gear icon

Manage Custom Insight Resolutions

+ Bar chart with a gear icon

Manage Custom Insight Resolutions

Learn how to create and manage custom insight resolutions.

- Bar chart in a circle icon

Managing Custom Insight Statuses

+ Bar chart in a circle icon

Managing Custom Insight Statuses

Learn how to create and manage custom insight statuses.

- Squares icon

Sensor Zones

+ Squares icon

Sensor Zones

Learn how to use Sensor Zones to distinguish between Cloud SIEM entities that have the same IP address.

- Peoople on a gear icon

Inventory Sources and Data

+ Peoople on a gear icon

Inventory Sources and Data

Learn about Inventory Sources and the Inventory Data they collect.

- People on a gear icon

MITRE Coverage

+ People on a gear icon

MITRE Coverage

Learn how well you are prepared to detect adversary attacks based on the tactics and techniques in the MITRE ATT&CK Enterprise Matrix.

diff --git a/docs/cse/automation/index.md b/docs/cse/automation/index.md index 97c3ec2bc4..5a3e9fbc85 100644 --- a/docs/cse/automation/index.md +++ b/docs/cse/automation/index.md @@ -15,19 +15,19 @@ In this section, we'll introduce the following concepts:
- Shield on a workflow icon

About the Automation Service and Cloud SIEM

+ Shield on a workflow icon

About the Automation Service and Cloud SIEM

Get an overview of how the Automation Service allows you to automate smart actions, including enrichments and notifications.

- Shield on a workflow icon

Automations in Cloud SIEM

+ Shield on a workflow icon

Automations in Cloud SIEM

Learn how to create automations that run playbooks to add enrichments and create notifications for either insights or entities.

- Shield on a workflow icon

Cloud SIEM Automation Examples

+ Shield on a workflow icon

Cloud SIEM Automation Examples

See examples that show you how to create automations for different situations.

diff --git a/docs/cse/get-started-with-cloud-siem/index.md b/docs/cse/get-started-with-cloud-siem/index.md index 3342c6ce0f..fb823963ab 100644 --- a/docs/cse/get-started-with-cloud-siem/index.md +++ b/docs/cse/get-started-with-cloud-siem/index.md @@ -11,49 +11,49 @@ This guide helps you get started using Cloud SIEM for threat hunting.
- Shield on a workflow icon

Cloud SIEM User Interface

+ Shield on a workflow icon

Cloud SIEM User Interface

Learn about the Cloud SIEM user interface.

- Shield on a workflow icon

Introduction to Cloud SIEM for Analysts

+ Shield on a workflow icon

Introduction to Cloud SIEM for Analysts

Learn basic concepts about Cloud SIEM for security analysts.

- Shield on a workflow icon

Introduction to Cloud SIEM for Administrators

+ Shield on a workflow icon

Introduction to Cloud SIEM for Administrators

Learn basic concepts about Cloud SIEM for administrators.

- Shield on a workflow icon

Cloud SIEM Heads Up Display

+ Shield on a workflow icon

Cloud SIEM Heads Up Display

Learn how to use the Heads Up Display to perform threat investigations.

- Shield on a workflow icon

Insight Generation

+ Shield on a workflow icon

Insight Generation

Learn how Cloud SIEM correlates signals by entity to create insights.

- Shield on a workflow icon

Cloud SIEM Insight UI

+ Shield on a workflow icon

Cloud SIEM Insight UI

Learn about the contents of the insights UI in Cloud SIEM.

- Checklist icon

Cloud SIEM Content Catalog

+ Checklist icon

Cloud SIEM Content Catalog

See the out-of-the-box rules, schema, mappings, and parsers for Cloud SIEM.

- Checklist icon

Cloud SIEM Onboarding Checklist

+ Checklist icon

Cloud SIEM Onboarding Checklist

Get up and running quickly with Cloud SIEM administrator tasks.

-
\ No newline at end of file +
diff --git a/docs/cse/index.md b/docs/cse/index.md index 8f3c039626..99e9bbdb2c 100644 --- a/docs/cse/index.md +++ b/docs/cse/index.md @@ -21,61 +21,61 @@ This section contains the following topics:
- Shield on a cloud icon

Get Started with Cloud SIEM

+ Shield on a cloud icon

Get Started with Cloud SIEM

Learn how to start using Cloud SIEM for threat hunting.

- Shield on a cloud icon

Records, Signals, Entities, and Insights

+ Shield on a cloud icon

Records, Signals, Entities, and Insights

Learn about Insight generation, working with Entities, and how to query Cloud SIEM Records.

- Shield on a cloud icon

Ingestion

+ Shield on a cloud icon

Ingestion

Learn how to configure ingestion for supported products and services.

- Shield on a cloud icon

Rules

+ Shield on a cloud icon

Rules

Learn how to write rules, rules syntax, and Cloud SIEM built-in rules.

- Shield on a cloud icon

Schema

+ Shield on a cloud icon

Schema

Learn about Cloud SIEM Schema v3, schema attributes, and the Record processing pipeline.

- Shield on a cloud icon

Sensors

+ Shield on a cloud icon

Sensors

Cloud SIEM Sensors collect log and event data from your infrastructure and applications.

- Shield on a cloud icon

Integrations

+ Shield on a cloud icon

Integrations

Cloud SIEM integration with Sumo Logic and threat intel sources, and leveraging the Cloud SIEM Insight Enrichment Server.

- Shield on a cloud icon

Match Lists and Suppressed Lists

+ Shield on a cloud icon

Match Lists and Suppressed Lists

Learn about creating a Match list and their usage in rules.

- Shield on a cloud icon

Automation

+ Shield on a cloud icon

Automation

Learn how to configure automations to create notifications and enrichments in Cloud SIEM.

- Shield on a cloud icon

Administration

+ Shield on a cloud icon

Administration

Learn how to set up user accounts and roles, Actions, Network Blocks, custom Insight status and sub-resolutions, and more.

diff --git a/docs/cse/ingestion/index.md b/docs/cse/ingestion/index.md index 13caad49ce..67dbfe243d 100644 --- a/docs/cse/ingestion/index.md +++ b/docs/cse/ingestion/index.md @@ -14,31 +14,31 @@ In this section, we'll introduce the following concepts:
- Database icon

Best Practices

+ Database icon

Best Practices

Learn how to send Sumo Logic Source or Cloud-to-Cloud Connector log messages to Cloud SIEM to be transformed into Records.

- Database icon

Products with Log Mappings

+ Database icon

Products with Log Mappings

See the product and services that Cloud SIEM supports with log mappings and parsers.

- Database icon

Viewing Log Mappers

+ Database icon

Viewing Log Mappers

Learn how to find what mappers Cloud SIEM provides for a product or service.

- Shield on a cloud icon

Sumo Logic Cloud SIEM Ingest Mapping

+ Shield on a cloud icon

Sumo Logic Cloud SIEM Ingest Mapping

Configure Sumo Logic to send log messages to be processed by Cloud SIEM's system mapper.

- Shield on a cloud icon

Ingestion Sources for Cloud SIEM

+ Shield on a cloud icon

Ingestion Sources for Cloud SIEM

Learn the sources available for ingesting data to Cloud SIEM.

From c80269e89c1f8c42ad3027724aee397c923d5469 Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Tue, 11 Feb 2025 13:28:33 -0800 Subject: [PATCH 22/25] Fix Root.tsx to enable popup --- src/theme/Root.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/theme/Root.tsx b/src/theme/Root.tsx index ab3417469e..721a911b1c 100644 --- a/src/theme/Root.tsx +++ b/src/theme/Root.tsx @@ -1,13 +1,17 @@ import React from 'react'; import Berry from '../components/Berry'; import { useLocation } from '@docusaurus/router'; +import { useHomePageRoute } from '@docusaurus/theme-common/internal'; export default function Root({ children }: { children: React.ReactNode }) { const location = useLocation(); + const homePageRoute = useHomePageRoute(); + const isHomePage = homePageRoute?.path === location.pathname; + return ( <> {children} - {location.pathname !== '/' && } + {!isHomePage && } ); } From b293bf2403d0dd944cbf549e12abfff9bb5af35a Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Tue, 11 Feb 2025 22:46:04 -0800 Subject: [PATCH 23/25] Revert back to index page baseURL syntax --- docs/alerts/monitors/index.md | 22 ++--- docs/alerts/scheduled-searches/index.md | 16 ++-- docs/alerts/webhook-connections/index.md | 18 ++-- .../webhook-connections/servicenow/index.md | 8 +- docs/api/index.md | 94 +++++++++---------- docs/apm/index.md | 12 +-- .../traces/advanced-configuration/index.md | 8 +- .../get-started-transaction-tracing/index.md | 40 ++++---- docs/apm/traces/index.md | 18 ++-- docs/cloud-soar/index.md | 12 +-- docs/cloud-soar/legacy/index.md | 14 +-- docs/contributing/index.md | 12 +-- docs/cse/administration/index.md | 36 +++---- docs/cse/automation/index.md | 6 +- docs/cse/get-started-with-cloud-siem/index.md | 16 ++-- docs/cse/index.md | 20 ++-- docs/cse/ingestion/index.md | 10 +- docs/cse/schema/index.md | 26 +++-- docs/cse/troubleshoot/index.md | 4 +- docs/get-started/index.md | 20 ++-- docs/release-notes/index.md | 88 ++++++++++++----- .../cloud-infrastructure-security/index.md | 8 +- .../additional-security-features/index.md | 14 +-- .../source-templates/index.md | 24 ++--- docs/send-data/reference-information/index.md | 10 +- src/css/sumo.scss | 4 +- 26 files changed, 303 insertions(+), 257 deletions(-) diff --git a/docs/alerts/monitors/index.md b/docs/alerts/monitors/index.md index e3bebff5cc..e9a18bc784 100644 --- a/docs/alerts/monitors/index.md +++ b/docs/alerts/monitors/index.md @@ -14,67 +14,67 @@ In this section, we'll introduce the following concepts:
- icon

Overview

+ icon

Overview

Set up monitors to continuously query your logs or metrics and send notifications when specific events occur.

- icon

Create a Monitor

+ icon

Create a Monitor

Learn how to create a monitor.

- icon

Monitor Settings

+ icon

Monitor Settings

Learn how to view, create, manage, and organize Monitors.

- icon

Monitors FAQ

+ icon

Monitors FAQ

This topic lists the common FAQs regarding Monitors.

- icon

Alert Variables

+ icon

Alert Variables

Use Alert Variables as parameters to customize the JSON payload object of your alert notifications.

- icon

Alert Response

+ icon

Alert Response

Get contextual insights about triggered alerts to minimize the time needed to investigate and resolve application failures.

- icon

Alert Response FAQ

+ icon

Alert Response FAQ

This topic lists the common FAQs regarding Alert Response.

- icon

Alert Grouping

+ icon

Alert Grouping

Customize how your alerts are generated from monitors by specifying a grouping condition based on specific fields.

- icon

Muting Schedules

+ icon

Muting Schedules

Pause alert notifications from monitors according to the schedule that you define.

- icon

Monitor Log Ingestion and Alerts

+ icon

Monitor Log Ingestion and Alerts

Add Scheduled Searches that monitor log ingestion and send alerts.

- icon

Automated Playbooks in Monitors

+ icon

Automated Playbooks in Monitors

Learn how to use Automation Service playbooks with monitors.

diff --git a/docs/alerts/scheduled-searches/index.md b/docs/alerts/scheduled-searches/index.md index 7550fef83c..399f71a577 100644 --- a/docs/alerts/scheduled-searches/index.md +++ b/docs/alerts/scheduled-searches/index.md @@ -11,49 +11,49 @@ A _Scheduled Search_ is a standard [Log Search](/docs/search) that you save and
- icon

Create a Scheduled Search

+ icon

Create a Scheduled Search

Learn how to add alerts and schedule search to run it at a regular scheduled time.

- icon

Create a Scheduled Search Email Alert

+ icon

Create a Scheduled Search Email Alert

Learn how to create a Scheduled Search email alert.

- icon

Create a Scheduled Search Real-Time Alert

+ icon

Create a Scheduled Search Real-Time Alert

Learn how to create an alert to get notified in real-time when error conditions exist.

- icon

Edit or Cancel a Scheduled Search

+ icon

Edit or Cancel a Scheduled Search

Learn how to edit or cancel a Scheduled Search at any time.

- icon

Save to Index

+ icon

Save to Index

Learn how to save the results to an Index after creating a Scheduled Search email alert.

- icon

Save to Lookup

+ icon

Save to Lookup

Learn how to save the results of a Scheduled Search to a Lookup Table.

- icon

Generate Cloud SIEM Signals with a Scheduled Search

+ icon

Generate Cloud SIEM Signals with a Scheduled Search

Learn how to create a Scheduled Search that will trigger a Cloud SIEM Signal.

- icon

FAQ

+ icon

FAQ

Review frequently asked questions about Scheduled Searches and troubleshooting tips.

diff --git a/docs/alerts/webhook-connections/index.md b/docs/alerts/webhook-connections/index.md index f80a476964..27a2041d77 100644 --- a/docs/alerts/webhook-connections/index.md +++ b/docs/alerts/webhook-connections/index.md @@ -23,55 +23,55 @@ In this section, we'll introduce the following concepts and more:
Thumbnail icon -

Slack

+

Slack

Thumbnail icon -

Jira

+

Jira

diff --git a/docs/alerts/webhook-connections/servicenow/index.md b/docs/alerts/webhook-connections/servicenow/index.md index 896c262202..e880c9979a 100644 --- a/docs/alerts/webhook-connections/servicenow/index.md +++ b/docs/alerts/webhook-connections/servicenow/index.md @@ -19,25 +19,25 @@ In this section, we'll introduce the following concepts:
- icon

Set Up Security Incident Webhooks

+ icon

Set Up Security Incident Webhooks

Learn how to set up a ServiceNow Security Incident Webhook connection and create scheduled searches.

- icon

Launch ServiceNow Investigations

+ icon

Launch ServiceNow Investigations

Learn how to launch ad hoc investigations directly from search results in Sumo Logic.

- icon

Set Up ServiceNow Searches

+ icon

Set Up ServiceNow Searches

Learn how to set up scheduled searches for ServiceNow integration.

- icon

Set Up ServiceNow Connections

+ icon

Set Up ServiceNow Connections

Learn how to set up connections for ServiceNow integration.

diff --git a/docs/api/index.md b/docs/api/index.md index 2ad887755a..74d98743ab 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -16,238 +16,238 @@ To connect with other Sumo Logic users, post feedback, or ask a question, visit
- icon

Authentication and Endpoints

+ icon

Authentication and Endpoints

API authentication and the Sumo Logic endpoints to use for your API client.

- Thumbnail icon

Roles

+ Thumbnail icon

Roles

- Thumbnail icon

SLOs

+ Thumbnail icon

SLOs

- Thumbnail icon

Users

+ Thumbnail icon

Users

diff --git a/docs/apm/index.md b/docs/apm/index.md index 5c1e29e81d..4ff564e263 100644 --- a/docs/apm/index.md +++ b/docs/apm/index.md @@ -12,37 +12,37 @@ Monitor user activity, span analytics, service maps, and transaction traces betw
- icon

Traces

+ icon

Traces

Learn how to work with application tracing data using dashboards, Services Lists and Maps, Spans, and queries.

- icon

Get Started with Transaction Tracing

+ icon

Get Started with Transaction Tracing

Learn how to send Traces to Sumo Logic in AWS, Kubernetes, and other environments.

- icon

OpenTelemetry App Instrumentation

+ icon

OpenTelemetry App Instrumentation

OpenTelemetry provides a wide range of componentry to get you started with distributed tracing.

- icon

Real User Monitoring

+ icon

Real User Monitoring

Understand how users interact with the digital interfaces of your business.

- icon

Configure RUM Data Collection

+ icon

Configure RUM Data Collection

Learn how to collect Traces and RUM metrics from a browser using a RUM HTTP Traces Source.

- icon

RUM Dashboards

+ icon

RUM Dashboards

Use RUM Dashboards to gain visibility into application performance and end-user activity.

diff --git a/docs/apm/traces/advanced-configuration/index.md b/docs/apm/traces/advanced-configuration/index.md index ba236c776f..903ca93711 100644 --- a/docs/apm/traces/advanced-configuration/index.md +++ b/docs/apm/traces/advanced-configuration/index.md @@ -5,24 +5,26 @@ sidebar_label: Advanced Configuration description: This guide provides advanced configuration options for Distributed Tracing (APM). --- +import useBaseUrl from '@docusaurus/useBaseUrl'; + This guide provides advanced configuration options for Application Performance Management (APM) and distributed tracing, including the following:
-

Correlating Logs and Traces

+

Correlating Logs and Traces

Link your traces and logs to better understand your environment.

-

Filter and Shape Your Trace Data

+

Filter and Shape Your Trace Data

Create and apply custom rules to filter and shape your tracing data.

-

Working with Span Attributes

+

Working with Span Attributes

Learn how to modify the attributes of your spans.

diff --git a/docs/apm/traces/get-started-transaction-tracing/index.md b/docs/apm/traces/get-started-transaction-tracing/index.md index 23bc934a74..93adfac829 100644 --- a/docs/apm/traces/get-started-transaction-tracing/index.md +++ b/docs/apm/traces/get-started-transaction-tracing/index.md @@ -17,19 +17,19 @@ Sumo Logic tracing supports the OpenTelemetry standard as well as other legacy o
- icon

For Kubernetes environments

+ src={useBaseUrl('img/icons/operations/kubernetes.png')} alt="icon" width="40"/>

For Kubernetes environments

Learn how to install the Sumo Logic Kubernetes Collection and send traces using OpenTelemetry.

- icon

For Other environments

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="40"/>

For Other environments

Learn how to leverage OpenTelemetry standards and start collecting Traces.

@@ -48,49 +48,49 @@ Learn how to collect telemetry data from applications written in the following p
Thumbnail icon -

Java

+

Java

Thumbnail icon -

.NET

+

.NET

Thumbnail icon -

Ruby

+

Ruby

Thumbnail icon -

Istio

+

Istio

@@ -104,19 +104,19 @@ Learn how to install and configure OpenTelemetry distributed tracing for AWS Lam
Thumbnail icon -

Java

+

Java

@@ -129,19 +129,19 @@ Setting up Tracing instrumentation for applications deployed in Kubernetes just
Thumbnail icon -

Java

+

Java

@@ -151,19 +151,19 @@ Setting up Tracing instrumentation for applications deployed in Kubernetes just
- icon

Correlating Logs and Traces

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Correlating Logs and Traces

Linking together your Sumo Logic traces and logs will provide you a broad and deep understanding of your environment.

- icon

Filter and Shape Your Trace Data

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Filter and Shape Your Trace Data

Learn how to create and apply custom rules to shape tracing data and specify which data to send to Sumo Logic.

- icon

Working with Span Attributes

+ src={useBaseUrl('img/icons/traces.png')} alt="icon" width="30"/>

Working with Span Attributes

Learn how to modify span attributes to enhance diagnostic data details, remove redundant information, and mask sensitive information before they leave your site.

diff --git a/docs/apm/traces/index.md b/docs/apm/traces/index.md index 97bbe24440..e68b67aeed 100644 --- a/docs/apm/traces/index.md +++ b/docs/apm/traces/index.md @@ -14,55 +14,55 @@ This guide provides information to work with your tracing data.
- icon

Setup and Configuration

+ icon

Setup and Configuration

Learn how to send traces to Sumo Logic.

- icon

Quickstart

+ icon

Quickstart

Get up and running quickly with and explore how your application is behaving with Trace analytics.

- icon

View and Investigate Traces

+ icon

View and Investigate Traces

Learn how to search and investigate your traces, trace views, and trace events.

- icon

Services List and Services Map

+ icon

Services List and Services Map

View your application topology and investigate microservice interactions.

- icon

Application Service APM and Tracing Dashboards

+ icon

Application Service APM and Tracing Dashboards

Explore and create Tracing dashboards, install apps, and more.

- icon

Span Analytics and Queries

+ icon

Span Analytics and Queries

Learn how to use the Spans page to explore your span data.

- icon

Search Query Language Support for Traces

+ icon

Search Query Language Support for Traces

Use our Search Query Language to gain valuable insight into your traces.

- icon

Advanced Configuration

+ icon

Advanced Configuration

Learn how to link logs and traces, modify span attributes, and mask sensitive site information.

- icon

Troubleshoot Ingest

+ icon

Troubleshoot Ingest

Use tracing to troubleshoot problems with data ingest.

diff --git a/docs/cloud-soar/index.md b/docs/cloud-soar/index.md index b10d5b5d29..e9de446410 100644 --- a/docs/cloud-soar/index.md +++ b/docs/cloud-soar/index.md @@ -16,36 +16,36 @@ This section contains the following topics:
- Shield and gear icon

Overview

+ Shield and gear icon

Overview

Learn how Cloud SOAR allows you to perform incident management and threat response.

- Shield and gear icon

Introduction

+ Shield and gear icon

Introduction

Provides an introduction to Cloud SOAR for analysts and administrators.

- Shield and gear icon

Cloud SOAR Compared to the Automation Service

+ Shield and gear icon

Cloud SOAR Compared to the Automation Service

Compare the features of Cloud SOAR with the Automation Service.

- Shield and gear icon

Incidents and Triage

+ Shield and gear icon

Incidents and Triage

Customize your Cloud SOAR Incident data display.

- Shield and gear icon

Automation

+ Shield and gear icon

Automation

Configuration tools for Cloud SOAR automation and orchestration features.

- Shield and gear icon

Legacy Cloud SOAR

+ Shield and gear icon

Legacy Cloud SOAR

Learn about our legacy Cloud SOAR product offering.

diff --git a/docs/cloud-soar/legacy/index.md b/docs/cloud-soar/legacy/index.md index f64b2f1398..86f8976487 100644 --- a/docs/cloud-soar/legacy/index.md +++ b/docs/cloud-soar/legacy/index.md @@ -16,43 +16,43 @@ In this section, we'll introduce the following concepts:
- Computer chip icon

Legacy Cloud SOAR Architecture

+ Computer chip icon

Legacy Cloud SOAR Architecture

Learn about features of the legacy Cloud SOAR architecture.

- Computer chip icon

Legacy Cloud SOAR Global Functions Menu

+ Computer chip icon

Legacy Cloud SOAR Global Functions Menu

Learn about features of the legacy Cloud SOAR Global Functions menu.

- Computer chip icon

Legacy Cloud SOAR Main Menu

+ Computer chip icon

Legacy Cloud SOAR Main Menu

Learn about features of the legacy Cloud SOAR main menu.

- Computer chip icon

Legacy Cloud SOAR Incident Management and Triage

+ Computer chip icon

Legacy Cloud SOAR Incident Management and Triage

Learn about features of the legacy Cloud SOAR automated real-time incident management and threat response.

- Computer chip icon

Legacy Cloud SOAR Automation

+ Computer chip icon

Legacy Cloud SOAR Automation

Learn about features of legacy Cloud SOAR automation.

- Computer chip icon

Cloud SOAR for MSSPs (Legacy Only)

+ Computer chip icon

Cloud SOAR for MSSPs (Legacy Only)

Full-featured instance of legacy Cloud SOAR designed for internal MSSP use.

- Computer chip icon

Legacy Cloud SOAR APIs

+ Computer chip icon

Legacy Cloud SOAR APIs

Learn how to access legacy Cloud SOAR APIs and API documentation.

diff --git a/docs/contributing/index.md b/docs/contributing/index.md index e9ef0529e4..e43a688b48 100644 --- a/docs/contributing/index.md +++ b/docs/contributing/index.md @@ -21,32 +21,32 @@ You can also explore more Sumo Logic open-source projects on our [GitHub site](h diff --git a/docs/cse/administration/index.md b/docs/cse/administration/index.md index d88dcb25a0..097711e074 100644 --- a/docs/cse/administration/index.md +++ b/docs/cse/administration/index.md @@ -12,103 +12,103 @@ Learn about onboarding tasks and best practices for Cloud SIEM administrators. I
- Magnifying glass icon

Filter and Search

+ Magnifying glass icon

Filter and Search

Learn how to filter and search Cloud SIEM list pages.

- Network icon

Network Blocks

-

Learn about network blocks, their purpose, and instructions for setting them up and using them.

+ Network icon

Network Blocks

+

Learn about Network Blocks, their purpose, and instructions for setting them up and using them.

- Tree diagram icon

Create a Custom Tag Schema

+ Tree diagram icon

Create a Custom Tag Schema

Learn how to create a custom tag schema in Cloud SIEM.

- Shield with a globe icon

Create a Custom Threat Intelligence Source

+ Shield with a globe icon

Create a Custom Threat Intelligence Source

Learn how to create and manage Custom Threat Sources.

- Cloud with a shield icon

Create Cloud SIEM Actions

+ Cloud with a shield icon

Create Cloud SIEM Actions

Learn how to issue a notification to another service when certain events occur in Cloud SIEM.

- Database symbol in a magnifying glass icon

Create Cloud SIEM Context Actions

+ Database symbol in a magnifying glass icon

Create Cloud SIEM Context Actions

Learn to query an external system for details about an entity, IOC, or data encountered in a record.

- Code icon

Cloud SIEM APIs

+ Code icon

Cloud SIEM APIs

Learn how to access Cloud SIEM APIs and API documentation.

- Database icon

Data Retention

+ Database icon

Data Retention

Learn about retention periods for different types of Cloud SIEM data.

- Document icon

Audit Logging

+ Document icon

Audit Logging

Learn how to search the Audit Event Index for Cloud SIEM log events.

- People with gears icon

Cloud SIEM User Accounts and Roles

+ People with gears icon

Cloud SIEM User Accounts and Roles

Learn how to create and manage user accounts and roles for Cloud SIEM.

- Small boxes merging into a circle icon

Custom Inventory Source

+ Small boxes merging into a circle icon

Custom Inventory Source

Learn how to extract Inventory Data from logs in Sumo Logic and send it to Cloud SIEM.

- Check mark in an magnifhing glass icon

Save Inventory Data to a Lookup Table

+ Check mark in an magnifhing glass icon

Save Inventory Data to a Lookup Table

Learn how to use a saved Sumo Logic search to populate a Lookup Table with Cloud SIEM inventory data.

- Bar chart with a gear icon

Manage Custom Insight Resolutions

+ Bar chart with a gear icon

Manage Custom Insight Resolutions

Learn how to create and manage custom insight resolutions.

- Bar chart in a circle icon

Managing Custom Insight Statuses

+ Bar chart in a circle icon

Managing Custom Insight Statuses

Learn how to create and manage custom insight statuses.

- Squares icon

Sensor Zones

+ Squares icon

Sensor Zones

Learn how to use Sensor Zones to distinguish between Cloud SIEM entities that have the same IP address.

- Peoople on a gear icon

Inventory Sources and Data

+ Peoople on a gear icon

Inventory Sources and Data

Learn about Inventory Sources and the Inventory Data they collect.

- People on a gear icon

MITRE Coverage

+ People on a gear icon

MITRE Coverage

Learn how well you are prepared to detect adversary attacks based on the tactics and techniques in the MITRE ATT&CK Enterprise Matrix.

diff --git a/docs/cse/automation/index.md b/docs/cse/automation/index.md index 5a3e9fbc85..97c3ec2bc4 100644 --- a/docs/cse/automation/index.md +++ b/docs/cse/automation/index.md @@ -15,19 +15,19 @@ In this section, we'll introduce the following concepts:
- Shield on a workflow icon

About the Automation Service and Cloud SIEM

+ Shield on a workflow icon

About the Automation Service and Cloud SIEM

Get an overview of how the Automation Service allows you to automate smart actions, including enrichments and notifications.

- Shield on a workflow icon

Automations in Cloud SIEM

+ Shield on a workflow icon

Automations in Cloud SIEM

Learn how to create automations that run playbooks to add enrichments and create notifications for either insights or entities.

- Shield on a workflow icon

Cloud SIEM Automation Examples

+ Shield on a workflow icon

Cloud SIEM Automation Examples

See examples that show you how to create automations for different situations.

diff --git a/docs/cse/get-started-with-cloud-siem/index.md b/docs/cse/get-started-with-cloud-siem/index.md index fb823963ab..5b3c1298b1 100644 --- a/docs/cse/get-started-with-cloud-siem/index.md +++ b/docs/cse/get-started-with-cloud-siem/index.md @@ -11,48 +11,48 @@ This guide helps you get started using Cloud SIEM for threat hunting.
- Shield on a workflow icon

Cloud SIEM User Interface

+ Shield on a workflow icon

Cloud SIEM User Interface

Learn about the Cloud SIEM user interface.

- Shield on a workflow icon

Introduction to Cloud SIEM for Analysts

+ Shield on a workflow icon

Introduction to Cloud SIEM for Analysts

Learn basic concepts about Cloud SIEM for security analysts.

- Shield on a workflow icon

Introduction to Cloud SIEM for Administrators

+ Shield on a workflow icon

Introduction to Cloud SIEM for Administrators

Learn basic concepts about Cloud SIEM for administrators.

- Shield on a workflow icon

Cloud SIEM Heads Up Display

+ Shield on a workflow icon

Cloud SIEM Heads Up Display

Learn how to use the Heads Up Display to perform threat investigations.

- Shield on a workflow icon

Insight Generation

+ Shield on a workflow icon

Insight Generation

Learn how Cloud SIEM correlates signals by entity to create insights.

- Shield on a workflow icon

Cloud SIEM Insight UI

+ Shield on a workflow icon

Cloud SIEM Insight UI

Learn about the contents of the insights UI in Cloud SIEM.

- Checklist icon

Cloud SIEM Content Catalog

+ Checklist icon

Cloud SIEM Content Catalog

See the out-of-the-box rules, schema, mappings, and parsers for Cloud SIEM.

- Checklist icon

Cloud SIEM Onboarding Checklist

+ Checklist icon

Cloud SIEM Onboarding Checklist

Get up and running quickly with Cloud SIEM administrator tasks.

diff --git a/docs/cse/index.md b/docs/cse/index.md index 99e9bbdb2c..8f3c039626 100644 --- a/docs/cse/index.md +++ b/docs/cse/index.md @@ -21,61 +21,61 @@ This section contains the following topics:
- Shield on a cloud icon

Get Started with Cloud SIEM

+ Shield on a cloud icon

Get Started with Cloud SIEM

Learn how to start using Cloud SIEM for threat hunting.

- Shield on a cloud icon

Records, Signals, Entities, and Insights

+ Shield on a cloud icon

Records, Signals, Entities, and Insights

Learn about Insight generation, working with Entities, and how to query Cloud SIEM Records.

- Shield on a cloud icon

Ingestion

+ Shield on a cloud icon

Ingestion

Learn how to configure ingestion for supported products and services.

- Shield on a cloud icon

Rules

+ Shield on a cloud icon

Rules

Learn how to write rules, rules syntax, and Cloud SIEM built-in rules.

- Shield on a cloud icon

Schema

+ Shield on a cloud icon

Schema

Learn about Cloud SIEM Schema v3, schema attributes, and the Record processing pipeline.

- Shield on a cloud icon

Sensors

+ Shield on a cloud icon

Sensors

Cloud SIEM Sensors collect log and event data from your infrastructure and applications.

- Shield on a cloud icon

Integrations

+ Shield on a cloud icon

Integrations

Cloud SIEM integration with Sumo Logic and threat intel sources, and leveraging the Cloud SIEM Insight Enrichment Server.

- Shield on a cloud icon

Match Lists and Suppressed Lists

+ Shield on a cloud icon

Match Lists and Suppressed Lists

Learn about creating a Match list and their usage in rules.

- Shield on a cloud icon

Automation

+ Shield on a cloud icon

Automation

Learn how to configure automations to create notifications and enrichments in Cloud SIEM.

- Shield on a cloud icon

Administration

+ Shield on a cloud icon

Administration

Learn how to set up user accounts and roles, Actions, Network Blocks, custom Insight status and sub-resolutions, and more.

diff --git a/docs/cse/ingestion/index.md b/docs/cse/ingestion/index.md index 67dbfe243d..13caad49ce 100644 --- a/docs/cse/ingestion/index.md +++ b/docs/cse/ingestion/index.md @@ -14,31 +14,31 @@ In this section, we'll introduce the following concepts:
- Database icon

Best Practices

+ Database icon

Best Practices

Learn how to send Sumo Logic Source or Cloud-to-Cloud Connector log messages to Cloud SIEM to be transformed into Records.

- Database icon

Products with Log Mappings

+ Database icon

Products with Log Mappings

See the product and services that Cloud SIEM supports with log mappings and parsers.

- Database icon

Viewing Log Mappers

+ Database icon

Viewing Log Mappers

Learn how to find what mappers Cloud SIEM provides for a product or service.

- Shield on a cloud icon

Sumo Logic Cloud SIEM Ingest Mapping

+ Shield on a cloud icon

Sumo Logic Cloud SIEM Ingest Mapping

Configure Sumo Logic to send log messages to be processed by Cloud SIEM's system mapper.

- Shield on a cloud icon

Ingestion Sources for Cloud SIEM

+ Shield on a cloud icon

Ingestion Sources for Cloud SIEM

Learn the sources available for ingesting data to Cloud SIEM.

diff --git a/docs/cse/schema/index.md b/docs/cse/schema/index.md index fc70a27384..95cffe764b 100644 --- a/docs/cse/schema/index.md +++ b/docs/cse/schema/index.md @@ -11,62 +11,68 @@ This guide has information about Cloud SIEM schemas. In this section, we'll intr
- Flow diagram icon

Record Processing Pipeline

+ Flow diagram icon

Record Processing Pipeline

Learn how Cloud SIEM transforms incoming raw messages into records.

- Flow diagram icon

Cloud SIEM Schema Attributes

+ Flow diagram icon

Cloud SIEM Schema Attributes

Learn about Cloud SIEM schema attributes.

- Flow diagram icon

Mappable Attributes

+ Flow diagram icon

Mappable Attributes

Learn what Cloud SIEM schema attributes you can map to records.

- Flow diagram icon

Record Types

+ Flow diagram icon

Record Types

Learn about the record types to which you can map schema attributes.

- Flow diagram icon

Parsing Language Reference

+ Flow diagram icon

Parsing Language Reference

Parsing is the first step in the Cloud SIEM record processing pipeline.

- Flow diagram icon

Log Mapping

+ Flow diagram icon

Log Mapping

Learn how to create a log mapping for structured messages.

- Flow diagram icon

Normalized Classification

+ Flow diagram icon

Normalized Classification

Set up schema fields with an enforced, Cloud SIEM-defined output.

- Flow diagram icon

Field Mappings

+ Flow diagram icon

Field Mappings

Set up field mappings for messages that you want to be processed by Cloud SIEM's normalized threat rules.

- Flow diagram icon

Parser Editor

+ Flow diagram icon

Parser Editor

Learn how to use the Parser Editor to configure and test a custom parser.

- Flow diagram icon

Username and Hostname Normalization

+ Flow diagram icon

Username and Hostname Normalization

Learn how to import YARA rules from GitHub into Cloud SIEM.

+
+
+ Flow diagram icon

Parser Troubleshooting

+

Learn how to troubleshoot problems with parsers.

+
+
diff --git a/docs/cse/troubleshoot/index.md b/docs/cse/troubleshoot/index.md index 4f7b92e7c7..1989a642ef 100644 --- a/docs/cse/troubleshoot/index.md +++ b/docs/cse/troubleshoot/index.md @@ -11,13 +11,13 @@ This section contains articles to help you troubleshoot problems with Cloud SIEM
- Troubleshoot icon

Troubleshoot Parsers

+ Troubleshoot icon

Troubleshoot Parsers

Learn how to troubleshoot problems with log parsers.

- Troubleshoot icon

Troubleshoot Mappers

+ Troubleshoot icon

Troubleshoot Mappers

Learn how to troubleshoot problems with log mappers.

diff --git a/docs/get-started/index.md b/docs/get-started/index.md index 074a386150..118afcd84d 100644 --- a/docs/get-started/index.md +++ b/docs/get-started/index.md @@ -19,55 +19,55 @@ Let's get started!
- icon

Sign up

+ icon

Sign up

Sign up for a free trial and activate your account.

- icon

Sumo Quickstart

+ icon

Sumo Quickstart

Get up and running quickly with Sumo Logic.

- icon

Sumo Overview

+ icon

Sumo Overview

Before diving in, check out our Sumo Logic overview and micro lessons.

- icon

Onboarding Tasks

+ icon

Onboarding Tasks

Must-do onboarding tasks for users and admins.

- icon

Account Preferences

-

Account settings and credentials.

+ icon

Account Preferences

+

Account settings, access keys, and credentials.

- icon

System Req.

+ icon

System Req.

Supported browsers and other requirements.

- icon

App Installation

+ icon

App Installation

How to install Sumo Logic apps and integrations.

- iconicon

Training

+ iconicon

Training

Sumo Logic Training and Certification offerings.

- icon

Help

+ icon

Help

Get help from Sumo Docs, Support, and more.

diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 86bb9d93aa..2c3d3a15b3 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -9,34 +9,72 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; Stay up to date with the latest Sumo Logic enhancements, features, and fixes. Explore the individual release notes pages to see what's new, and consider subscribing to the RSS feeds for automatic updates.
-
-
- icon

Service
RSS Feed

-

Latest features and bug fixes for our apps, alerts, security, search, observability, data collectors, and more.

+
+
+ + Service Icon +

Service

+
+ + RSS Feed + +

Latest features and bug fixes for our apps, alerts, security, search, observability, data collectors, and more.

+
-
-
-
- icon

Cloud SIEM
RSS Feed

-

Information about new and enhanced features, updated content (like rules, log mappers and parsers), bug fixes, and other important announcements for Cloud SIEM.

+ +
+
+ + Cloud SIEM Icon +

Cloud SIEM

+
+ + RSS Feed + +

New and enhanced features, updated content (like rules, log mappers, and parsers), bug fixes, and other important announcements for Cloud SIEM.

+
-
-
-
- icon

Cloud SOAR
RSS Feed

-

The latest news about CSOAR, like new features, bug fixes, changes to the application, and other important announcements for Cloud SOAR.

+ +
+
+ + Cloud SOAR Icon +

Cloud SOAR

+
+ + RSS Feed + +

The latest news about Cloud SOAR, including new features, bug fixes, and other important announcements.

+
-
-
-
- icon

Collector
RSS Feed

-

Latest features and bug fixes for Installed Collectors. To access new features, upgrade using Static URLs, Sumo Logic, Command Line, or Collector Management API.

+ +
+
+ + Collector Icon +

Collector

+
+ + RSS Feed + +

Latest features and bug fixes for Installed Collectors. To access new features, upgrade using + Static URLs, + Sumo Logic, + Command Line, or + Collector Management API.

+
-
-
-
- icon

Developer
RSS Feed

-

New features and changes to our APIs, Collector management, and Live Tail CLI.

+ +
+
+ + Developer Icon +

Developer

+
+ + RSS Feed + +

New features and changes to our APIs, Collector management, and Live Tail CLI.

+
-
diff --git a/docs/security/additional-security-features/cloud-infrastructure-security/index.md b/docs/security/additional-security-features/cloud-infrastructure-security/index.md index fae02cefb5..5eab5c8e93 100644 --- a/docs/security/additional-security-features/cloud-infrastructure-security/index.md +++ b/docs/security/additional-security-features/cloud-infrastructure-security/index.md @@ -5,21 +5,21 @@ title: Cloud Infrastructure Security import useBaseUrl from '@docusaurus/useBaseUrl'; -Cloud Infrastructure Security apps provide enhanced insight into threat activity via a unified security and compliance audit view of your cloud infrastructure. +Cloud Infrastructure Security apps provide enhanced insight into threat activity via a unified security and compliance audit view of your cloud infrastructure. This section contains the following topics:
- Shield icon

Introduction to Cloud Infrastructure Security

+ Shield icon

Introduction to Cloud Infrastructure Security

Learn basic concepts about Cloud Infrastructure Security.

- AWS icon

Cloud Infrastructure Security for AWS

+ AWS icon

Cloud Infrastructure Security for AWS

Learn about our Cloud Infrastructure Security for AWS app.

-
\ No newline at end of file +
diff --git a/docs/security/additional-security-features/index.md b/docs/security/additional-security-features/index.md index 75a56647bb..99ec84356a 100644 --- a/docs/security/additional-security-features/index.md +++ b/docs/security/additional-security-features/index.md @@ -12,38 +12,38 @@ This section contains the following topics:
- Shield icon

Introduction to Logs for Security

+ Shield icon

Introduction to Logs for Security

Get an introduction to basic concepts of using Sumo Logic for security use cases.

- Shield icon

Threat Detection and Investigation

+ Shield icon

Threat Detection and Investigation

Learn how to monitor security data and investigate incidents.

- Shield icon

Security Data Lake

+ Shield icon

Security Data Lake

Learn about using your Sumo Logic environment as a security data lake.

- Shield icon

Audit and Compliance

+ Shield icon

Audit and Compliance

Learn how to use Sumo Logic apps to assist with audit and compliance.

- Shield icon

Application Security

+ Shield icon

Application Security

Learn about using Sumo Logic for application security.

- Shield icon

Cloud Infrastructure Security

+ Shield icon

Cloud Infrastructure Security

Learn how to secure your cloud infrastructure.

-
\ No newline at end of file +
diff --git a/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md b/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md index 889d106012..ec5297b8e7 100644 --- a/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md +++ b/docs/send-data/opentelemetry-collector/remote-management/source-templates/index.md @@ -13,62 +13,62 @@ In this section, we'll show you how to set up source templates for the following
- OTel thumbnail icon

Managing Source Templates

Learn how to create and modify OTel remote management source templates.

+ OTel thumbnail icon

Managing Source Templates

Learn how to create and modify OTel remote management source templates.

- Thumbnail icon

Apache

Learn how to configure our OTel Apache source template.

+ Thumbnail icon

Apache

Learn how to configure our OTel Apache source template.

- Thumbnail icon

Docker

Learn how to configure our OTel Docker source template.

+ Thumbnail icon

Docker

Learn how to configure our OTel Docker source template.

- icon

Kafka

Learn how to configure our OTel Kafka source template.

+ icon

Kafka

Learn how to configure our OTel Kafka source template.

- Thumbnail icon

Linux

Learn how to configure our OTel Linux source template.

+ Thumbnail icon

Linux

Learn how to configure our OTel Linux source template.

- OTel thumbnail icon

Local File

Learn how to configure our OTel Local File source template.

+ OTel thumbnail icon

Local File

Learn how to configure our OTel Local File source template.

- Thumbnail icon

Mac

Learn how to configure our OTel Mac source template.

+ Thumbnail icon

Mac

Learn how to configure our OTel Mac source template.

- Thumbnail icon

Nginx

Learn how to configure our OTel Nginx source template.

+ Thumbnail icon

Nginx

Learn how to configure our OTel Nginx source template.

- Thumbnail icon

RabbitMQ

Learn how to configure our OTel RabbitMQ source template.

+ Thumbnail icon

RabbitMQ

Learn how to configure our OTel RabbitMQ source template.

- Thumbnail icon

Redis

Learn how to configure our OTel Redis source template.

+ Thumbnail icon

Redis

Learn how to configure our OTel Redis source template.

- OTel thumbnail icon

Syslog

Learn how to configure our OTel Syslog source template.

+ OTel thumbnail icon

Syslog

Learn how to configure our OTel Syslog source template.

- Thumbnail icon

Windows

Learn how to configure our OTel Windows source template.

+ Thumbnail icon

Windows

Learn how to configure our OTel Windows source template.

diff --git a/docs/send-data/reference-information/index.md b/docs/send-data/reference-information/index.md index 23d6b14f5f..db170a4d87 100644 --- a/docs/send-data/reference-information/index.md +++ b/docs/send-data/reference-information/index.md @@ -13,31 +13,31 @@ In this section, we'll introduce the following concepts:
- icon

Using Wildcards in Paths

+ icon

Using Wildcards in Paths

Use wildcards in the Source path to collect all files of a certain type.

- icon

Collecting Multiline Logs

+ icon

Collecting Multiline Logs

Detect log boundaries automatically or with a regular expression.

- icon

Metadata Naming Conventions

+ icon

Metadata Naming Conventions

Establish naming conventions for your deployment's sources, collectors, and metadata.

- icon

Source Log Encoding

+ icon

Source Log Encoding

The log encoding supported by Sumo Logic depends on the Source that you use.

diff --git a/src/css/sumo.scss b/src/css/sumo.scss index 3da9d35f0d..5988838e48 100644 --- a/src/css/sumo.scss +++ b/src/css/sumo.scss @@ -746,7 +746,7 @@ html[data-theme='light'] .alert--secondary { } // SUMO -html[data-theme='dark'] .admonition--sumo { +html[data-theme='dark'] .theme-admonition-sumo { background-color: rgba(0, 0, 153, 0.1); --ifm-alert-border-color: #000099; border-left: 6px solid #000099; @@ -766,7 +766,7 @@ html[data-theme='dark'] .admonition--sumo { } } -html[data-theme='light'] .admonition--sumo { +html[data-theme='light'] .theme-admonition-sumo { background-color: rgba(0, 0, 153, 0.05); color: #000046; --ifm-alert-color: #000099; From 04d9622d1443f63e1e4581d179ca58490445563d Mon Sep 17 00:00:00 2001 From: Kim Pohas Date: Thu, 20 Feb 2025 15:35:40 -0800 Subject: [PATCH 24/25] Update widget token (valid until March 2026) --- src/components/Berry/index.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Berry/index.tsx b/src/components/Berry/index.tsx index 01c40033dd..a09104d5f5 100644 --- a/src/components/Berry/index.tsx +++ b/src/components/Berry/index.tsx @@ -17,7 +17,7 @@ export default function Berry({ mode }: BerryProps) { if (!window.Berry) { return; } - + window.Berry.update({ colorMode: newColorMode, }) @@ -48,17 +48,17 @@ function loadBerry(mode: BerryMode) { script.src = 'https://www.berryapp.io/js/berry-widget.min.js'; script.async = true; document.head.appendChild(script); - + script.onload = () => { initBerry(mode); } - + script.onerror = () => console.error('Failed to load Berry widget script'); } else { initBerry(mode); } } - + function initBerry(mode: BerryMode) { if (!window.Berry) { console.error("Berry not defined"); @@ -70,7 +70,7 @@ function initBerry(mode: BerryMode) { ...(mode === 'inline' ? inlineConfig : popupConfig), colorMode: colorMode, }; - + window.Berry.init(config); }; @@ -82,10 +82,10 @@ function initBerry(mode: BerryMode) { return 'light'; } } - + const commonConfig = { - token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MjU5NDg5MTcsImV4cCI6MTc0MTYwODkxNywiYXVkIjoiV2lkZ2V0SW5pdGlhbGl6YXRpb24iLCJvcmdhbml6YXRpb25JZCI6NjN9.oJEGkGq1q3uFD66J916f_ZBrqQjPHP9orUOKFxInG38', + token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MjU5NDg5MTcsImV4cCI6MTc3MzE0NDAwMCwiYXVkIjoiV2lkZ2V0SW5pdGlhbGl6YXRpb24iLCJvcmdhbml6YXRpb25JZCI6NjN9.vuE19Wp0nWR0y1l6agTlUjHYqP778J_atl4aUuLW9jM', primaryColor: '#021b9a', botUrlPath: 'nova', showNewChat: true, From 4bbcd21895b51062aa0a571ab7b6efecd3f259cb Mon Sep 17 00:00:00 2001 From: Viktor Nagy Date: Sat, 22 Feb 2025 01:25:58 +0100 Subject: [PATCH 25/25] allow the inline widget to expand wider (#5100) --- src/pages/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ba01ec6802..5e8f12b5a7 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -89,9 +89,11 @@ export const Home = () => { ))} + + {/* Inline Chatbot Container */} - + {/* The chatbot will render here */}