Middleware
To send OpenTelemetry metrics and traces generated by Shield360 from your AI Application to Middleware, follow the below steps.
1. Get your Credentials
-
Sign in to your Middleware account: Go to Middleware Dashboard
-
Navigate to API Keys: Go to Settings → API Keys (Direct Link)
-
Copy your credentials:
- MW_API_KEY: Your Middleware API key for authentication
- MW_TARGET: Your Middleware target URL endpoint
Save these values - you’ll need them for configuration.
2. Instrument your application
For direct integration into your Python applications:
import shield360
shield360.init( otlp_endpoint="MW_TARGET", application_name="YOUR_APPLICATION_NAME", otlp_headers={ "Authorization": "MW_API_KEY", "X-Trace-Source": "shield360", })Replace:
MW_TARGETwith your Middleware target URL from Step 1.- Example:
https://abcd.middleware.io:443
- Example:
MW_API_KEYwith your Middleware API key from Step 1.- Example:
dxyxsdojzrgpsvizzzcsvhrwnmzqdsdsd
- Example:
YOUR_APPLICATION_NAMEwith your application name.
import shield360
shield360.init()Set these environment variables:
export OTEL_EXPORTER_OTLP_ENDPOINT="MW_TARGET"export OTEL_SERVICE_NAME="YOUR_APPLICATION_NAME"export OTEL_EXPORTER_OTLP_HEADERS="Authorization=MW_API_KEY,X-Trace-Source=shield360"Replace:
MW_TARGETwith your Middleware target URL from Step 1.- Example:
https://abcd.middleware.io:443
- Example:
MW_API_KEYwith your Middleware API key from Step 1.- Example:
dxyxsdojzrgpsvizzzcsvhrwnmzqdsdsd
- Example:
YOUR_APPLICATION_NAMEwith your application name.
Refer to the Shield360 SDK configuration reference for more advanced configurations and use cases.
For zero-code auto-instrumentation via command line:
# Using CLI argumentsshield360-instrument \ --otlp-endpoint "MW_TARGET" \ --otlp-headers "Authorization=MW_API_KEY,X-Trace-Source=shield360" \ --service-name "YOUR_APPLICATION_NAME" \ --deployment-environment "production" \ python app.pyReplace:
MW_TARGETwith your Middleware target URL from Step 1.- Example:
https://abcd.middleware.io:443
- Example:
MW_API_KEYwith your Middleware API key from Step 1.- Example:
dxyxsdojzrgpsvizzzcsvhrwnmzqdsdsd
- Example:
YOUR_APPLICATION_NAMEwith your application name.
# Set environment variables (takes precedence over CLI args)export OTEL_EXPORTER_OTLP_ENDPOINT="MW_TARGET"export OTEL_EXPORTER_OTLP_HEADERS="Authorization=MW_API_KEY,X-Trace-Source=shield360"export OTEL_SERVICE_NAME="YOUR_APPLICATION_NAME"export OTEL_DEPLOYMENT_ENVIRONMENT="production"
# Run your applicationshield360-instrument python app.pyReplace:
MW_TARGETwith your Middleware target URL from Step 1.- Example:
https://abcd.middleware.io:443
- Example:
MW_API_KEYwith your Middleware API key from Step 1.- Example:
dxyxsdojzrgpsvizzzcsvhrwnmzqdsdsd
- Example:
YOUR_APPLICATION_NAMEwith your application name.
Refer to the Shield360 SDK configuration reference for more advanced configurations and use cases.
3. Visualize in Middleware
Once your LLM application is instrumented, you can explore the telemetry data in Middleware:
- Navigate to LLM Observability: Go to your Middleware Dashboard and click on LLM Observability in the sidebar
- Explore AI Operations: View your AI application traces including:
- LLM request traces with detailed timing
- Token usage and cost information
- Vector database operations
- Model performance analytics
- Request/response payloads (if enabled)
- Custom Dashboards: Create custom dashboards for your specific LLM metrics
- Alerting: Set up alerts for LLM performance anomalies and cost thresholds
- Performance Analysis: Analyze latency, throughput, and resource usage patterns
For detailed information on LLM Observability features, consult the Middleware LLM Observability Documentation.