AGIOps Pipeline #2082
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AGIOps Pipeline | |
on: | |
schedule: | |
- cron: '*/30 * * * *' # Runs every 30 minutes | |
jobs: | |
monitor-agi: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install prometheus_client | |
- name: Run AGI Monitoring Script | |
run: | | |
python src/agiops/monitoring/agi_monitor.py |