API Stability Short-Term

The dynamicConfigs() GraphQL query will return all of the dynamic configurations. It requires root access.

For more information on configuring all aspects of LogScale, see the Configuration Settings reference section.

Syntax

Below is the syntax for the dynamicConfigs() query field:

graphql
dynamicConfigs: [DynamicConfigKeyValueType!]!

There's not much to this query field. It's easier to understand by looking a the example below, and the Given Datatypes that follows it.

Show:
graphql
query {
  dynamicConfigs {
    dynamicConfigKey,dynamicConfigValue
  }
}
Example Responses
Show:
json
query {
  "data": {
    "dynamicConfigs": [
      {
        "dynamicConfigKey": "BlockSignup",
        "dynamicConfigValue": "false"
      },
      {
        "dynamicConfigKey": "DisableUserTracking",
        "dynamicConfigValue": "false"
      },
      {
        "dynamicConfigKey": "DisableAnalyticsJob",
        "dynamicConfigValue": "false"
      },
      {
        "dynamicConfigKey": "MaxAccessTokenTTL",
        "dynamicConfigValue": "None"
      },
      ...
    ]
  }
}

Since the results are long, they've been shortened in the example above to save space.

Given Datatypes

For DynamicConfigKeyValueType, there are two parameters. They're listed here.

Table: DynamicConfigKeyValueType

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 24, 2024
dynamicConfigKeyDynamicConfigyes Short-TermThe dynamic configuration key. See DynamicConfig.
dynamicConfigValuestringyes Short-TermThe dynamic configuration value.