API Stability Short-Term

The enableLogCollectorInstanceDebugLogging() GraphQL mutation may be used to do SOMETHING.

Syntax

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

graphql
enableLogCollectorInstanceDebugLogging(
      id: string!, 
      url: string, 
      token: string!, 
      level: string!, 
      repositoryName: string
   ): boolean!

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

Show:
graphql
mutation {
  enableLogCollectorInstanceDebugLogging(
      id: "123abc"
      url: "https://lc.company.com", 
      token: "123abc456def789", 
      level: "high", 
      repositoryName: "humio"
   )
}
Example Responses
Show:
json
{
  "data": {
    "enableLogCollectorInstanceDebugLogging": true
  }
}