问题描述
我目前正在开发 .NET Standard 2.1 Blazor WebAssembly托管应用程序。我将 Serilog与ElasticSearch一起使用,并希望将日志消息从我的Client项目发送到ElasticSearch服务器。我的项目结构如下:
- BlazorApp.Client(我想从此处将日志发送到ElasticSearch)
- BlazorApp.Server
在这里问类似的问题:Serilog Not Logging to ElasticSearch in Blazor WebAssembly
我想出了如何使用Serilogs .Writeto.ElasticSearch()发送日志,但是我总是在浏览器控制台上遇到错误:Cannot Wait on monitors
Elasticsearch.Net.UnexpectedElasticsearchClientException:无法在此运行时上等待监视器。 ---> System.Threading.SynchronizationLockException:无法在此运行时上等待监视器。
复制:
我目前在本地主机(端口:9200,:5601)上运行ElasticStack。首先,我需要在ElasticSearch服务器上激活CORS,因为Blazor WASm应用程序是静态Web应用程序。因此,我将以下代码添加到了elasticsearch.yml
中:
http.cors.enabled : true
http.cors.allow-origin : "*"
http.cors.allow-methods : OPTIONS,HEAD,GET,POST,PUT,DELETE
http.cors.allow-headers : X-Requested-With,X-Auth-Token,Content-Type,Content-Length
接着,在对浏览器控制台中产生的错误进行了一些研究之后,我认为Serilogs NuGet软件包Serilog.Sinks.Elasticsearch
可能还没有准备就绪。
原因是.Writeto.Elasticsearch()
使用的httpclienthandler
仅在当前Blazor WASm中得到部分支持-据我所知 。
因此,我不得不为Blazor WASm编写自己的httpclienthandler实现:
public class Wasmhttpclienthandler : httpclienthandler
{
public override bool SupportsAutomaticDecompression => false;
public override bool SupportsProxy => false;
public override bool SupportsRedirectConfiguration => false;
}
下一步是覆盖Serilog NuGet软件包的httpconnection
类:
public class Wasmhttpconnection : httpconnection
{
protected override HttpMessageHandler Createhttpclienthandler(RequestData requestData)
{
var handler = new Wasmhttpclienthandler();
Func<object,X509Certificate,X509Chain,SslPolicyErrors,bool> callback = requestData.ConnectionSettings?.ServerCertificateValidationCallback;
if (callback != null && handler.ServerCertificateCustomValidationCallback == null)
{
handler.ServerCertificateCustomValidationCallback = callback;
}
if (requestData.ClientCertificates != null)
{
handler.ClientCertificateOptions = ClientCertificateOption.Manual;
handler.ClientCertificates.AddRange(requestData.ClientCertificates);
}
return handler;
}
}
然后我需要使用这个新连接:
return new ElasticsearchSinkOptions(new Uri("http://localhost:9200"))
{
IndexFormat = "test-index",Connection = new Wasmhttpconnection(),};
主要方法:
Log.Logger = new LoggerConfiguration()
.Enrich.FromLogContext()
.Enrich.WithMachineName()
.Enrich.WithExceptionDetails()
.Writeto.Debug()
.Writeto.Console(new CompactJsonFormatter())
.Writeto.Elasticsearch(new ElasticsearchSinkOptions(new Uri("http://localhost:9200"))
{
IndexFormat = "test-index",})
.CreateLogger();
SelfLog.Enable(msg => Debug.WriteLine(msg));
使用此设置,我可以将日志发送到ElasticSearch并在Kibana中查看日志消息。
当我打开Serilog上的Selflog时,只剩下一个问题:
SelfLog.Enable(msg => Debug.WriteLine(msg));
我收到以下错误:Cannot wait on monitors.
,也在这里讨论:Blazor WebAssembly Monitor Threading exception
这意味着Serilog .Writeto.Elasticsearch()可能尚未为Blazor WASm做好生产准备。也许您对如何改善我的解决方案有个想法?
如果您有更好的主意,请提供有关如何改进此解决方案的建议,甚至更好的解决方案,请与我联系!
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)