Custom Pipeline Example
This example demonstrates how to build a custom pipeline using only specific skills.Scenario
You only want to run the anomaly detection and summary generation on existing metrics data.Custom Pipeline Script
Create a custom Python script:Running Specific Skills
You can also run individual skills:Skill Dependencies
| Skill | Requires | Produces |
|---|---|---|
logsource_discovery | config/log_sources.yaml | sources |
fetch_logs | sources | logs |
parse_logs | logs, patterns | events |
aggregate_logs | events, baseline | metrics |
detect_anomalies | metrics, thresholds | anomalies |
high_hypothesis | anomalies, metrics | hypotheses |
generate_summary | metrics, anomalies, hypotheses | summary |
recommend_actions | anomalies, hypotheses | recommendations |
