Configure runtime security metrics
Set up a Traceloop connection and API key for prompt injection, offensive content, sensitive data input, and sensitive data anonymized trace data from external AI servers. Review data privacy for sensitive data patterns to detect in LLM input and output.
Before you begin
Role required: admin
Install the open-source Traceloop SDK. In a terminal window, run this command:
pip install traceloop-sdk
After you install Traceloop SDK, you can customize the following code to initialize the Traceloop tracer:
import os from openai
import OpenAI from traceloop.sdk
import Traceloop from traceloop.sdk.decorators
import workflow task
# Initialize
Traceloop SDKTraceloop.init(app_name="joke_generation_service", disable_batch=True)
client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"))For more information, see Traceloop OpenLLMetry for Python.Procedure
-
Configure a trace connection for every external AI system for which you want to show runtime metrics.
For more information, see Configuring trace connections.
-
Generate an API key to authenticate trace data requests from your external AI system.
- Navigate to All > Connections & Credentials > Credentials.
-
Create credentials of type API Key Credentials.
Fill out these fields and select Submit.
Table 1. API Key form fields Field Description Name Traceloop API Key Applies to All MID servers Active Selected. Order 100 API Key Header Authorization API Key Prefix Bearer API Key [Your Traceloop API key] Credential alias Locked.
For more information, see API key credentials. -
Link the API key to your trace connection.
- Navigate to All > Connections & Credentials > Connections.
-
From the connections list, select the Traceloop Warehouse connection.
Fill out these fields and select Update.
Table 2. HTTP(s) Connection form fields Field Description Name Traceloop Warehouse Active Selected. Credential Traceloop API Key (from step 2b) Domain global Connection alias sn_ai_security.Traceloop_API URL builder N/A Connection URL https://api.traceloop.com Use MID server N/A Connection timeout N/A The scheduled job will now automatically pull runtime metrics from the linked Traceloop environment.
For more information, see Create an HTTP(s) connection. -
Configure the Traceloop SDK in your agent code by adding these ServiceNow attributes when initializing Traceloop.
These are unique user-defined identifiers for tracking.
For more information about configuring Traceloop in your agent, see Traceloop - Guardrails.Traceloop.init( app_name="your_agent_name", api_key=traceloop_api_key, resource_attributes={ "sn.aict.system.id": "your_agent_system_id", "sn.aict.system.name": "your_agent_name", "sn.aict.system.version": "1.0.0", "sn.aict.system.source": "your_source" } ) -
To review data privacy, in AI Control Tower, navigate to Settings > Rules and templates > Security > Data Privacy.
This section shows the data patterns enabled in Data Privacy to detect and anonymize information in LLM prompts. Use this view as a quick reference when troubleshooting sensitive data charts. This feature requires the Data privacy plugin to be installed. For more information on how the data is sent and stored, see User data usage policy.
-
Return to the AI Control Tower Security tab and refresh the page.
Select the Runtime tab and verify that metrics are populated.