Skip to content
Merged
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 @@ -5,7 +5,7 @@ sidebar_label: Code42 Incydr
tags:
- cloud-to-cloud
- code42-incydr
description: Learn how to collect alerts, file events, and audit logs from the Code42 Incydr.
description: Learn how to collect sessions, file events, and audit logs from the Code42 Incydr.
---
import CodeBlock from '@theme/CodeBlock';
import ExampleJSON from '/files/c2c/code42-incydr/example.json';
Expand All @@ -17,13 +17,15 @@ import useBaseUrl from '@docusaurus/useBaseUrl';

The Code42 Incydr is an insider risk management solution that allows you to detect and respond to data exposure and exfiltration from corporate computer, cloud, and email systems. It provides the visibility, context, and controls needed to protect data without overwhelming security teams or inhibiting employee productivity.

Code42 Incydr source is used to analyze and fetch file events, alerts and audit logs from the Code42 Incydr API and send it to Sumo Logic.
Code42 Incydr source is used to analyze and fetch sessions, file events, and audit logs using the [Code42 Incydr API](https://developer.code42.com/api) and send it to Sumo Logic.

## Data collected

| Polling Interval | Data |
| :--- | :--- |
| 5 min | [Alerts, File Events, and Audit Logs (Audit Events)](https://developer.code42.com/api) |
| 5 minutes | [Sessions](https://developer.code42.com/api/#tag/Alerts-and-Sessions/operation/SearchSessions) |
| 5 minutes | [File Events](https://developer.code42.com/api/#tag/File-Events/operation/searchEvents) |
| 5 minutes | [Audit Logs](https://developer.code42.com/api/#tag/Audit-Log/operation/searchAuditLog) |

## Setup

Expand Down
2 changes: 1 addition & 1 deletion static/files/c2c/code42-incydr/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"secretKey": "XXXXV%DsznXXX!hxr479cXsxxnbkX@vxxrxkbfxc",
"dataCollection": [
"auditEvents",
"alerts",
"sessions",
"fileEvents"
]
},
Expand Down
2 changes: 1 addition & 1 deletion static/files/c2c/code42-incydr/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "sumologic_cloud_to_cloud_source" "code42incydr_source" {
"secretKey": "XXXXV%DsznXXX!hxr479cXsxxnbkX@vxxrxkbfxc",
"dataCollection": [
"auditEvents",
"alerts",
"sessions",
"fileEvents"
]
})
Expand Down
Loading