Understanding monitoring concepts
When using Azure Pipelines, there are different key concepts to keep in mind when thinking about monitoring:
- Pipeline status: This ensures that pipelines are always running and without issues while checking for failed builds, failed tests, or errors during deployments.
- Code quality metrics: This involves verifying metrics such as code coverage, code complexity, and code smells to identify potential performance or functionality issues before deploying applications.
- Security vulnerabilities: This involves assessing and measuring security vulnerabilities in the application code, dependencies, or pipeline configuration. This helps ensure that the pipeline is secure and security risks are not introduced in the application.
- Resource utilization: This helps ensure that the build and release pipelines are not consuming high CPU or the memory of agents or executing the pipelines for extended periods, which diminishes their ability to run...