Skip to content
This repository was archived by the owner on Dec 31, 2025. It is now read-only.

Commit ffa111f

Browse files
Merge pull request #189 from runreveal/docs-logs-pipelines-updates
Docs logs pipelines updates
2 parents a58bc97 + 57df4af commit ffa111f

26 files changed

Lines changed: 475 additions & 508 deletions

next

Whitespace-only changes.

next.config.mjs

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,61 @@ export default withYAML(withNextra({
3535
destination: '/detections/writing-detections',
3636
permanent: true,
3737
},
38+
{
39+
source: '/pipelines',
40+
destination: '/logs/log-processing/getting-started',
41+
permanent: true,
42+
},
43+
{
44+
source: '/pipelines/:path*',
45+
destination: '/logs/log-processing/getting-started',
46+
permanent: true,
47+
},
48+
{
49+
source: '/logs/pipelines',
50+
destination: '/logs/log-processing/getting-started',
51+
permanent: true,
52+
},
53+
{
54+
source: '/logs/pipelines/:path*',
55+
destination: '/logs/log-processing/getting-started',
56+
permanent: true,
57+
},
58+
{
59+
source: '/transforms',
60+
destination: '/logs/log-processing/transforms',
61+
permanent: true,
62+
},
63+
{
64+
source: '/logs/transforms',
65+
destination: '/logs/log-processing/transforms',
66+
permanent: true,
67+
},
68+
{
69+
source: '/custom-views',
70+
destination: '/logs/custom-views',
71+
permanent: true,
72+
},
73+
{
74+
source: '/filtering',
75+
destination: '/logs/log-processing/filtering',
76+
permanent: true,
77+
},
78+
{
79+
source: '/logs/filtering',
80+
destination: '/logs/log-processing/filtering',
81+
permanent: true,
82+
},
83+
{
84+
source: '/enrichments',
85+
destination: '/logs/log-processing/enrichments',
86+
permanent: true,
87+
},
88+
{
89+
source: '/enrichments/:path*',
90+
destination: '/logs/log-processing/enrichments/:path*',
91+
permanent: true,
92+
},
3893
]
3994
},
4095
}))

nextra-docs-template@0.0.1

Whitespace-only changes.

pages/_meta.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@ export default {
88
},
99
"how-to-guides": "How To Guides",
1010
"ai-chat": "AI Chat",
11-
"pipelines": "Pipelines",
11+
"logs": "Log Management",
1212
"sources": "Sources",
13-
"transforms": "Transforms",
14-
"custom-views": "Custom Views",
15-
"filtering": "Filtering",
1613
"detections": "Detections",
17-
"enrichments": "Enrichments",
1814
"notifications": "Notifications",
1915
"integrations": "Integrations",
2016
"dashboards": "Dashboards & Graphs",

pages/ai-chat/native-ai-chat.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Native AI Chat uses a structured approach to investigations:
283283
- Ask for explanations: "Why did this detection fire?"
284284
- Request recommendations: "What should I investigate next?"
285285

286-
## Helpful Resources
286+
## Related Documentation
287287

288288
Now that you've set up your chat settings, explore these related guides:
289289

pages/detections.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ This pattern is useful for detecting:
459459
3. Multiple signals for same user → Create alert (with notifications)
460460
4. Incident response team investigates → Take action based on alert context
461461

462-
## Helpful Resources
462+
## Related Documentation
463463

464464
Now that you understand how to write effective detections, explore these related guides:
465465

pages/detections/writing-detections.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ The AI will analyze your GitHub logs and suggest detections for high-priority MI
272272

273273
**Note:** The suggested detections may need some tweaking and can be tested on the detections creation page or explore tab, but they provide a solid starting point when you're looking to add coverage for specific sources and MITRE tactics.
274274

275-
## Helpful Resources
275+
## Related Documentation
276276

277277
Now that you understand how to write effective detections, explore these related guides:
278278

pages/how-to-guides/detections-signals-alerts-quick-start.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Now that you have detections, signals, and alerts set up, explore the detailed c
413413
- **[Sigma Streaming](/detections/sigma-streaming)** - Use Sigma rules for standardized threat detection
414414
- **[Detection as Code](/detections/detection-as-code)** - Manage detections through code and version control
415415
- **[Sources](/sources)** - Set up data collection from your systems
416-
- **[Pipelines](/pipelines)** - Configure data processing workflows
416+
- **[Pipelines](/logs/log-processing/getting-started)** - Configure data processing workflows
417417
- **[Notifications Getting Started](/notifications/getting-started)** - Set up alerting and notification channels
418418
- **[AI Chat](/ai-chat)** - Use AI-powered analysis for threat hunting and investigation
419-
- **[Enrichments](/enrichments)** - Add context and metadata to your security events
419+
- **[Enrichments](/logs/log-processing/enrichments)** - Add context and metadata to your security events

pages/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default function RunRevealIntroduction() {
114114
...colorPatterns[1] // Purple
115115
},
116116
{
117-
href: "/pipelines/getting-started",
117+
href: "/logs/pipelines/getting-started",
118118
icon: "/icons/rows.svg",
119119
title: "Pipelines",
120120
description: "Build and manage data processing pipelines.",
@@ -128,14 +128,14 @@ export default function RunRevealIntroduction() {
128128
...colorPatterns[3] // Yellow
129129
},
130130
{
131-
href: "/transforms",
131+
href: "/logs/log-processing/transforms",
132132
icon: "/icons/Edit.svg",
133133
title: "Transforms",
134134
description: "Normalize data for consistent queries and dashboards.",
135135
...colorPatterns[4] // Pink
136136
},
137137
{
138-
href: "/filtering",
138+
href: "/logs/log-processing/filtering",
139139
icon: "/icons/DataSort.svg",
140140
title: "Filtering",
141141
description: "Powerful querying and sampling for noisy streams.",
@@ -149,7 +149,7 @@ export default function RunRevealIntroduction() {
149149
...colorPatterns[0] // Blue (cycle back)
150150
},
151151
{
152-
href: "/enrichments",
152+
href: "/logs/log-processing/enrichments",
153153
icon: "/icons/stars.svg",
154154
title: "Enrichments",
155155
description: "Add context and metadata to every event.",

pages/logs/_meta.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
"search": "Explore Logs",
3+
"log-processing": "Log Processing",
4+
"custom-views": "Custom Views"
5+
}
6+

0 commit comments

Comments
 (0)