Skip to main content

Druva Source

thumbnail icon

The Druva source provides the ability to analyze and fetch event logs from the Druva inSync API and sends it to Sumo Logic. The Druva inSync backs up endpoint data and cloud applications, such as Microsoft Office 365 and Salesforce. It also provides archiving, data compliance monitoring, legal hold management, monitoring, and detection tools to discover ransomware and eDiscovery.

This integration accesses the Druva inSync API to retrieve audit events. API documents can be found here.

note

This source is available in all deployments, including the Fed deployment.

Data collected

Polling IntervalData
5 minData Governance Cloud
5 minData Governance GovCloud

Setup

Vendor configuration

In this configuration, you will set up the Druva account and configure it to be authorized and authenticated to use event logs from Druva inSync API. To enable export events and to obtain auth token, follow the directions below within your Druva environment.

Configure Druva inSync to export events

note

You must be a Druva inSync Cloud administrator to enable the option to export events and define the Events API settings.

To get the event logs, follow the steps to enable the Export Events:

  1. Sign in to the Druva inSync Management Console with inSync Cloud account or inSync GovCloud account.
  2. On the inSync Management Console menu bar, click druva-wheel-icon.png icon > Settings. The Settings page appears.
  3. Click the inSync APIs tab.
  4. In the Events API settings area, click Edit. The Edit Events API Settings window appears.
    druva-events-api-settings.png
  5. Select the Export Events checkbox.
  6. Click in the Categories to export box and select the events that you want to export from inSync.
  7. In the Syslog facility field, type a value between 1 and 23 to assign a Syslog facility ID for inSync events. The default value is 23.
  8. Click Save.

Authentication

Druva supports OAuth 2.0-based authentication for incoming requests. Every use of Druva APIs requires authentication to ensure that only authorized users can interact with Druva APIs.

All requests to Druva APIs are authenticated using OAuth 2.0 access tokens which you receive in exchange of every authorization grant request you make. The OAuth token will expire after 30 minutes for Data Governance Cloud and 15 minutes for Data Governance GovCloud.

The Druva Source requires you to provide a Client ID, Client Secret Key, API Endpoint URL. To get these, follow the instructions from Create and Manage Druva API Credentials.

Source configuration

When you create a Druva Source, you add it to a Hosted Collector. Before creating the Source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see Configure a Hosted Collector.

To configure a Druva Source:

  1. In Sumo Logic, select Manage Data > Collection > Collection
  2. On the Collectors page, click Add Source next to a Hosted Collector.
  3. Search for and select Druva icon.
  4. Enter a Name to display for the Source in the Sumo Logic web application. The description is optional.
  5. (Optional) For Source Category, enter any string to tag the output collected from the Source. Category metadata is stored in a searchable field called _sourceCategory.
  6. (Optional) Fields. Click the +Add to define the fields you want to associate. Each field needs a name (key) and value.
    • green check circle.png A green circle with a check mark is shown when the field exists in the Fields table schema.
    • orange exclamation point.png An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema it is ignored, known as dropped.
  7. API Endpoint URL. Enter your API Endpoint URL. To get API Endpoint URL, follow the instructions from Create and Manage Druva API Credentials.
  8. Client ID. Enter your Client ID. To get Client ID, follow the instructions from Create and Manage Druva API Credentials.
  9. Secret Key. Enter your Secret Key. To get Secret Key, follow the instructions from Create and Manage Druva API Credentials.
  10. When you are finished configuring the Source, click Save.

Metadata Fields

If the Source is configured with the SIEM forward option, then the metadata field _siemparser will be set to /Parsers/System/Druva/Druva inSync Cloud.

JSON schema

Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See How to use JSON to configure Sources for details.

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"Druva"}YesDefine the specific schema type.
sourceTypeString"Universal"YesType of source.
configJSON ObjectConfiguration objectYesSource type specific values.

Configuration Object

ParameterTypeRequiredDefaultDescriptionExample
nameStringYesnullType a desired name of the source. The name must be unique per Collector. This value is assigned to the metadata field _source."mySource"
descriptionStringNonullType a description of the source."Testing source"
categoryStringNonullType a category of the source. This value is assigned to the metadata field _sourceCategory. See best practices for details."mySource/test"
fieldsJSON ObjectNonullJSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field _siemForward to enable forwarding to SIEM.{"_siemForward": false, "fieldA": "valueA"}
baseURLStringYesnullThe base URL from which the customer wants to retrieve event data.
clientIDStringYesnullClient ID key of an application.
secretKeyStringYesnullSecret key of an application

JSON example

{
"api.version": "v1",
"source": {
"config": {
"name": "Druva",
"description": "test_description",
"category": "source_category",
"baseURL": "https://apis.druva.com",
"clientID": "testclientid",
"secretKey": "*********",
"fields":{
"_siemForward":false
}
},
"schemaRef": {
"type": "Druva"
},
"sourceType": "Universal"
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "druva_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Druva"
}
config = jsonencode({
"name": "Druva",
"description": "test_description",
"category": "source_category",
"baseURL": "https://apis.druva.com",
"clientID": "testclientid",
"secretKey": "*********",
"fields":{
"_siemForward":false
}
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}

Download example

FAQ

info

Click here for more information about Cloud-to-Cloud sources.

Status
Legal
Privacy Statement
Terms of Use

Copyright © 2024 by Sumo Logic, Inc.