+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "HealthCheckResult"
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
type = "docs"
+++
## HealthCheckResult interface
Describes the payload returned when checking the health of a data source plugin.
Signature
```typescript
export interface HealthCheckResult
```
Import
```typescript
import { HealthCheckResult } from '@grafana/runtime';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [details](#details-property) | Record<string, any>
| |
| [message](#message-property) | string
| |
| [status](#status-property) | HealthStatus
| |
### details property
Signature
```typescript
details?: Record;
```
### message property
Signature
```typescript
message: string;
```
### status property
Signature
```typescript
status: HealthStatus;
```