Skip to content

Describe Workspace Configuration

prometheusservice_describe_workspace_configuration R Documentation

Use this operation to return information about the configuration of a workspace

Description

Use this operation to return information about the configuration of a workspace. The configuration details returned include workspace configuration status, label set limits, and retention period.

Usage

prometheusservice_describe_workspace_configuration(workspaceId)

Arguments

workspaceId

[required] The ID of the workspace that you want to retrieve information for. To find the IDs of your workspaces, use the list_workspaces operation.

Value

A list with the following syntax:

list(
  workspaceConfiguration = list(
    limitsPerLabelSet = list(
      list(
        labelSet = list(
          "string"
        ),
        limits = list(
          maxSeries = 123
        )
      )
    ),
    retentionPeriodInDays = 123,
    status = list(
      statusCode = "ACTIVE"|"UPDATING"|"UPDATE_FAILED",
      statusReason = "string"
    )
  )
)

Request syntax

svc$describe_workspace_configuration(
  workspaceId = "string"
)