Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

LogRowModel interface

Signature

typescript
export interface LogRowModel 

Import

typescript
import { LogRowModel } from '@grafana/data';

Properties

PropertyTypeDescription
dataFrameDataFrame
duplicatesnumber
entrystring
entryFieldIndexnumber
hasAnsiboolean
labelsLabels
logLevelLogLevel
rawstring
rowIndexnumber
searchWordsstring[]
timeEpochMsnumber
timeEpochNsstring
timeFromNowstring
timeLocalstring
timeUtcstring
uidstring
uniqueLabelsLabels

dataFrame property

Signature

typescript
dataFrame: DataFrame;

duplicates property

Signature

typescript
duplicates?: number;

entry property

Signature

typescript
entry: string;

entryFieldIndex property

Signature

typescript
entryFieldIndex: number;

hasAnsi property

Signature

typescript
hasAnsi: boolean;

labels property

Signature

typescript
labels: Labels;

logLevel property

Signature

typescript
logLevel: LogLevel;

raw property

Signature

typescript
raw: string;

rowIndex property

Signature

typescript
rowIndex: number;

searchWords property

Signature

typescript
searchWords?: string[];

timeEpochMs property

Signature

typescript
timeEpochMs: number;

timeEpochNs property

Signature

typescript
timeEpochNs: string;

timeFromNow property

Signature

typescript
timeFromNow: string;

timeLocal property

Signature

typescript
timeLocal: string;

timeUtc property

Signature

typescript
timeUtc: string;

uid property

Signature

typescript
uid: string;

uniqueLabels property

Signature

typescript
uniqueLabels?: Labels;