startLogCollectorConfigurationTest()

API Stability Short-Term

The startLogCollectorConfigurationTest() GraphQL mutation may be used to remove a configuration test from a Log Collector.

Syntax

Below is the syntax for the startLogCollectorConfigurationTest() mutation field:

graphql
startLogCollectorConfigurationTest(
      configId: string!,
      collectorIds: [string!]!
   ): FleetConfigurationTest!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  startLogCollectorConfigurationTest( 
      configId: "123abc",
      collectorIds: ["def123", "ghi456" ]
  )
  { configId }
}
Example Responses
Show:
json
{
  "data": {
    "startLogCollectorConfigurationTest": {
      "configId": "123abc",
      }
    }
  }
}

Returned Datatypes

FleetConfigurationTest has a couple of parameters. Below is a list of them:

Table: FleetConfigurationTest

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 25, 2024
configIdstringyes Short-TermThe configuration identifier.
collectorIds[string]yes Short-TermThe Log Collector unique identifiers.