Code With Anish
Code With Anish
  • Видео 11
  • Просмотров 6 191
Web Application Monitoring using Prometheus, Alert Manager, Loki & Grafana
In this video we will learn how to monitor a SpringBoot web application using Prometheus, Alert Manager, Loki & Grafana.
You can access the source code of this project from below repo:
github.com/codewithanish1988/springboot-app-monitoring
Video Contents
--------------
00:00:00 - Intro : What is Application Monitoring?
00:02:41 - Why Application Monitoring important?
00:06:31 - Types of Application Monitoring
00:08:37 - Application Monitoring Tools & Software
00:09:48 - Application Setup
00:14:50 - Prometheus Configuration
00:27:26 - Alert Manager Configuration
00:31:54 - Grafana Configuration
00:34:31 - Docker Compose Configuration
00:41:29 - Deploying the Application in Docker Container
00:44:20 - Tes...
Просмотров: 162

Видео

iOS Authentication Application
Просмотров 9252 месяца назад
In this video we will learn how to create an iOS Application for Authentication. This Application has an Authentication screen with Login, Sign-In and Sign-In with Google option. Once the user authenticates successfully from the Authentication screen, user will be navigated to Home screen, where the user has an option to call a micro-service using the authentication token generated from the aut...
AWS Serverless Application using Lambda, SQS, S3 And SES
Просмотров 8822 месяца назад
In this video we will learn how to create an AWS serverless application using Lambda, SQS, S3 And SES. This application can generate an Invoice PDF based on the request received in an SQS queue. The generated pdf is then uploaded to S3 and the corresponding S3 url is shared as an email message to the email id received in the SQS request. You can access the project source code from below repo: g...
Android Authentication Application
Просмотров 1,3 тыс.3 месяца назад
In this video we will learn how to create an Android Application for Authentication. This Application has an Authentication screen with Login, Sign-In and Sign-In with Google option. Once the user authenticates successfully from the Authentication screen, user will be navigated to Home screen, where the user has an option to call a micro-service using the authentication token generated from the...
Angular - NgRx Web Application | Security for Microservices using Springboot and OAuth2 - Part 4
Просмотров 7763 месяца назад
This project can be accessed from below GitHub link : github.com/orgs/microservice-oauth-security/repositories Video links of other parts: Part 1 - ruclips.net/video/5cyP4_2qHpM/видео.html Part 2 - ruclips.net/video/II1u63nqsHw/видео.html Part 3 - ruclips.net/video/UerHwlBymaw/видео.html
Demo Microservice | Security for Microservices using Springboot and OAuth2 - Part 3
Просмотров 953 месяца назад
This project can be accessed from below GitHub link : github.com/orgs/microservice-oauth-security/repositories Video links of other parts: Part 1 - ruclips.net/video/5cyP4_2qHpM/видео.html Part 2 - ruclips.net/video/II1u63nqsHw/видео.html Part 4 - ruclips.net/video/2ke9ttVs7lw/видео.html
User Authentication Service | Security for Microservices using Springboot and OAuth2 - Part 2
Просмотров 1973 месяца назад
This project can be accessed from below GitHub link : github.com/orgs/microservice-oauth-security/repositories Video links of other parts: Part 1 - ruclips.net/video/5cyP4_2qHpM/видео.html Part 3 - ruclips.net/video/UerHwlBymaw/видео.html Part 4 - ruclips.net/video/2ke9ttVs7lw/видео.html
Technical Design and Development of Security for Microservices using Springboot and OAuth2 - Part 1
Просмотров 1,7 тыс.4 месяца назад
This project can be accessed from below GitHub link : github.com/orgs/microservice-oauth-security/repositories Video links of other parts: Part 2 - ruclips.net/video/II1u63nqsHw/видео.html Part 3 - ruclips.net/video/UerHwlBymaw/видео.html Part 4 - ruclips.net/video/2ke9ttVs7lw/видео.html
Springboot Application Deployment In Kubernetes - Part 1
Просмотров 434 месяца назад
The project can be found in git repo : github.com/codewithanish1988/springboot-web-k8s Docker Desktop For Windows: docs.docker.com/desktop/install/windows-install/ Docker Hub: hub.docker.com/ AWS Console: aws.amazon.com/console/
Springboot Application Deployment In Kubernetes - Part 2
Просмотров 314 месяца назад
The project can be found in git repo : github.com/codewithanish1988/springboot-web-k8s Docker Desktop For Windows: docs.docker.com/desktop/install/windows-install/ Docker Hub: hub.docker.com/ AWS Console: aws.amazon.com/console/

Комментарии

  • @krubzzz
    @krubzzz 8 дней назад

    How do you manage user details updates, for instance, if a user wants to update his password? Which service has the responsibility of persisting the new values? To which service does the gateway forward this request?

    • @CodeWithAnish
      @CodeWithAnish 6 дней назад

      Thanks for the question.. In this tutorial we discussed only the options to SignIn and Login using username/password. Currently I have not provided the functionality to update the password. But if required we can create an endpoint here github.com/microservice-oauth-security/user-authentication-service/tree/master/src/main/java/org/codewithanish/controller and implement a service layer to update the password. This service layer can in turn call github.com/microservice-oauth-security/user-authentication-service/blob/master/src/main/java/org/codewithanish/repository/UserDetailRepository.java to update this password in the database.

  • @user-ql1rg9mj9d
    @user-ql1rg9mj9d Месяц назад

    great content

  • @user-ql1rg9mj9d
    @user-ql1rg9mj9d 3 месяца назад

    so good content

  • @TestTest-no2gy
    @TestTest-no2gy 4 месяца назад

    Nice content. If you don't mind can you share source with me?

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

      Yes sure, as seen in the technical design, I have two more modules to be completed (microservice and frontend).. once completed i will provide the the completed source code in description..