View Source GoogleApi.Monitoring.V3.Model.ServiceLevelObjective (google_api_monitoring v0.55.0)

A Service-Level Objective (SLO) describes a level of desired good service. It consists of a service-level indicator (SLI), a performance goal, and a period over which the objective is to be evaluated against that goal. The SLO can use SLIs defined in a number of different manners. Typical SLOs might include "99% of requests in each rolling week have latency below 200 milliseconds" or "99.5% of requests in each calendar month return successfully."

Attributes

  • calendarPeriod (type: String.t, default: nil) - A calendar period, semantically "since the start of the current ". At this time, only DAY, WEEK, FORTNIGHT, and MONTH are supported.
  • displayName (type: String.t, default: nil) - Name used for UI elements listing this SLO.
  • goal (type: float(), default: nil) - The fraction of service that must be good in order for this objective to be met. 0 < goal <= 0.999.
  • name (type: String.t, default: nil) - Identifier. Resource name for this ServiceLevelObjective. The format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]
  • rollingPeriod (type: String.t, default: nil) - A rolling time period, semantically "in the past ". Must be an integer multiple of 1 day no larger than 30 days.
  • serviceLevelIndicator (type: GoogleApi.Monitoring.V3.Model.ServiceLevelIndicator.t, default: nil) - The definition of good service, used to measure and calculate the quality of the Service's performance with respect to a single aspect of service quality.
  • userLabels (type: map(), default: nil) - Labels which have been used to annotate the service-level objective. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Monitoring.V3.Model.ServiceLevelObjective{
  calendarPeriod: String.t() | nil,
  displayName: String.t() | nil,
  goal: float() | nil,
  name: String.t() | nil,
  rollingPeriod: String.t() | nil,
  serviceLevelIndicator:
    GoogleApi.Monitoring.V3.Model.ServiceLevelIndicator.t() | nil,
  userLabels: map() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.