State

You most likely don’t want to call or change this state directly, but instead change the Chain-object on Store.

{
  "State": {
    "Meta" : {Program wide settings, currently only log verbosity.},
    "Chains" : {
      "chain_id_0" : {chain_object_0},
      "chain_id_1" : {chain_object_1},
      ... more or fewer chains ...
      }
  }
}
JSON

Meta

The meta object contains global CTS settings. CTS status reports are sent regardless of these settings.

{
  "Meta":
    {
      "FileLogVerbostiy" : "debug"/"log"/"warning"/"error",
      "DirectorLogVerbosity" : one of the alternatives above
    }
}
JSON