# SeqSettings

- Kind: `class`
- Package: [Aspire.Seq](/reference/api/csharp/aspire.seq.md)
- Version: `13.4.0`
- Namespace: `Aspire.Seq`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/cbc352350f1a9bafbaff10d14a2c8de4ac186a48/src/Components/Aspire.Seq/SeqSettings.cs)

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

## Definition

```csharp
namespace Aspire.Seq;

public sealed class SeqSettings
{
    // ...
}
```

## Constructors

- [SeqSettings](/reference/api/csharp/aspire.seq/seqsettings/constructors.md#constructor)

## Properties

- [ApiKey](/reference/api/csharp/aspire.seq/seqsettings/properties.md#apikey) : `string?` `get; set` -- Gets or sets a Seq API key that authenticates the client to the Seq server.
- [DisableHealthChecks](/reference/api/csharp/aspire.seq/seqsettings/properties.md#disablehealthchecks) : `bool` `get; set` -- Gets or sets a boolean value that indicates whether the Seq server health check is disabled or not.
- [Logs](/reference/api/csharp/aspire.seq/seqsettings/properties.md#logs) : `OtlpExporterOptions` `get` -- Gets OTLP exporter options for logs.
- [ServerUrl](/reference/api/csharp/aspire.seq/seqsettings/properties.md#serverurl) : `string?` `get; set` -- 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`."
- [Traces](/reference/api/csharp/aspire.seq/seqsettings/properties.md#traces) : `OtlpExporterOptions` `get` -- Gets OTLP exporter options for traces.
