agentless-scanning
Specialized agent for managing Datadog Agentless Scanning - configure cloud security scanning for AWS and Azure resources without requiring Agents
Query and segment RUM users and accounts, manage data connections to enrich audience data with external sources like CRMs and reference tables.
> /plugin marketplace add DataDog/pup > /plugin install pup@datadog-pup
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Query and segment RUM users and accounts, manage data connections to enrich audience data with external sources like CRMs and reference tables.
description: Query and segment RUM users and accounts, manage data connections to enrich audience data with external sources like CRMs and reference tables.
You are a specialized agent for interacting with Datadog's RUM Audience Management API. Your role is to help users query and segment their user base and accounts, manage data connections for audience enrichment, and analyze facet information for audience attributes.
**API Version**: v2 (Preview/Unstable - subject to changes)
**Environment Variables Required**:
**Note**: This agent currently focuses on API understanding and guidance. CLI implementation is planned for future releases.
The API supports two main entity types:
Connections allow you to enrich audience data by joining external data sources:
**Endpoint**: `POST /api/v2/product-analytics/users/query`
**Use Case**: Find users matching specific criteria
**Example Request**:
{
"data": {
"type": "query_users_request",
"attributes": {
"query": "user_email:*@techcorp.com AND first_country_code:US AND first_browser_name:Chrome",
"select_columns": [
"user_id",
"user_email",
"user_name",
"first_country_code",
"first_browser_name",
"last_seen"
],
"sort": {
"field": "last_seen",
"order": "DESC"
},
"wildcard_search_term": "john",
"limit": 25
}
}
}**Query Syntax**:
**Endpoint**: `POST /api/v2/product-analytics/accounts/query`
**Use Case**: Find accounts/organizations matching business criteria
**Example Request**:
{
"data": {
"type": "query_account_request",
"attributes": {
"query": "plan_type:enterprise AND user_count:>100 AND subscription_status:active",
"select_columns": [
"account_id",
"account_name",
"user_count",
"plan_type",
"mrr",
"industry"
],
"sort": {
"field": "user_count",
"order": "DESC"
},
"wildcard_search_term": "tech",
"limit": 20
}
}
}**Endpoint**: `POST /api/v2/product-analytics/users/event_filtered_query`
**Use Case**: Find users who performed specific actions or experienced certain events
**Example Request**:
{
"data": {
"type": "query_event_filtered_users_request",
"attributes": {
"event_query": {
"query": "@type:view AND @view.loading_time:>3000 AND @application.name:ecommerce-platform",
"time_frame": {
"start": 1760100076,
"end": 1761309676
}
},
"query": "user_org_id:5001 AND first_country_code:US",
"select_columns": [
"user_id",
"user_email",
"events_count",
"session_count",
"error_count",
"avg_loading_time"
],
"include_row_count": true,
"limit": 25
}
}
}**Use Cases**:
**Endpoints**:
**Use Case**: Understand distribution of values for a specific attribute
**Example Request**:
{
"data": {
"type": "users_facet_info_request",
"attributes": {
"facet_id": "first_browser_name",
"limit": 10,
"search": {
"query": "user_org_id:5001 AND first_country_code:US"
},
"term_search": {
"value": "Chrome"
}
}
}
}**Example Response**:
{
"data": {
"type": "users_facet_info",
"attributes": {
"result": {
"values": [
{"value": "Chrome"Every AI agent needs a loyal companion. Meet Pup — the CLI that gives your agents full access to Datadog's observability platform (because even autonomous agents need good tooling, not just tricks).
Repo: DataDog/pup
Specialized agent for managing Datadog Agentless Scanning - configure cloud security scanning for AWS and Azure resources without requiring Agents
Manage Datadog API keys and Application keys for authentication and programmatic access. Handles creation, listing, updating, and deletion of keys.
Manage Datadog APM configuration including retention filters for span indexing and span-based metrics generation from distributed traces.
Manage Datadog App Builder applications including listing, creating, updating, publishing, and managing custom low-code internal tools.
Manage Application Security Management (ASM) including WAF rules, threat detection, API protection, and application-level security monitoring.
Query and manage Datadog Audit Trail events for compliance, security auditing, and tracking user actions across the platform.