marinehero / ElasticCore

Logging with ElasticSearch, Kibana, .NET Core 2.1 web api and Serilog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ElasticCore

Logging with ElasticSearch, Kibana, .NET Core 2.1 and Serilog

What is ElasticSearch?

In simple terms, ElasticSearch is an open source database that is well suited to indexing logs and analytical data.

What is Kibana?

Kibana is an open source data visualization user interface for ElasticSearch. Think of ElasticSearch as the database and Kibana as the web user interface which you can use to build graphs and query data in ElasticSearch.

What is Serilog?

Serilog is a plugin for ASP.NET Core that makes logging easy. There are various sinks available for Serilog - for instance you get plain text, SQL and ElasticSearch sinks to name a few.

How to run the project

The steps are very easy you only have to

  • Check if .NET Core sdk version 2.1 installed on your system, you can download it from Here then check if the instalation has gone correctly by typing

    user$ dotnet --version
    user$ 2.1.402
    
  • Restore the dependencies by typing the commande

    user$ dotnet restore
    
  • Apply migrations

    user$ docker pull nshou/elasticsearch-kibana
    user$ docker run -d -p 9200:9200 -p 5601:5601 nshou/elasticsearch-kibana
    
  • Finnaly go and run the app by typing

    user$ dotnet run
    
  • Support me by making a for the repo and thank you :D , If you want to contribute to the project and make it better, your help is very welcome.

Screenshots

image

image

About

Logging with ElasticSearch, Kibana, .NET Core 2.1 web api and Serilog

License:MIT License


Languages

Language:C# 100.0%