79450081

Date: 2025-02-19 02:58:50
Score: 4
Natty:
Report link

Here is with username and password

var localHostElasticURL= "http://localhost:9200";
  string indexFormat = "stackOverFlowTestindex";
  Log.Logger = new LoggerConfiguration()
      .Enrich.FromLogContext()
      .Enrich.WithExceptionDetails()
      .Enrich.WithProperty("Environment", environment)
      .WriteTo.Elasticsearch(new[] { new Uri(localHostElasticURL) },
      options =>
      {
          options.DataStream = new DataStreamName(indexFormat);
          options.TextFormatting = new EcsTextFormatterConfiguration();
          options.BootstrapMethod = BootstrapMethod.Failure;
          options.ConfigureChannel = channelOptions =>
          {
              channelOptions.BufferOptions = new BufferOptions();
          };
      },
      configureTransport =>
      {
            configureTransport.Authentication(new BasicAuthentication("username", "password"));
            configureTransport.ServerCertificateValidationCallback((_, _, _, _) => true);
      })
      .ReadFrom.Configuration(configuration)
      .CreateLogger();

  host.UseSerilog(Log.Logger, true);

but anyone can help with indexFormat like be-logs-{0:yyyy.MM} to always create new index each month and have alias like be-logs.

Reasons:
  • Blacklisted phrase (1): stackOverFlow
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ros Sokcheanith