mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
62 lines
1.2 KiB
Markdown
62 lines
1.2 KiB
Markdown
|
+++
|
||
|
# -----------------------------------------------------------------------
|
||
|
# Do not edit this file. It is automatically generated by API Documenter.
|
||
|
# -----------------------------------------------------------------------
|
||
|
title = "LogsModel"
|
||
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
||
|
type = "docs"
|
||
|
+++
|
||
|
|
||
|
## LogsModel interface
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface LogsModel
|
||
|
```
|
||
|
<b>Import</b>
|
||
|
|
||
|
```typescript
|
||
|
import { LogsModel } from '@grafana/data';
|
||
|
```
|
||
|
<b>Properties</b>
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [hasUniqueLabels](#hasuniquelabels-property) | <code>boolean</code> | |
|
||
|
| [meta](#meta-property) | <code>LogsMetaItem[]</code> | |
|
||
|
| [rows](#rows-property) | <code>LogRowModel[]</code> | |
|
||
|
| [series](#series-property) | <code>GraphSeriesXY[]</code> | |
|
||
|
|
||
|
### hasUniqueLabels property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
hasUniqueLabels: boolean;
|
||
|
```
|
||
|
|
||
|
### meta property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
meta?: LogsMetaItem[];
|
||
|
```
|
||
|
|
||
|
### rows property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
rows: LogRowModel[];
|
||
|
```
|
||
|
|
||
|
### series property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
series?: GraphSeriesXY[];
|
||
|
```
|