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 - Testing Actuator endpoint
00:45:15 - Grafana UI Walkthrough
00:48:19 - Grafana Dashboard for Metrics
00:56:30 - Grafana Dashboard for Logs
00:58:59 - Testing the Alerts
01:11:00 - Conclusion
มุมมอง: 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.3K3 หลายเดือนก่อน
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 - th-cam.com/video/5cyP4_2qHpM/w-d-xo.html Part 2 - th-cam.com/video/II1u63nqsHw/w-d-xo.html Part 3 - th-cam.com/video/UerHwlBymaw/w-d-xo.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 - th-cam.com/video/5cyP4_2qHpM/w-d-xo.html Part 2 - th-cam.com/video/II1u63nqsHw/w-d-xo.html Part 4 - th-cam.com/video/2ke9ttVs7lw/w-d-xo.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 - th-cam.com/video/5cyP4_2qHpM/w-d-xo.html Part 3 - th-cam.com/video/UerHwlBymaw/w-d-xo.html Part 4 - th-cam.com/video/2ke9ttVs7lw/w-d-xo.html
Technical Design and Development of Security for Microservices using Springboot and OAuth2 - Part 1
มุมมอง 1.7K4 หลายเดือนก่อน
This project can be accessed from below GitHub link : github.com/orgs/microservice-oauth-security/repositories Video links of other parts: Part 2 - th-cam.com/video/II1u63nqsHw/w-d-xo.html Part 3 - th-cam.com/video/UerHwlBymaw/w-d-xo.html Part 4 - th-cam.com/video/2ke9ttVs7lw/w-d-xo.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 9 วันที่ผ่านมา

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