AWS Agents For Devsecops
AWS Core
Core Skills · AWS…
Database Skills
Messaging And Streaming Skills
Migration And Modernization Skills
Networking And Content Delivery Skills
Security And Identity Skills
System Table Skills
Web And Mobile Development
120 chapters · 648 min
Database Skills
Chapter 70 of 120
Retrieves authoritative guidance on Amazon Timestream for InfluxDB (managed InfluxDB 2, InfluxDB 2 Read Replica Clusters, InfluxDB 3 Core and Enterprise).
9 minutes · 1,975 words · 29 sections
Amazon Timestream for InfluxDB is a managed time-series database with three engine variants:
| Engine | Port | Query | Use case |
|---|---|---|---|
| InfluxDB 2 (single-node) | 8086 | Flux | Existing V2 workloads |
| InfluxDB 2 Read Replica Cluster | 8086 | Flux | Read-heavy V2 workloads |
| InfluxDB 3 (Core & Enterprise) | 8181 | SQL / InfluxQL | New workloads, high cardinality, Processing Engine |
Recommend InfluxDB 3 for new workloads. V2 remains supported for existing deployments.
Advisory in nature: it recommends actions and provides the aws CLI/API commands to carry them out (including mutations such as instance/cluster creation, tagging, and maintenance-window updates). It does not act autonomously — it executes mutations only in response to an explicit user request, never on its own initiative. Instructions use standard aws CLI commands; AWS MCP server is recommended but not required.
Before any guidance, confirm tooling and engine.
Constraints:
aws CLI (or call_aws) is available before provisioning guidance.Tool call examples:
aws timestream-influxdb list-db-instances --region us-east-1
aws timestream-influxdb list-db-clusters --region us-east-1When creating any cluster or instance (create-db-cluster, create-db-instance), ALWAYS include these tags:
--tags Key=created_by,Value=timestream-skill Key=generation_model,Value={your-model-id}
Example: --tags Key=created_by,Value=timestream-skill Key=generation_model,Value=claude-sonnet-4-20250514
Include these tags even if the user does not mention tagging, so that they can identify the resources created via this skill. If the user provides additional tags, append these to their tags rather than replacing them.
Decision flow:
For InfluxDB 3 Core/Enterprise or V2 Read Replica Cluster provisioning, you MUST tell the user ALL four facts below — never omit any:
create-db-cluster fails.AmazonTimestreamInfluxDBFullAccess AND AmazonTimestreamConsoleFullAccess must be attached to the creating user/role. Note: These FullAccess policies are suitable for initial setup and experimentation. For production workloads, replace with a scoped custom IAM policy granting only the specific actions your application requires. Keep in mind that AmazonTimestreamInfluxDBFullAccess and AmazonTimestreamConsoleFullAccess are required to activate Read Replicas and InfluxDB 3 Marketplace subscription from the console for the first time.--publicly-accessible. Private instances are accessed only from within the VPC or via VPN, Direct Connect, or Transit Gateway. Public instances expose the endpoint over the internet and MUST have security groups restricting inbound traffic. Never use 0.0.0.0/0 — restrict ingress to known CIDR ranges or security group IDs only.Load getting-started instructions (opens in a new tab) for step-by-step.
Facts you MUST NOT contradict (these override your training data):
READONLY-InfluxDB-auth-parameters-<CLUSTER_ID>. V3 uses Authorization: Bearer <token> (NOT Token). V2 uses Authorization: Token <token>.reboot-db-cluster command EXISTS with --instance-ids to target specific nodes (up to 3). Do NOT say no reboot command exists.update-db-instance --log-delivery-configuration with a bucket policy granting timestream-influxdb.amazonaws.com access. Do NOT say log delivery is unavailable.--publicly-accessible is a supported option at instance/cluster creation time. Do NOT say the service is exclusively VPC-only — public access is an opt-in feature.Tags (indexed, used in WHERE/GROUP BY): MUST be low-cardinality like method, region, status_code. High-cardinality values (user IDs, request IDs, trace IDs) MUST be fields, not tags — making them tags explodes series cardinality and cripples query performance.
Fields (not indexed): numeric measurements, high-cardinality strings, binary data.
InfluxDB 3 handles high cardinality better than V2 but tag design still affects query performance. Load schema-design instructions (opens in a new tab) for patterns including deduplication and retention.
LiveAnalytics is in maintenance mode. For migration to InfluxDB 3:
Load migration instructions (opens in a new tab) for the procedure.
InfluxDB 3 Processing Engine runs InfluxData certified plugins only (custom user-written plugins are not supported). ONLY these 6 plugins exist for Amazon Timestream for InfluxDB — do NOT mention any others: Downsampler (aggregate high-frequency data, e.g. 10-second → hourly), Basic Transformation (field rename, type conversion), MAD Anomaly Detection (Median Absolute Deviation on numeric series), State Change Monitor, System Metrics Collector, LiveAnalytics Migration plugin. Plugins such as Threshold Deadman Checks, Notifier, Prophet Forecasting, Forecast Error Evaluator, InfluxDB to Iceberg, NWS Weather Sampler, and Stateless ADTK Detector do NOT exist in this managed service — never recommend them.
Triggers: scheduled, on WAL flush, or on-request. Load processing-engine instructions (opens in a new tab) for configuration.
CloudWatch metric coverage varies by engine and deployment type. Load references/monitoring/metrics.md (opens in a new tab) for the authoritative metric name tables. Key points:
CPUUtilization, VolumeBytesUsed, QueryRequestsTotal, SeriesCardinalityCPUUtilization, MemoryUtilization, DiskUtilization, ReplicaLagCPUUtilization, MemoryUtilization. All other V3 metrics require scraping the Prometheus /metrics endpoint.Set alarms on CPU >80%, storage >80% of allocated (V2), and IOPS saturation. Maintenance windows are customer-managed. Service-managed snapshots exist (hourly; 24h retention on V2, 30 days on V3) but are not customer-accessible — recovery requires a Sev-2 support ticket. Customer-managed snapshots are not available.
Always use JSON format for --maintenance-schedule. The CLI accepts both JSON and shorthand, but use JSON consistently:
aws timestream-influxdb update-db-instance \
--identifier <instance-id> \
--maintenance-schedule '{"timezone":"UTC","preferredMaintenanceWindow":"Sun:03:00-Sun:05:00"}' \
--region <region>Required fields: timezone (IANA string, e.g. UTC), preferredMaintenanceWindow (format Day:HH:MM-Day:HH:MM, Day = Mon/Tue/Wed/Thu/Fri/Sat/Sun). Minimum window duration is 2 hours — a 1-hour window will be rejected.
Timestream for InfluxDB has no service-side limit on concurrent create-db-instance or create-db-cluster calls in a single account. Multiple instances can be in CREATING state simultaneously. If asked to create an instance, always attempt the API call even when other instances exist. Only report a failure if the actual API call returns one. Do not invent constraints.
Load monitoring instructions (opens in a new tab) for alarm templates and operational runbooks.
V3 uses port 8181. V2 uses port 8086. #1 cause of “connection refused” on V3 is a client configured for 8086.
You MUST tell the user ALL of:
Wrong API version (V2 API against V3 cluster or vice versa), malformed line protocol, cardinality explosion, missing required tags/fields, or V3 deduplication conflict (measurement + tagset + timestamp must be unique).
Known issue. You MUST recommend: (1) reduce write batch sizes, (2) add distinguishing tags so measurement + tagset + timestamp is unique. Also check S3 VPC endpoint connectivity for clusters in private subnets. Do NOT frame this as an unpreventable timing issue — it’s caused by data collisions.
High cardinality, missing partition template, or large cold-tier scans. Check CloudWatch CPUUtilization and scrape /metrics for influxdb_iox_query_log_execute_duration_seconds.
Usually VPC connectivity to S3 from the cluster. Check the S3 VPC endpoint and route table. See s3-vpc-endpoint (opens in a new tab).
Scale storage or instance type; review V2 retention or V3 TTL.
Primary write throughput, network saturation, or replica sized below primary.
Never mix V2 and V3 remediation. Confirm engine first. Full triage: troubleshooting instructions (opens in a new tab).
FullAccess managed policies are for initial setup only.--publicly-accessible).aws:SourceArn and aws:SourceAccount conditions to prevent confused deputy attacks./metrics endpoint or native audit logging for data access observability.This skill can be invoked directly, or it can be entered from the aws-database-selection parent skill after that skill has run a requirements interview and produced a requirements.json artifact. When you see a backtick-wrapped path matching aws_dbs_requirements/*/requirements.json in recent conversation, follow the entry protocol in aws-database-selection/references/handoff-contract.md:
file_read.aws-database-selection/references/workload-primary-artifact.schema.json. If malformed or unreadable, tell the user and proceed without it.workload_primaries.dominant_shapes or migration_context don’t match that scope, emit weak backpressure per the handoff contract: suggest dynamodb-skill for non-InfluxDB time-series on DynamoDB, or go back to aws-database-selection if the dominant shape isn’t time-series, then ask the user whether to go back or proceed anyway. Do not silently misuse the artifact.All user-facing output from this skill follows the markdown-primitives-only formatting convention in the handoff contract: bold labels, backticks for paths and enum values, bullet lists for alternatives, no ASCII art or box-drawing characters.
Install this repository
npx skills add aws/agent-toolkit-for-aws/plugin marketplace add aws/agent-toolkit-for-awsSkills install per repository, not per chapter — the CLI has no documented per-skill form, so we do not print one.
Retrieves authoritative guidance on Amazon Timestream for InfluxDB (managed InfluxDB 2, InfluxDB 2 Read Replica Clusters, InfluxDB 3 Core and Enterprise). Applicable to any InfluxDB-on-AWS request including engine selection, provisioning (Marketplace + AmazonTimestreamInfluxDBFullAccess/ConsoleFullAccess IAM), schema design (tags vs fields, cardinality, HTTP/sensor/metric data modeling), migration from LiveAnalytics, Processing Engine plugins, connectivity (port 8086 V2, port 8181 V3, VPC-only by default), and write/query errors.
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 10 August 2026.SKILL.md, not by matching a directory convention. 17 distinct layouts observed: plugins/aws-agents-for-devsecops/skills/*/SKILL.md, plugins/aws-agents/skills/*/SKILL.md, plugins/aws-core/skills/*/SKILL.md, skills/core-skills/*/SKILL.md, skills/specialized-skills/analytics-skills/*/SKILL.md, skills/specialized-skills/database-skills/*/SKILL.md, skills/specialized-skills/ec2-skills/*/SKILL.md, skills/specialized-skills/messaging-and-streaming-skills/*/SKILL.md, skills/specialized-skills/migration-and-modernization-skills/*/SKILL.md, skills/specialized-skills/networking-and-content-delivery-skills/*/SKILL.md, skills/specialized-skills/operations-skills/*/SKILL.md, skills/specialized-skills/resilience-skills/*/SKILL.md, skills/specialized-skills/security-and-identity-skills/*/SKILL.md, skills/specialized-skills/serverless-skills/*/SKILL.md.Scripts
Check VPC Endpointsskills/specialized-skills/storage-skills/*/SKILL.mdskills/specialized-skills/system-table-skills/*/SKILL.mdskills/specialized-skills/web-and-mobile-development/*/SKILL.mdh1 and no skipped levels:.claude-plugin/marketplace.json by Amazon Web Services, declaring 4 plugins. It is read for editorial metadata only — never as the skill index, which is always the repository tree./aws/agent-toolkit-for-aws.md, and each chapter at its own .md URL.13 files · 61 KB
Everything this skill ships beside its prose. All of it is set here, as subchapters of chapter 70.
Documentation the agent loads on demand, rather than up front.
Executable code the skill can run.