Sha256: 4c1c7091aefa5d7181290091616d0b871394bc240eccbc181cfd63e80157eb5b

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

# DatadogAPIClient::V1::ServiceCheck

## Properties

| Name          | Type                                            | Description                              | Notes      |
| ------------- | ----------------------------------------------- | ---------------------------------------- | ---------- |
| **check**     | **String**                                      | The check.                               |            |
| **host_name** | **String**                                      | The host name correlated with the check. |            |
| **message**   | **String**                                      | Message containing check status.         | [optional] |
| **status**    | [**ServiceCheckStatus**](ServiceCheckStatus.md) |                                          |            |
| **tags**      | **Array<String>**                         | Tags related to a check.                 |            |
| **timestamp** | **Integer**                                     | Time of check.                           | [optional] |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ServiceCheck.new(
  check: app.ok,
  host_name: app.host1,
  message: app is running,
  status: null,
  tags: ["environment:test"],
  timestamp: null
)
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
datadog_api_client-1.6.0 docs/v1/ServiceCheck.md
datadog_api_client-1.5.0 docs/v1/ServiceCheck.md