mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 04:31:36 +08:00
71 lines
1.4 KiB
Markdown
71 lines
1.4 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> | |
|
|
| [visibleRange](#visiblerange-property) | <code>AbsoluteTimeRange</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[];
|
|
```
|
|
|
|
### visibleRange property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
visibleRange?: AbsoluteTimeRange;
|
|
```
|