Setting a Dynamic Configuration Value

Important

Changing Dynamic Config settings will instantly change the configuration setting and alter the operation of your LogScale instance. Contact Support if you need advice on these settings.

To set a Dynamic Config value, use the setDynamicConfig() mutation:

Show:
graphql
mutation {
  setDynamicConfig(input: 
    { config: NAME_OF_CONFIG, 
      value: "VALUE_FOR_CONFIG" 
    }
  )
}
Example Responses
Show:
json
{
   "data" : {
      "setDynamicConfig" : true
   }
}