๐ Continuous Intelligence Portfolio¶
๐ค Abdellah Boudlal¶
๐ 2026-04
๐ Overview¶
This page summarizes my work on Continuous Intelligence (CI) projects. Throughout this course, I built a complete pipeline to monitor systems, detect anomalies, analyze trends, and identify drift.
๐ง 1. Professional Project¶
๐ Repository: ๐ https://github.com/Aboudlal/cintel-06-continuous-intelligence
โ๏ธ Tools & Technologies¶
- Python
- Polars
- Logging system
- GitHub
๐ Description¶
This project implements a full continuous intelligence pipeline that monitors system performance using metrics like requests, errors, and latency.
๐จ 2. Anomaly Detection¶
๐ Repository: ๐ https://github.com/Aboudlal/cintel-02-static-anomalies
๐งช Techniques¶
Anomalies are detected using predefined thresholds.
For example, if error_rate or latency exceeds a limit โ anomaly is triggered.
๐ Artifacts¶
๐ https://github.com/Aboudlal/cintel-02-static-anomalies/tree/main/artifacts
These files contain logs and anomaly reports.
๐ก Insights¶
This helped identify when the system performance becomes unstable.
๐ 3. Signal Design¶
๐ Repository: ๐ https://github.com/Aboudlal/cintel-03-signal-design
๐ Signals Created¶
error_rate = errors / requestsavg_latency_ms = total_latency_ms / requests
๐ Artifacts¶
๐ https://github.com/Aboudlal/cintel-03-signal-design/tree/main/artifacts
๐ก Insights¶
Derived signals provide clearer insights than raw data.
๐ 4. Rolling Monitoring¶
๐ Repository: ๐ https://github.com/Aboudlal/cintel-04-rolling-monitoring
๐ Techniques¶
Used rolling windows to compute: - Rolling mean - Rolling standard deviation
๐ Artifacts¶
๐ https://github.com/Aboudlal/cintel-04-rolling-monitoring/tree/main/artifacts
๐ก Insights¶
Helped detect trends and reduce noise in the data.
๐ 5. Drift Detection¶
๐ Repository: ๐ https://github.com/Aboudlal/cintel-05-drift-detection
๐ Techniques¶
Compared current data to a baseline. Drift is detected when values stay above/below baseline for multiple windows.
๐ Artifacts¶
๐ https://github.com/Aboudlal/cintel-05-drift-detection/tree/main/artifacts
๐ก Insights¶
Identified long-term system changes and performance degradation.
๐ค 6. Continuous Intelligence Pipeline¶
๐ Repository: ๐ https://github.com/Aboudlal/cintel-06-continuous-intelligence
๐ Techniques Combined¶
- Signal design
- Anomaly detection
- Rolling monitoring
- Drift detection
๐ Artifacts¶
๐ https://github.com/Aboudlal/cintel-06-continuous-intelligence/tree/main/artifacts
๐ Assessment¶
The pipeline gives a clear view of system health and helps detect issues early for better decision-making.
โ Final Thoughts¶
This project helped me understand how to monitor systems in real-time and make data-driven decisions using continuous intelligence.