From cd1c4d3ee61eb8720c1e64fe581d2f8bb713102f Mon Sep 17 00:00:00 2001 From: William Chong Date: Wed, 13 Nov 2024 15:24:52 +0400 Subject: [PATCH] docs: fix typo in ecs sink BootstrapMethod option --- src/Elastic.Serilog.Sinks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Elastic.Serilog.Sinks/README.md b/src/Elastic.Serilog.Sinks/README.md index c2d4e098..5c5d196b 100644 --- a/src/Elastic.Serilog.Sinks/README.md +++ b/src/Elastic.Serilog.Sinks/README.md @@ -42,7 +42,7 @@ Writing to `Elastic Cloud`: |-------|-------------| | `Transport` | An instance of `Elastic.Transport` that dictates where and how wer are communicating to. Defaults to `http://localhost:9200` | | `DataStream` | Where to write data, defaults to the `logs-dotnet-default` datastream. | -| `BootstrapMethod` | Wheter the sink should attempt to install component and index templates to ensure the datastream has ECS mappings. Can be be either `None` (the default), `Silent` (attempt but fail silently), `Failure` (attempt and fail with exceptions if bootstrapping fails). | +| `BootstrapMethod` | Whether the sink should attempt to install component and index templates to ensure the datastream has ECS mappings. Can be be either `None` (the default), `Silent` (attempt but fail silently), `Failure` (attempt and fail with exceptions if bootstrapping fails). | | `TextFormatting`| Allows explicit control of over the `EcsTextFormatterConfiguration` used to emit ECS json documents. See [`Elastic.CommonSchema.Serilog`](https://github.com/elastic/ecs-dotnet/tree/main/src/Elastic.CommonSchema.Serilog) for available options. | | `ConfigureChannel` | A callback receiving the `DatastreamChannelOptions` which allows you to control sizing, backpressure etc. See [`Elastic.Ingest.Elasticsearch`](https://github.com/elastic/elastic-ingest-dotnet/blob/main/src/Elastic.Ingest.Elasticsearch/README.md#elasticingestelasticsearch) for more information.