4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
91 lines
2.9 KiB
Python
91 lines
2.9 KiB
Python
"""
|
|
CloudWatch Demo Orchestrator (AWS cloud).
|
|
|
|
Run with: make cloudwatch-demo
|
|
"""
|
|
|
|
import sys
|
|
import traceback
|
|
from datetime import UTC, datetime
|
|
|
|
from tests.e2e.cloudwatch_demo import use_case
|
|
from tests.utils.alert_factory import create_alert
|
|
from tests.utils.cloudwatch_logger import log_error_to_cloudwatch
|
|
from tests.utils.conftest import get_test_config
|
|
|
|
|
|
def main(test_name: str = "demo-pipeline-empty-file-error") -> int:
|
|
config = get_test_config()
|
|
region = config["aws_region"]
|
|
|
|
run_id = f"run_{datetime.now(UTC).strftime('%Y%m%d_%H%M%S')}"
|
|
|
|
try:
|
|
result = use_case.main()
|
|
print(f"{result['pipeline_name']} succeeded: {result['rows_processed']} rows")
|
|
return 0
|
|
|
|
except Exception as e:
|
|
error_traceback = traceback.format_exc()
|
|
pipeline_name = use_case._pipeline_context["pipeline_name"]
|
|
|
|
cloudwatch_context = log_error_to_cloudwatch(
|
|
error=e,
|
|
error_traceback=error_traceback,
|
|
pipeline_name=pipeline_name,
|
|
run_id=run_id,
|
|
test_name=test_name,
|
|
region=region,
|
|
)
|
|
if cloudwatch_context["logs_written"]:
|
|
print(f"Logged to CloudWatch: {cloudwatch_context['log_group']}")
|
|
else:
|
|
print(
|
|
f"CloudWatch write skipped (missing IAM write permissions): "
|
|
f"{cloudwatch_context['log_group']}"
|
|
)
|
|
print(f" {cloudwatch_context['cloudwatch_url']}\n")
|
|
|
|
raw_alert = create_alert(
|
|
pipeline_name=pipeline_name,
|
|
run_name=run_id,
|
|
status="failed",
|
|
timestamp=datetime.now(UTC).isoformat(),
|
|
annotations={
|
|
"cloudwatch_log_group": cloudwatch_context["log_group"],
|
|
"cloudwatch_log_stream": cloudwatch_context["log_stream"],
|
|
"cloudwatch_logs_url": cloudwatch_context["cloudwatch_url"],
|
|
"cloudwatch_region": region,
|
|
"error": cloudwatch_context["error_message"],
|
|
"context_sources": "cloudwatch",
|
|
},
|
|
)
|
|
|
|
from platform.observability.trace.hook import traceable
|
|
from surfaces.cli.investigation import run_investigation_cli
|
|
|
|
print("Running investigation...")
|
|
|
|
@traceable(
|
|
run_type="chain",
|
|
name=f"test_cloudwatch_demo - {raw_alert['alert_id'][:8]}",
|
|
metadata={
|
|
"alert_id": raw_alert["alert_id"],
|
|
"pipeline_name": pipeline_name,
|
|
"run_id": run_id,
|
|
"cloudwatch_log_group": cloudwatch_context["log_group"],
|
|
"log_stream": cloudwatch_context.get("log_stream"),
|
|
},
|
|
)
|
|
def run_with_alert_id():
|
|
return run_investigation_cli(raw_alert=raw_alert)
|
|
|
|
run_with_alert_id()
|
|
|
|
print(f"\nCloudWatch logs: {cloudwatch_context['cloudwatch_url']}")
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|