Skip to content

Commit 70425e4

Browse files
committed
fix: ES name
1 parent 43de675 commit 70425e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Serilog.Ui.ElasticSearchProvider/ElasticSearchDbDataProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public ElasticSearchDbDataProvider(IElasticClient client, ElasticSearchDbOptions
1919
{
2020
_client = client ?? throw new ArgumentNullException(nameof(client));
2121
_options = options ?? throw new ArgumentNullException(nameof(options));
22-
Name = string.Join("ES", _options.IndexName);
22+
Name = string.Join(".", "ES", _options.IndexName);
2323
}
2424

2525
public Task<(IEnumerable<LogModel>, int)> FetchDataAsync(

0 commit comments

Comments
 (0)