Splunk · Schema

MonitorInputUpdateRequest

AnalyticsData AnalysisLoggingMachine DataMonitoringObservabilityPlatformSecuritySIEM

Properties

Name Type Description
index string Destination index
sourcetype string Source type to assign
source string Source value to assign
host string Host value to assign
disabled boolean Whether to disable the input
View JSON Schema on GitHub

JSON Schema

splunk-monitorinputupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitorInputUpdateRequest",
  "title": "MonitorInputUpdateRequest",
  "type": "object",
  "properties": {
    "index": {
      "type": "string",
      "description": "Destination index",
      "example": "example_value"
    },
    "sourcetype": {
      "type": "string",
      "description": "Source type to assign",
      "example": "example_value"
    },
    "source": {
      "type": "string",
      "description": "Source value to assign",
      "example": "example_value"
    },
    "host": {
      "type": "string",
      "description": "Host value to assign",
      "example": "example_value"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether to disable the input",
      "example": true
    }
  }
}