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

Поділитися
Вставка
  • Опубліковано 24 сер 2020
  • 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/ChapsasGitHub
    Follow me on Twitter: bit.ly/ChapsasTwitter
    Connect on LinkedIn: bit.ly/ChapsasLinkedIn
    #dotnet #elasticsearch #logging #kibana

КОМЕНТАРІ • 65

  • @paragsarin2177
    @paragsarin2177 3 роки тому +5

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

  • @lemurza5236
    @lemurza5236 3 роки тому +3

    Very nice. Excited for the full elastic search video

  • @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.

  • @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 3 роки тому +1

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

  • @daa82
    @daa82 2 роки тому

    These videos are great! I am learning so much!

  • @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 Рік тому +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.

  • @matiascasag
    @matiascasag 3 роки тому +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?

  • @mestrestephane9087
    @mestrestephane9087 Рік тому

    Excellent explanation. Thank you Nick.

  • @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 :)

  •  2 роки тому

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

  • @romanhrytskiv5598
    @romanhrytskiv5598 3 роки тому +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.

  • @shreneekpatil220
    @shreneekpatil220 2 роки тому +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

  • @piotrkowalski3460
    @piotrkowalski3460 3 роки тому +2

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

  • @emlplsn
    @emlplsn 3 роки тому

    Awesome video, thanks for sharing.

  • @denisosipenko7413
    @denisosipenko7413 3 роки тому

    Thanks a lot. Really useful knowledge 👍

  • @whoiam6395
    @whoiam6395 2 роки тому

    So useful! Thanks 👍🏻

  • @Ajmal_Yazdani
    @Ajmal_Yazdani 3 роки тому

    super cool. Thanks for it.

  • @irinamurmur
    @irinamurmur 2 роки тому

    Thank you! Very useful

  • @suryanarayanbaliarsingh5363
    @suryanarayanbaliarsingh5363 3 роки тому

    very nice. Thanks for sharing.

  • @mortware
    @mortware 3 роки тому +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?

  • @ricardo190988
    @ricardo190988 2 роки тому

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

  • @ADSNGreenLife
    @ADSNGreenLife 2 роки тому

    really useful video!!!!!

  • @yanaraldaghestani6305
    @yanaraldaghestani6305 2 роки тому

    amazing man

  • @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.

  • @LetsLearnWithA.R
    @LetsLearnWithA.R 3 роки тому

    Awesome !!

  • @benlewies8828
    @benlewies8828 2 роки тому

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

  • @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?

  • @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 :)

  • @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.

  • @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

  • @89chiponline
    @89chiponline 3 роки тому

    thanks

  • @zoran123456
    @zoran123456 2 роки тому

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

  • @darkydrone
    @darkydrone 3 роки тому

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

  • @CRBarchager
    @CRBarchager 3 роки тому +4

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

    • @sunnyokoro
      @sunnyokoro 3 роки тому

      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

  • @furqan-safdar
    @furqan-safdar Місяць тому

    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

  • @smrsgv
    @smrsgv 2 роки тому

    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?

  • @MarkStoddard
    @MarkStoddard 3 роки тому

    Ha. I just started getting familiar with ELK stack. While I generally loathe Java, there's a lot of good tools built with Java

  • @llindeberg
    @llindeberg 3 роки тому +1

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

  • @yurimelo3404
    @yurimelo3404 16 днів тому

    What are the nuigets that you used?

  • @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}

  • @UstinBelarus
    @UstinBelarus 2 роки тому

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

  • @christianista
    @christianista 3 роки тому +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

  • @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?

  • @kevinli9212
    @kevinli9212 3 роки тому

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

    • @nickchapsas
      @nickchapsas  3 роки тому +1

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

  • @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)

  • @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

  • @feelingeverfine
    @feelingeverfine 2 роки тому

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

    • @nickchapsas
      @nickchapsas  2 роки тому

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

  • @ayasaber2567
    @ayasaber2567 4 місяці тому

    Thanks for video, but I find the Index Pattern tab

  • @maradasa985
    @maradasa985 Рік тому

    Nick I am still waiting the elasticsearch video XD.

    • @nickchapsas
      @nickchapsas  Рік тому +1

      Well, shit 😂

    • @maradasa985
      @maradasa985 Рік тому

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

  • @mdzakariamasud8326
    @mdzakariamasud8326 Місяць тому

    how to add authentication