Skip to content

Describe Logging Configuration

prometheusservice_describe_logging_configuration R Documentation

Returns complete information about the current rules and alerting logging configuration of the workspace

Description

Returns complete information about the current rules and alerting logging configuration of the workspace.

These logging configurations are only for rules and alerting logs.

Usage

prometheusservice_describe_logging_configuration(workspaceId)

Arguments

workspaceId

[required] The ID of the workspace to describe the logging configuration for.

Value

A list with the following syntax:

list(
  loggingConfiguration = list(
    status = list(
      statusCode = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"CREATION_FAILED"|"UPDATE_FAILED",
      statusReason = "string"
    ),
    workspace = "string",
    logGroupArn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    modifiedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$describe_logging_configuration(
  workspaceId = "string"
)