Skip to main content

Druva Cyber Resilience Source

thumbnail icon

The Druva Data Resiliency Cloud provides unified, easy-to-manage data protection for all workloads. Druva’s cyber resilience solutions keep backup data safe, help to prepare for cyber attacks, and automate the process of recovering data.

The Druva Cyber Resilience source provides the ability to fetch realize events generated within the Druva Realize product using the Druva Realize Events API and sends it to Sumo Logic. Realize events API helps you to collect unusual data activity events, access events, and login events generated in Druva Cyber Resilience product.

note

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

Data collected

Polling IntervalData
5 minDruva Realize Events

Setup

Vendor configuration

In this configuration, you will collect the Base URL from the Druva platform to authorize and authenticate the realize events using Druva Realize Events API. Follow the below steps to get the Base URL for user configuration.

  1. Sign in to the Druva console.
  2. Go to the Administration menu and click Druva Cloud Settings option.
    druva-console
  3. Select the API Credentials option.
  4. In the API Credentials page, copy and save the API Endpoint URL.
    druva-cloud-settings

Source configuration

When you create a Druva Cyber Resilience 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 Cyber Resilience Source:

  1. In Sumo Logic, select Manage Data > Collection > Collection
  2. On the Collectors page, click Add Source next to a Hosted Collector.
  3. Select Druva Cyber Resilience 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 the API Endpoint URL collected from the Druva Cyber Resilience platform.
  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 field

FieldValueDescription
_siemParser/Parsers/System/Druva/Druva Cyber ResilienceSet when Forward To SIEM is checked.

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 Cyber Resilience"}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 an API client.
secretKeyStringYesnullSecret key of an API client.

JSON example

{
"api.version": "v1",
"source": {
"config":{
"name": "Druva Cyber Resilience",
"description": "Collect Realize Events from Druva Cyber Resilience Product",
"category": "druva-cyber-resilience",
"baseURL": "https://apis.druva.com",
"clientID": "testclientid",
"secretKey": "*********"
},
"schemaRef": {
"type": "Druva Cyber Resilience"
},
"sourceType": "Universal"
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "druva_cyber_resilience_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Druva Cyber Resilience"
}
config = jsonencode({
"name": "Druva Cyber Resilience",
"description": "Collect Realize Events from Druva Cyber Resilience Product",
"category": "druva-cyber-resilience",
"baseURL": "https://apis.druva.com",
"clientID": "testclientid",
"secretKey": "*********"
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}

Download example

Troubleshooting

This section provides information on how to troubleshoot failures while configuring our Druva Cyber Resilience source.

400 error

Error Message

{
"error": "invalid_grant. (#10010003b)"
}

Solution

If the source is configured with either an invalid Base URL, Client ID, or Secret Key the API will return a 400 error code. To rectify this error, validate and enter the correct Base URL, Client ID, and Secret Key.

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.