当前位置: 首页 > 知识库问答 >
问题:

记录(通过Serilog)到ElasticSearch不起作用

周洋
2023-03-14

我正在尝试将日志发送到ElasticSearch,并在Kibana中查看它们。出于某种奇怪的原因,它不起作用:这些项目正在做一些事情,但在基巴纳什么都没有。我下载并尝试了10多个与此主题相关的项目,虽然它们被介绍为工作示例,但没有一个成功:Kibana中没有任何内容!

我在这里发布了其中一个的源代码

public class Startup
{
    public Startup(IConfiguration configuration)
    {
        // Create Serilog Elasticsearch logger
        Log.Logger = new LoggerConfiguration()
           .Enrich.FromLogContext()
           .MinimumLevel.Information() //debug
           .WriteTo.Elasticsearch().WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri("http://localhost:9200"))
           {
               MinimumLogEventLevel = LogEventLevel.Verbose,
               AutoRegisterTemplate = true
           })
           .CreateLogger();

        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddLogging(loggingBuilder => loggingBuilder.AddSerilog(dispose: true));
        services.AddMvc();
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

    public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
    {
        loggerFactory.AddConsole(Configuration.GetSection("Logging"));
        loggerFactory.AddDebug();


        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Home/Error");
        }

        app.UseStaticFiles();

        app.UseMvc(routes =>
        {
            routes.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}");
        });


    }
}

这是控制器:

public IActionResult Index()
{
    _logger.LogInformation("Hello world!");
    return View();
}

public IActionResult About()
{
    var elasticUri = new Uri("http://localhost:9200/cmstest/obj");

    var loggerConfig = new LoggerConfiguration()
                    .WriteTo.Elasticsearch(new ElasticsearchSinkOptions(elasticUri)
                    {
                        AutoRegisterTemplate = true,
                        MinimumLogEventLevel = Serilog.Events.LogEventLevel.Verbose
                    });


    var logger = loggerConfig.CreateLogger();

    logger.Error("Hello world");
    logger.Information("Hello world");
    logger.Warning("Hello world");

    return View();
}




public IActionResult Contact()
{
    _logger.LogInformation("Hello world");

    var logger = new LoggerConfiguration()
                    .WriteTo.Elasticsearch(new ElasticsearchSinkOptions(
                    new Uri("http://localhost:9200"))
                    {
                        AutoRegisterTemplate = true
                    }).CreateLogger();

    logger.Information("Hello world");

    return View();
}

PS我还发现了log4net的示例-也不工作

共有1个答案

庄兴发
2023-03-14

您可以通过处理失败回调事件来控制台记录响应

.WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri("http://localhost:9200"))
                {
                    FailureCallback = e => Console.WriteLine("Unable to submit event " + e.MessageTemplate),
                    EmitEventFailure = EmitEventFailureHandling.WriteToSelfLog |
                                       EmitEventFailureHandling.WriteToFailureSink |
                                       EmitEventFailureHandling.RaiseCallback,
                    FailureSink = new FileSink("./failures.txt", new JsonFormatter(), null)
                })

有关更多信息,请访问https://github.com/serilog/serilog-sinks-elasticsearch#handling-错误

此外,对于EmitEventFailureHandling。WriteToSelfLog需要在启动时启用它。cs文件

Serilog.Debugging.SelfLog.Enable(Console.WriteLine);

上述代码启用在控制台中记录错误

 类似资料:
  • 我已经在我的Windows7机器上本地安装了Elasticsearch。它工作正常,我可以用邮递员查询它。使用Postman,我还创建了一个名为cmstest的索引。这有一个名为ZDSF的表。如果获取该索引的映射(http://localhost:9200/cmstest/_mapping),我将得到以下内容: 我可以邮寄条目到这个表以及使用邮递员。 现在,我正试图从我的.NET 4.5应用程序中

  • 表模式 用户模型 下面是我在Laravel 5中的代码 错误消息 SQLSTATE[42S22]:未找到列:“where子句”中的1054未知列“user.id”(SQL:select*fromwhere=1限制1)

  • 我试图在一个基于spring的项目中创建记录器策略。 我面临的问题与滚动政策有关。已创建logfile.log并且工作正常,但未创建滚动文件rollingfile.log.%d{yyyy-MM-dd}.log。

  • 我试图使用“使用父母处理程序”来防止日志(由类/类别定义)在多个文件中传播。也就是说,在几个不同的文件中显示相同的消息。例: 但是,有些消息会同时出现在这两者中。“a.b.c.d”消息出现在“a.b”中

  • mySampleApplicaton.gwt.xml mySampleApplication.java(入口点)

  • 问题内容: 我在Elasticsearch 1.2.0(最近从1.0.1升级)上看到了带有ID的怪异行为。 搜索检索我的文档,显示_id的正确值: [终奌站] 结果是 但是,直接在id上查找不是: [terminal] 结果是 看来这是在以前使用自定义脚本进行更新的文档上。 有任何想法吗? 问题答案: 我认为您应该升级到1.2.1。由于发行说明(http://www.elasticsearch.o