Skip to content

Describe Account Overview

devopsguru_describe_account_overview R Documentation

For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights

Description

For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights.

Usage

devopsguru_describe_account_overview(FromTime, ToTime)

Arguments

FromTime

[required] The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.

ToTime

The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.

Value

A list with the following syntax:

list(
  ReactiveInsights = 123,
  ProactiveInsights = 123,
  MeanTimeToRecoverInMilliseconds = 123
)

Request syntax

svc$describe_account_overview(
  FromTime = as.POSIXct(
    "2015-01-01"
  ),
  ToTime = as.POSIXct(
    "2015-01-01"
  )
)