# LogRowView

Source: /tuil/docs/reference/packages/log-viewer/api/log-row-view
Locale: en

interface exported by @mwillbanks/tuil-log-viewer.



{/* Generated by tooling/docs/generate-reference.ts. */}

## interface [#interface]

Public interface exported by `@mwillbanks/tuil-log-viewer`.

```ts
export interface LogRowView {
  readonly index: number;
  readonly severity: string;
  readonly timestamp: string;
  readonly source: string;
  readonly service: string;
  readonly attributes: string;
  readonly traceId: string;
  readonly body: string;
  readonly selected: boolean;
  readonly parseError: boolean;
  readonly duplicateCount: number;
  readonly rateLimited: boolean;
  readonly sampled: boolean;
}
```

## Members [#members]

| Member           | Type      | Required | Description                                             | Related types |
| ---------------- | --------- | -------- | ------------------------------------------------------- | ------------- |
| `index`          | `number`  | Yes      | The `index` member uses the `number` contract.          | —             |
| `severity`       | `string`  | Yes      | The `severity` member uses the `string` contract.       | —             |
| `timestamp`      | `string`  | Yes      | The `timestamp` member uses the `string` contract.      | —             |
| `source`         | `string`  | Yes      | The `source` member uses the `string` contract.         | —             |
| `service`        | `string`  | Yes      | The `service` member uses the `string` contract.        | —             |
| `attributes`     | `string`  | Yes      | The `attributes` member uses the `string` contract.     | —             |
| `traceId`        | `string`  | Yes      | The `traceId` member uses the `string` contract.        | —             |
| `body`           | `string`  | Yes      | The `body` member uses the `string` contract.           | —             |
| `selected`       | `boolean` | Yes      | The `selected` member uses the `boolean` contract.      | —             |
| `parseError`     | `boolean` | Yes      | The `parseError` member uses the `boolean` contract.    | —             |
| `duplicateCount` | `number`  | Yes      | The `duplicateCount` member uses the `number` contract. | —             |
| `rateLimited`    | `boolean` | Yes      | The `rateLimited` member uses the `boolean` contract.   | —             |
| `sampled`        | `boolean` | Yes      | The `sampled` member uses the `boolean` contract.       | —             |

## Parameters [#parameters]

This declaration has no public members.

## Returns [#returns]

This declaration does not return a value.

## Throws [#throws]

No thrown errors are documented for this declaration.

## Related types [#related-types]

No package-local related types.

## Source [#source]

[View the secondary source reference](https://github.com/mwillbanks/tuil/blob/main/packages/log-viewer/src/index.tsx)

## Package [#package]

[@mwillbanks/tuil-log-viewer](/tuil/docs/reference/packages/log-viewer)
