# SeqSettings Properties

- Package: [Aspire.Seq](/reference/api/csharp/aspire.seq.md)
- Type: [SeqSettings](/reference/api/csharp/aspire.seq/seqsettings.md)
- Kind: `Properties`
- Members: `5`

Provides the client configuration settings for connecting telemetry to a Seq server.

## ApiKey

- Name: `ApiKey`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Seq/SeqSettings.cs)

Gets or sets a Seq API key that authenticates the client to the Seq server.

```csharp
public string? ApiKey { get; set; }
```

## DisableHealthChecks

- Name: `DisableHealthChecks`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Seq/SeqSettings.cs)

Gets or sets a boolean value that indicates whether the Seq server health check is disabled or not.

```csharp
public bool DisableHealthChecks { get; set; }
```

## Logs

- Name: `Logs`
- Modifiers: `get`
- Returns: `OtlpExporterOptions`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Seq/SeqSettings.cs#L34)

Gets OTLP exporter options for logs.

```csharp
public OtlpExporterOptions Logs { get; }
```

## ServerUrl

- Name: `ServerUrl`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Seq/SeqSettings.cs)

Gets or sets the base URL of the Seq server (including protocol and port). E.g. "https://example.seq.com:6789. Overrides endpoints set on `Logs` and `Traces`."

```csharp
public string? ServerUrl { get; set; }
```

## Traces

- Name: `Traces`
- Modifiers: `get`
- Returns: `OtlpExporterOptions`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Seq/SeqSettings.cs#L39)

Gets OTLP exporter options for traces.

```csharp
public OtlpExporterOptions Traces { get; }
```
