Skip to main content

SIEM Integration

SIEM (Security Information and Event Management) integration allows you to export Deeployd security events to external security tools for centralized monitoring and analysis.

Overview

SIEM integration provides:

  • Real-time event streaming
  • Centralized security monitoring
  • Correlation with other security data
  • Compliance reporting

Access Requirements

SIEM integration is available on Enterprise plans only.

Access via Security Center

SIEM configuration is managed through the Security Center:

  1. Navigate to Security in the top bar
  2. Click on the SIEM tab
  3. Configure SIEM destinations

Supported SIEM Platforms

  • Splunk
  • Datadog
  • Elastic Security
  • Microsoft Sentinel
  • AWS Security Hub
  • Custom HTTP endpoints

Configuration

Via Dashboard

  1. Go to Security Center > SIEM
  2. Click Add Destination
  3. Select your SIEM platform
  4. Configure connection settings
  5. Select events to export
  6. Test the connection
  7. Enable streaming

Via API

const destination = await client.siem.createDestination({
name: 'Splunk Production',
type: 'splunk',
config: {
endpoint: 'https://splunk.company.com:8088',
token: 'your-hec-token',
index: 'deeployd-security'
},
events: ['auth.*', 'admin.*', 'agent.sensitive_action']
});

Event Types

Event CategoryEvents
Authenticationauth.login, auth.logout, auth.failed, auth.mfa_required
User Managementuser.created, user.updated, user.deleted, user.role_changed
Agent Operationsagent.created, agent.deleted, agent.sensitive_action
Admin Actionsadmin.*, settings.changed, permission.granted
Security Eventsincident.*, approval.*, session.terminated

Event Format

Events are sent in JSON format:

{
"event_type": "auth.login",
"timestamp": "2024-01-15T10:30:00Z",
"actor": {
"user_id": "user-123",
"email": "user@company.com"
},
"details": {
"ip_address": "192.168.1.1",
"user_agent": "Mozilla/5.0...",
"method": "password"
},
"tenant_id": "tenant-abc",
"severity": "info"
}

Feature Availability

FeatureEnterprise
SIEM Destinations5
Real-time StreamingYes
Custom Event FiltersYes
Batch ExportYes

Related: Security Center | Audit Logs