Logging into Elasticsearch using Serilog and viewing logs in Kibana | .NET Core Tutorial

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Become a Patreon and get source code access: / nickchapsas
    Check out my courses: dometrain.com
    Hello everybody I'm Nick and in this video I will show you how you can very easily get started with logging into Elasticsearch in your .NET core application. We won't go in depth on how Elasticsearch works and why it is a good fit for a log sink but instead I am going to show you how you can quickly use Serilog to replace Microsoft's built in logging mechanism and start pushing logs into Elasticsearch, which you can then use Kibana to view and analyse. There will be a second video coming showing some of the cool stuff that you can do in Kibana with those logs.
    Don't forget to comment, like and subscribe :)
    Social Media:
    Follow me on GitHub: bit.ly/ChapsasG...
    Follow me on Twitter: bit.ly/ChapsasT...
    Connect on LinkedIn: bit.ly/ChapsasL...
    #dotnet #elasticsearch #logging #kibana

Комментарии • 65

  • @evilroxxx
    @evilroxxx 3 года назад +29

    Nick, you can also add serilog as a default logging provider into Microsoft extensions logging. So you won’t have to change from the ms implementation of Ilogger into serilog logger and continue to record your logs in the serilog format.

    • @infotips2475
      @infotips2475 2 года назад +3

      where can i get an example ?

    • @yossisternlicht21
      @yossisternlicht21 2 года назад +5

      @@infotips2475
      Here is a minimal example in dotnet 6 Minimal API
      using Serilog;
      var builder = WebApplication.CreateBuilder(args);
      builder.Host.UseSerilog((context, config) =>
      {
      config.WriteTo.Console();
      });
      var app = builder.Build();
      app.MapGet("/", (ILogger _logger) =>
      {
      _logger.LogWarning("TEST");
      return "Hello World!";
      }
      );
      app.Run();
      You must install Serilog.AspNetCore nuget package for this to work.

  • @romanhrytskiv5598
    @romanhrytskiv5598 4 года назад +3

    Thank you for this video.
    TIP: you can search trough commands history in terminal emulator with CTRL+R and then typing, way faster that up/down arrows.

  • @piotrkowalski3460
    @piotrkowalski3460 3 года назад +2

    log templates with custom properties are working when using ILogger interface as well

  • @paragsarin2177
    @paragsarin2177 4 года назад +5

    I really appreciate the way you explain things, keep up the good work. thanks

  • @lemurza5236
    @lemurza5236 4 года назад +3

    Very nice. Excited for the full elastic search video

  • @shreneekpatil220
    @shreneekpatil220 3 года назад +1

    Nick, you are simply awesome, i don't it is coincident or what, your all videos are linked to my current work like. Net core, serilog, reflections, redis cache, elastic search, system. Text.Json, logger etc etc... Thanks a lot for helping in directely us to building a Product

  • @ianf765
    @ianf765 2 года назад

    Thank you - I have been trying to get started with elasticsearch logging for a while without success. This was the video where I finally got it :) Great video, and just the right level of detail to your explanations.

  • @mestrestephane9087
    @mestrestephane9087 Год назад

    Excellent explanation. Thank you Nick.

  • @Pampua84
    @Pampua84 3 года назад +2

    Hello, first of all congratulations for your videos, they are simple and very clear and always touch on very interesting topics, also I really like your way of explaining, you can see that you love what you do and that you do it well Today I saw this video, and it would be nice if you made one on elastic stack and how would you structure your logs (real cases) in case of using filebeat. Great, keep it up

  • @ahmeddan7734
    @ahmeddan7734 4 года назад +1

    Thanks and great job. waiting for your next Elastic search video

  •  2 года назад

    Nick, another perfect video
    Thank you so much!
    You're the guy!

  • @TheSaintsVEVO
    @TheSaintsVEVO 4 дня назад

    Where is the ElasticSearch video mentioned in this? Was as it ever uploaded? Couldn’t find it with search

  • @daa82
    @daa82 2 года назад

    These videos are great! I am learning so much!

  • @matiascasag
    @matiascasag 4 года назад +4

    Awesome! Thanks!. Waiting for the Elasticsearch tuto. I have a question for you.
    Does this logging to elasticsearch have a retry in case the service is down or in case of error trying to log?

  • @CRBarchager
    @CRBarchager 4 года назад +4

    We're already doing this in all of our applications internally :D

    • @sunnyokoro
      @sunnyokoro 4 года назад

      is it free please? Do you need to pay for any of the elastic search or Kibana?

    • @evilroxxx
      @evilroxxx 3 года назад

      @@sunnyokoro it’s completely free

  • @irinamurmur
    @irinamurmur 2 года назад

    Thank you! Very useful

  • @clearlyunwell
    @clearlyunwell 3 года назад +1

    This is really great, thank you for all the videos you make - please never stop making videos and remember: keep coding :)

  • @whoiam6395
    @whoiam6395 2 года назад

    So useful! Thanks 👍🏻

  • @mortware
    @mortware 4 года назад +3

    This is great - thank you.
    I'm really interested in trying it out myself, but I came unstuck with the docker/yaml stuff. I can't get hold of your repo as there seems to be a problem with the invite system. Can you help?

  • @emlplsn
    @emlplsn 3 года назад

    Awesome video, thanks for sharing.

  • @denisosipenko7413
    @denisosipenko7413 4 года назад

    Thanks a lot. Really useful knowledge 👍

  • @furqan-safdar
    @furqan-safdar 5 месяцев назад

    I tried to follow the steps but finding difficulty because elasticsearch version 8 has introduced major changes perhaps. Kindly post a video complying new version to use Serilog with elasticsearch

  • @suryanarayanbaliarsingh5363
    @suryanarayanbaliarsingh5363 4 года назад

    very nice. Thanks for sharing.

  • @smrsgv
    @smrsgv 3 года назад

    Logging not working when i publish it to IIS, but work normally locally, there is no restriction in network, how can i solve it? maybe i missed some config for production?

  • @Ajmal_Yazdani
    @Ajmal_Yazdani 4 года назад

    super cool. Thanks for it.

  • @volodia9509
    @volodia9509 3 года назад

    Hi. Why when using method logger.information("very bad request") or logger.error("something bad") does not display my message in kibana? I got message "request finished http 1.1 post... "
    MessageTemplate {HostingRequestFinished:l}

  • @TheraPi
    @TheraPi 3 года назад +1

    nice and practical tutorial. However, I'm not seeing my index pattern in Kibana. I followed the exact steps, bus used the official E-L-K docker containers

  • @MartinHAndersen
    @MartinHAndersen 3 года назад +2

    Thanks for another great video. Really learning a lot from you.
    First it's freaking awesome that you can have all that functionality with so little code, awesome.
    I would like to have Serilog to log to different devices dependent on the environment the program are running in.
    localmachine to console, TEST, QA and PROD to Elastic.
    What would be the best approach?

  • @yurimelo3404
    @yurimelo3404 3 месяца назад

    What are the nuigets that you used?

  • @UstinBelarus
    @UstinBelarus 2 года назад

    in case someone faces the issue with elastic service run - add "discovery.type=single-node" to the elastic service's environment

  • @CutePoisonization
    @CutePoisonization 2 года назад

    my elastic server is remotely hosted and need username and password to authenticate, where do i specify these credentials in my .net core application?

  • @ADSNGreenLife
    @ADSNGreenLife 3 года назад

    really useful video!!!!!

  • @yanaraldaghestani6305
    @yanaraldaghestani6305 2 года назад

    amazing man

  • @benlewies8828
    @benlewies8828 3 года назад

    Would be great if you would cover the NEST library as well

  • @89chiponline
    @89chiponline 4 года назад

    thanks

  • @ricardo190988
    @ricardo190988 3 года назад

    Hi Nick, thanks for the video. Are you still planning on doing a video on ElasticSearch only (or maybe OpenSearch)? That'd be awesome:)

  • @zoran123456
    @zoran123456 2 года назад

    you omitted logstash, how would you refactor the code to support logstash? Thanks for the tutorial.

  • @aronsz
    @aronsz Год назад

    one container, elasticsearch doesn't work for me for some reason. It starts and runs for a bit but then stops with "ERROR: Elasticsearch exited unexpectedly".
    Nick, do you have the sourcecode available somewhere perhaps? (Although I'm pretty sure I copied correctly.)

    • @aronsz
      @aronsz Год назад +1

      Nevermind, I had a "too low max virtual memory" issue. To fix, run:
      > wsl -d docker-desktop
      > sysctl -w vm.max_map_count=262144
      > exit (to exit the wsl)

  • @llindeberg
    @llindeberg 3 года назад +1

    Have you tried elmah.io? How does it compare?

  • @pranavpandey7163
    @pranavpandey7163 2 года назад

    Hi Nick, As you said you are going to create a video on Elastisearch, when you are planning to upload that?

  • @sps014
    @sps014 3 года назад

    Nick Please do a tutorial on MS Search integration.

  • @LetsLearnWithA.R
    @LetsLearnWithA.R 4 года назад

    Awesome !!

  • @ayasaber2567
    @ayasaber2567 8 месяцев назад

    Thanks for video, but I find the Index Pattern tab

  • @darkydrone
    @darkydrone 3 года назад

    Can you use that with the Serlilogs Log.Error also?

  • @noelfrancisco5778
    @noelfrancisco5778 3 года назад

    This is great tool, is it possible to replace with this tool the logging from SQL (through SQL trigger, during create, update, and delete transaction)? TIA :)

  • @trocomerlo
    @trocomerlo 3 года назад

    Great content. Is it possible to configure a retention policy of the logs in elastic search? So like if you want to keep only the last 2 months of logs.

  • @feelingeverfine
    @feelingeverfine 3 года назад

    What does this have over just using Serilog and Seq? What did Elastic and Kibana get over this?

    • @nickchapsas
      @nickchapsas  3 года назад

      I've seen Seq at scale and it just doesn't play nicely.

  • @christianista
    @christianista 4 года назад +1

    How can we use Elasticsearch/Serilog when API is hosted on Azure?

    • @jfpinero
      @jfpinero 3 года назад

      We do AppInsights/Serilog with stuff hosted in kubernets/azure, so definitely

  • @mdzakariamasud8326
    @mdzakariamasud8326 4 месяца назад

    how to add authentication

  • @kevinli9212
    @kevinli9212 4 года назад

    Personally I reckon having the configuration all coming from appsettings is a better approach

    • @nickchapsas
      @nickchapsas  4 года назад +1

      It's definitely a more convenient approach but it is also definitely not a secure one

  • @kartheeknandini3767
    @kartheeknandini3767 3 года назад +1

    Nice video. I have one question. How Kibana accessing Elastic search DB. where you have configured it

    • @nickchapsas
      @nickchapsas  3 года назад +1

      That is part of the docker-compose that I'm using

  • @maradasa985
    @maradasa985 2 года назад

    Nick I am still waiting the elasticsearch video XD.

    • @nickchapsas
      @nickchapsas  2 года назад +1

      Well, shit 😂

    • @maradasa985
      @maradasa985 2 года назад

      Not a bad idea, keep it in mind for the future, keep doing such an excellent work, a hello from a fan from Cuba