Security Overview
NeuralPath AI — Azure cloud infrastructure monitoring
Last sync: loading...
Critical Findings
3
Requires immediate action
High Findings
3
Elevated risk
Medium Findings
2
Needs attention
Resources Monitored
—
Azure services
Model Endpoints
47
44 healthy · 3 degraded
SIEM Connection
✓ Active
Azure tenant connected
Top Open Findings
View all →
Security Findings
All open vulnerabilities across NeuralPath Azure infrastructure
ML Model Health
Model drift monitoring, accuracy tracking, anomaly detection
Infrastructure Status
Inference Metrics
24-hour request volume, latency, and error rates
Requests (24h)
—
Avg Latency P50
—
milliseconds
Latency P99
—
milliseconds
Security Events (24h)
—
unauthorized attempts
Inference Volume (Last 24h)
Security Event Breakdown
Service Principal
Azure cross-account read-only access for NeuralPath SIEM integration
API Key (Service Principal Token)
This key grants read-only access to your NeuralPath SIEM data. Pass it as the
X-API-Key header or as a Bearer token.
sk_np_••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
| Client | NeuralPath AI |
| Scope | read:siem |
| Azure Tenant ID | a1b2c3d4-e5f6-7890-abcd-ef1234567890 |
| Service Principal | np-svc-principal-01 |
| Role | Reader (Azure Management API) |
| Expiry | Never (revocable on demand) |
API Endpoints
# Verify your API key
POST https://neuralpath.polsia.app/api/client/neuralpath/verify-key
Body: { "api_key": "sk_np_..." }
# Get current security findings
GET https://neuralpath.polsia.app/api/client/neuralpath/findings
Header: X-API-Key: sk_np_...
# Get ML model monitoring metrics
GET https://neuralpath.polsia.app/api/client/neuralpath/metrics
Header: X-API-Key: sk_np_...
# Get connection status
GET https://neuralpath.polsia.app/api/client/neuralpath/status
Header: X-API-Key: sk_np_...
IAM Trust Policy (Azure)
Assign the following role to allow NeuralPath to read your Azure telemetry:
# Assign Reader role to NeuralPath service principal
az role assignment create \
--assignee "np-svc-principal-01" \
--role "Reader" \
--scope "/subscriptions/YOUR_SUBSCRIPTION_ID"
# Also grant Security Reader for Defender for Cloud findings
az role assignment create \
--assignee "np-svc-principal-01" \
--role "Security Reader" \
--scope "/subscriptions/YOUR_SUBSCRIPTION_ID"
Azure Infrastructure (Bicep)
NeuralPath AI — ML platform resource group + networking template
neuralpath-ml-platform.bicep
Deploys NeuralPath's Azure ML infrastructure: resource group, VNet, AKS cluster, Azure ML workspace, Key Vault, storage, and the NeuralPath service principal with Reader role.
Deployment Commands
# Login to Azure
az login --tenant a1b2c3d4-e5f6-7890-abcd-ef1234567890
# Create resource group
az group create --name neuralpath-ml-rg --location eastus
# Deploy Bicep template
az deployment group create \
--resource-group neuralpath-ml-rg \
--template-file neuralpath-ml-platform.bicep \
--parameters environmentName=prod budgetAmountUsd=50
# Verify deployment
az deployment group show \
--resource-group neuralpath-ml-rg \
--name neuralpath-ml-platform \
--query "properties.provisioningState"