Skip to main content

Retrieve all silences

GET 

/v1/grafana/api/alertmanager/grafana/api/v2/silences/

Retrieve a list of all existing silences, including their ID, status, and additional details.

Request

Body

    id string

    Unique identifier for the silence.

    status object

    The state of the silence (active or expired).

    updatedAt string

    Date and time in UTC when the silence was last updated.

    comment string

    A description or comment about the silence, its purpose, or any relevant details.

    createdBy string

    Name of the user who created the silence.

    endsAt string

    Date and time in UTC when the silence ends.

    matchers object[]

    List of matchers defining which alerts the silence applies to.

  • Array [
  • isEqual string
    isRegex string
    name string
    value string
  • ]
  • startsAt string

    Date and time in UTC when the silence begins.

Responses

successful operation

Schema
    id string

    Unique identifier for the silence.

    status object

    The state of the silence (active or expired).

    updatedAt string

    Date and time in UTC when the silence was last updated.

    comment string

    A description or comment about the silence, its purpose, or any relevant details.

    createdBy string

    Name of the user who created the silence.

    endsAt string

    Date and time in UTC when the silence ends.

    matchers object[]

    List of matchers defining which alerts the silence applies to.

  • Array [
  • isEqual string
    isRegex string
    name string
    value string
  • ]
  • startsAt string

    Date and time in UTC when the silence begins.

Loading...