Data - Retrieve Monitor Information

Retrieves monitor information for the monitor ID provided.

GET http://<Servername>/OperationsManager/data/monitorInformation/{monitorId}

URI Parameters

Name In Required Type Description
monitorId
path True

string

The id of the monitor to be fetched.

Responses

Name Type Description
200 OK

TableDataResponse

OK.Successfully retrieved Monitor Information.

Media Types: "application/json", "text/json", "application/xml", "text/xml"

Examples

RetrieveMonitorInformation

Sample Request

GET http://<Servername>/OperationsManager/data/monitorInformation/93328865-eafd-abee-2002-9ac35dfe0bf6

Sample Response

{
  "tableColumns": [
    {
      "field": "name",
      "header": "Name",
      "type": null,
      "hidden": false
    },
    {
      "field": "value",
      "header": "Value",
      "type": null,
      "hidden": false
    }
  ],
  "rows": [
    {
      "name": "Display Name",
      "value": "{\"text\":\"Security\",\"drilldowntype\":\"monitor\",\"id\":\"93328865-eafd-abee-2002-9ac35dfe0bf6\"}"
    },
    {
      "name": "Description",
      "value": "Roll up monitor that aggregates entity security health."
    },
    {
      "name": "Comment",
      "value": null
    },
    {
      "name": "Enabled",
      "value": "true"
    },
    {
      "name": "Identifier",
      "value": "1|System.Health.Library/9396306c2be7fcc4|1.0.0.0|System.Health.SecurityState||"
    },
    {
      "name": "Target",
      "value": "{\"text\":\"Object\",\"drilldowntype\":\"class\",\"id\":\"ac5cddfc-a96a-ee99-745d-ec74845f53f6\"}"
    },
    {
      "name": "Type",
      "value": "AggregateMonitor"
    },
    {
      "name": "Priority",
      "value": "Normal"
    },
    {
      "name": "State",
      "value": "Unchanged"
    }
  ]
}

Definitions

Name Description
TableColumn
TableDataResponse

TableColumn

Name Type Description
field

string

Name of the Column

header

string

Header of the column

hidden

boolean

Is column hidden

type

string

Type of the Column

TableDataResponse

Name Type Description
rows

object[]

Table Rows of data

tableColumns

TableColumn[]

Table columns of data