Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,27 +63,7 @@ You can optionally add extensions, such as new attributes, objects, categories,

The following Log Management integrations support out-of-the-box OCSF pipelines:

- 1Password
- Auth0
- AWS CloudTrail
- Cisco Duo
- Cisco Meraki
- Cloudflare
- CrowdStrike
- GitHub Telemetry
- Google BigQuery
- Google Cloud
- Google GKE cluster audit logs
- Google Pub Sub
- Google GSuite
- JumpCloud
- Kubernetes audit logs
- LastPass
- Microsoft 365
- Okta
- Salesforce
- Slack
- Snowflake Web Logs
{{% cloud-siem-supported-ocsf %}}

## View Security Pipelines \- OCSF

Expand Down
24 changes: 24 additions & 0 deletions layouts/shortcodes/cloud-siem-supported-ocsf.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{{/*
Displays the integrations that include support for OCSF pipelines ootb.
*/}}

{{ $data := $.Site.Data.cloud_siem_content_packs }}

{{ $s := newScratch }}
{{ $s.Set "sorted_data" slice }}

{{- if ne $data nil -}}
{{- range $category, $content_packs := $data -}}
{{- range $content_packs -}}
{{- if .ocsf_pipelines -}}
{{ $s.Add "sorted_data" .name }}
{{- end -}}
{{- end -}}
{{- end -}}

<ul>
{{- range sort ($s.Get "sorted_data") -}}
<li>{{ . }}</li>
{{- end -}}
</ul>
{{- end -}}
Loading