# DatadogAPIClient::V1::MonitorSearchResult ## Properties | Name | Type | Description | Notes | | --------------------- | -------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | | **classification** | **String** | Classification of the monitor. | [optional][readonly] | | **creator** | [**Creator**](Creator.md) | | [optional] | | **id** | **Integer** | ID of the monitor. | [optional][readonly] | | **last_triggered_ts** | **Integer** | Latest timestamp the monitor triggered. | [optional][readonly] | | **metrics** | **Array<String>** | Metrics used by the monitor. | [optional][readonly] | | **name** | **String** | The monitor name. | [optional][readonly] | | **notifications** | [**Array<MonitorSearchResultNotification>**](MonitorSearchResultNotification.md) | The notification triggered by the monitor. | [optional][readonly] | | **org_id** | **Integer** | The ID of the organization. | [optional][readonly] | | **query** | **String** | The monitor query. | [optional] | | **scopes** | **Array<String>** | The scope(s) to which the downtime applies, for example `host:app2`. Provide multiple scopes as a comma-separated list, for example `env:dev,env:prod`. The resulting downtime applies to sources that matches ALL provided scopes (that is `env:dev AND env:prod`), NOT any of them. | [optional] | | **status** | [**MonitorOverallStates**](MonitorOverallStates.md) | | [optional] | | **tags** | **Array<String>** | Tags associated with the monitor. | [optional][readonly] | | **type** | [**MonitorType**](MonitorType.md) | | [optional] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::MonitorSearchResult.new( classification: null, creator: null, id: null, last_triggered_ts: null, metrics: null, name: null, notifications: null, org_id: null, query: avg(last_5m):sum:system.net.bytes_rcvd{host:host0} > 100, scopes: ["host:app2","env:dev,env:prod"], status: null, tags: null, type: null ) ```