Skip to main content

Automox Source

automox-logo

Automox is a cloud-based platform for automated IT operations, offering patching, software deployment, and configuration management across Windows, macOS, and Linux devices. It enhances security by automating vulnerability remediation and ensuring systems stay up-to-date.

Data collected​

Polling IntervalData
5 minEvents Details
12 hoursList Devices
5 minAudit Details

Setup​

Vendor configuration​

The Automox source requires you to provide the Bearer Token and Organization ID. Follow the below steps to generate the required values:

Source configuration​

When you create a Automox 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 Create a Hosted Collector.

To configure a Automox Source:

  1. Classic UI. In the main Sumo Logic menu, select Manage Data > Collection > Collection.
    New UI. In the Sumo Logic top menu select Configuration, and then under Data Collection select Collection. You can also click the Go To... menu at the top of the screen and select Collection.
  2. On the Collectors page, click Add Source next to a Hosted Collector.
  3. Search for and select Automox.
  4. Enter a Name for the Source. 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 link to add custom log metadata Fields.
    • 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 and is enabled in the Fields table schema.
      • orange exclamation point.png An orange triangle with an exclamation point is shown when the field doesn't exist, or is disabled, in the Fields table schema. In this case, an option to automatically add or enable 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 or is disabled it is ignored, known as dropped.
  7. In Bearer Token, enter the bearer token collected from the Automox platform.
  8. In Organization ID, enter the Organization ID collected from the Automox platform.
  9. Select the Colleect Audit Trail Logs checkbox to collect the audit details.
  10. The Audit Trail Logs Interval is set for 5 minutes by default. You can adjust it based on your needs.
  11. Select the Colleect Events Logs checkbox to collect the event details. Enter the supported events that you want to collect. Leaving this empty will collect all events.
  12. The Event Logs Interval is set for 5 minutes by default. You can adjust it based on your needs.
  13. Select the Colleect Devices checkbox to collect the devices list details.
  14. The Devices Logs Interval is set for 12 hours by default. You can adjust it based on your needs.
  15. Processing Rules. Configure any desired filters, such as allowlist, denylist, hash, or mask, as described in Create a Processing Rule.
  16. When you are finished configuring the Source, click Save.

JSON schema​

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

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"Automox"}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"}
bearerTokenStringYesnullThe bearer API token created for the account in the Automox console.
orgIdIntegerYesnullSpecify the organization's ID from which the data needs to be pulled.
collectAuditTrailLogsBooleanNoTrueSpecifies if we need to collect the audit trail logs.
collectEventLogsBooleanNoFalseSpecifies if we need to collect the event logs.
collectDevicesBooleanNoFalseSpecifies if we need to collect the data of the device.
eventNamesBooleanNOAllSpecify the event names for which the data should be pulled.
pollingIntervalAuditMinIntegerYes5 minutesTime interval (in minutes) after which the source will check for new data for API: Audit events.
pollingIntervalEventMinIntegerYes5 minutesTime interval (in minutes) after which the source will check for new data for API: Event API.
pollingIntervalDeviceHourIntegerYes12 hoursTime interval (in hours) after which the source will check for new data for API: List All Devices.

JSON example​

{
"api.version": "v1",
"source": {
"config": {
"name": "Automox",
"bearerToken": "wevewbkueybvilebvlibvgeu",
"orgId": 11478,
"collectAuditTrailLogs": true,
"collectDevices": true,
"collectEventLogs": true,
"pollingIntervalAuditMin": 5,
"pollingIntervalDeviceHour": 12,
"pollingIntervalEventMin": 5
},
"schemaRef": {
"type": "Automox"
},
"sourceType": "Universal"
}
}
Download example

Terraform example​

resource "sumologic_cloud_to_cloud_source" "automox_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Automox"
}
config = jsonencode({
"name": "Automox",
"bearerToken": "wevewbkueybvilebvlibvgeu",
"orgId": 11478,
"collectAuditTrailLogs": true,
"collectDevices": true,
"collectEventLogs": true,
"pollingIntervalAuditMin": 5,
"pollingIntervalDeviceHour": 12,
"pollingIntervalEventMin": 5
})
}
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.