Logging with ElasticSearch, Kibana, Serilog using ASP.NET Core Docker

In this article, I'll show you how to set up and run your application using ElasticSearch, Kibana and Serilog. Before diving deep into implementation, let's understand the basics of ElasticSearch, Kibana and Serilog. You can find the source code here What is ElasticSearch? Elasticsearch is a distributed, open source search and analytics engine for all …

Continue reading Logging with ElasticSearch, Kibana, Serilog using ASP.NET Core Docker

Exploring Redis cache with Docker using asp.net core- Part 2

Recap In the previous article, we have witnessed about adding Redis to the Docker container and learnt about connecting Redis container with asp.net core web-api. If you haven't read my previous article yet, I highly recommend you to read it by clicking here. DockerFile Before going into details of creating a DockerFile, let's deep dive …

Continue reading Exploring Redis cache with Docker using asp.net core- Part 2

Exploring Redis cache with Docker using asp.net core- Part 1

Recap In my previous article, we have gone through the concept of Docker and Docker vs Container. In case if you haven't read yet, I encourage you to read from here. Prerequisites Docker desktop installed on your local machineVisual Studio/ Visual Studio Code Intro Redis cache is an in-memory data structure store and can be …

Continue reading Exploring Redis cache with Docker using asp.net core- Part 1