Identify Top Key Values
This skill is used to inspect the actual data flowing into RT 2.0 event tables and analyze the distribution of stitching key values. It helps debug ID stitching issues by showing the most common values for each configured stitching key, including nulls and empty values that might cause problems. This is what's seen in plazma and may not be different than what the rt system ignores by configuration.
Use this skill when you want to understand:
- What ID values are actually present in your event data
- Distribution patterns of stitching keys
- Data quality issues (nulls, test values, invalid formats)
Requirements
In order to analyze key values we need:
- Parent segment ID - The RT-enabled parent segment to inspect
- Correctly configured tdx CLI or Treasure Data MCP server (@treasuredata/mcp-server)
- API key with database access to query the event tables
- Existing RT configuration with event tables and stitching keys configured
Process
This skill will:
- Inspect RT configuration to get event tables and stitching keys
- Generate dynamic query based on configured keys
- Analyze recent data (default: last 3 hours) for distribution patterns
- Show top values including nulls and potentially problematic values
Getting RT Configuration
First, inspect the current RT configuration to understand what to analyze:
# Get RT configuration via CDP API
tdx api "/audiences/<parent_segment_id>/realtime_setting" --type cdp --method GET
# Example response:
# {
# "keyColumns": [
# { "name": "td_client_id" }
# ],
# "eventTables": [
# { "database": "engage_in_app_message", "table": "be_users" }
# ],
# "status": "ok"
# }
Core Query Template
Based on your RT configuration, generate a query like this example for parent segment 508396:
RT Configuration:
- eventTables:
engage_in_app_message.be_users - keyColumns:
td_client_id
-- Most common values in last 3 hours (including nulls/empties)
SELECT
key_name,
value,
event_count
FROM (
SELECT 'td_client_id' as key_name, td_client_id as value, COUNT(*) as event_count
FROM engage_in_app_message.be_users
WHERE td_interval(time, '-3h/now')
GROUP BY td_client_id
)
ORDER BY event_count DESC
LIMIT 100;
Related Skills
- rt-config-id-stitching: Configure stitching keys and exclude patterns
- rt-config-setup: View current RT configuration
- id-graph-canonical-id-size: Analyze resulting canonical ID groups
- id-graph-ids-to-canonical-id: Check for over-stitching issues