In 2026, infrastructure logs are sensitive "fingerprints." Aura Ops allows you to deploy a Private AI Diagnostic Engine within your own AWS perimeter, ensuring data never leaves your control. We aim to bring "Prism-simplicity" to disaggregated Nutanix and Pure stacks without jumping between consoles.
- The Scraper (Lambda): A lightweight Python filter identifying source (Nutanix vs. Pure).
- The Brain (Llama 3.2): A private model performing Root Cause Analysis (RCA).
- The Hook (Remediation): Pre-mapped CLI commands (ncli, purevol, kubectl) for instant resolution.
- Deploy: Click the Launch Stack button above.
- Connect: Copy the
AuraOpsEndpointfrom CloudFormation Outputs. - Activate: Paste into Aura Ops Utility Settings.
If your Lambda fails immediately, your AWS account likely hasn't "unlocked" the AI model yet.
- Navigate: Go to Bedrock Model Access in
us-east-1. - Edit: Click the orange Edit button (top right).
- Approve: Check Meta -> Llama 3.2 1B Instruct and click Save changes.
graph TD
A[Log Source: Nutanix/Pure] --> B[AWS Lambda: Aura Ops Engine]
B --> C{Surgical Scraper}
C -- Storage --> D[Pure Storage Logic]
C -- Compute --> E[Nutanix AOS Logic]
D & E --> F[Bedrock: Llama 3.2 1B]
F --> G[Structured JSON Response]
G --> Hook[Remediation Hook]
We have successfully integrated the "Surgical Scraper" module using the Amazon Bedrock Converse API. This architecture utilizes Inference Profiles to ensure stability and zero-token-looping.
| System | Log Source | Status | Focus Area |
|---|---|---|---|
| Nutanix AOS | syslog / logbay |
Active | Metadata (Cassandra), Data Path (Stargate) |
| Pure Storage | purity//fa alerts |
Active | CBT Drift, Snapshot Consistency |
| Kubernetes | kubectl describe |
Active | ImagePullBackOff, OOMKills |
You can pipe cluster outputs directly into the engine for a sub-500ms RCA.
Test the live endpoint:
curl -X POST https://<YOUR-LAMBDA-URL>/ \
-H "Content-Type: text/plain" \
-d "Error: Purity//FA reported CBT drift on volume 'vol-01' during snapshot"Structured JSON Response:
"rca": "The root cause is a corrupted volume file (vol-01) causing snapshot drift.",
"severity": "Critical",
"category": "Storage",
"remediation_hook": "purevol snap create --suffix aura-ops-recovery vol-01",
"source": "Aura-Ops-Engine-v2"- Initial PoC with Llama 3.2 1B
- Migration to Bedrock Converse API & Inference Profiles
- Integration with Pure Storage Telemetry for CBT drift detection
- Automated remediation hooks for Nutanix/Pure
- Multi-region failover support for Bedrock Inference Profiles.
- Permissions: Ensure your role has
bedrock:InvokeModelaccess. - Memory: Recommended 512MB for optimal inference speed.
- Environment: Set
AURA_HOOK_URLtononefor initial testing.
MIT - Created and maintained by the engineering team at Rack2Cloud.