Skip to main content

Netskope WebTx Source

thumbnail icon

The Netskope WebTx API integration ingests Web Transaction logs from Netskope Event Stream.

note

This source is not available in the Fed deployment.

Data collected

Polling IntervalData
5 minWeb Transaction logs

The netskope-webtx access a PubSub lite service hosted by Google to retrieve web transaction logs using the v2 dataexport Iterator Endpoint. Details on what is ingested can be found here.

Setup

Vendor configuration

Netskope Web Transactions integration needs to be configured using Netskope Streaming credentials. You can collect the subscription path and credentials here.

  1. You will need a subscription endpoint URL and subscription key to access the streamed events. Log in to your Netskope UI and go to Settings > Tools > Event Streaming. Copy your subscription endpoint and generate your download key from the Event Streaming page.
    info
    • The REGENERATE ENDPOINT button generates a new subscription path. After a new subscription path is generated, a new subscription key must be generated by clicking on the GENERATE AND DOWNLOAD KEY button.
    • The old subscription path and key expire. With a new subscription path, event streaming will start fresh from the beginning of the retention period which is 7 days by default.
  2. After the transaction events feature is enabled in your account, you’ll be able to consume the data from the subscription endpoint.
  3. To receive the events from the subscription, refer to the Receiving messages from Lite subscriptions link. You can receive messages with various Client libraries. Netskope retains transaction events for seven days by default if not consumed.
  4. When you are finished configuring the file, download the JSON file.

Source configuration

When you create a Netskope WebTx API 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.

  1. In Sumo Logic, select Manage Data > Collection > Collection.
  2. On the Collection page, click Add Source next to a Hosted** **Collector.
  3. Search for and select Netskope WebTx API.
  4. Enter a Name to display the Source in the Sumo 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. Forward to SIEM. Check the checkbox to forward your data to Cloud SIEM.
  7. (Optional) Fields. Click the +Add Field link 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 that does not exist in the Fields schema it is ignored, known as dropped. 
  8. Netskope Streaming Credentials. Upload the JSON file downloaded from google cloud platform.
  9. When you are finished configuring the Source, click Save.

Metadata fields

FieldValueDescription
_siemVendorNetskopeSet when Forward To SIEM is checked.
_siemProductWebTxSet when Forward To SIEM is checked.
_siemFormatJSONSet when Forward To SIEM is checked.
_siemEventIDwebtxSet 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 more details.

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"Netskope WebTx API"}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"}
credentialsJsonStringYesnullIts the authentication credentials to access Netskope webtx Event Streaming service.
subscriptionPathStringYesnullA subscription path is needed for the event streaming to start.

JSON example

{
"api.version":"v1",
"source":{
"state":{
"config":{
"name":"webtx-test",
"subscriptionPath":"projects/webtx-test",
"startFromBeginning":false,
"fields":{
"_siemForward":false
},
"category":"webtx",
"credentialsJson":"********"
},
"schemaRef":{
"type":"Netskope WebTx"
},
"sourceType":"Universal"
}
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "netskope-webtx-source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Netskope WebTx"
}
config = jsonencode({
"name":"webtx-test",
"subscriptionPath":"projects/webtx-test",
"startFromBeginning":false,
"fields":{
"_siemForward":false
},
"category":"webtx",
"credentialsJson":"********"
})
}
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.