Skip to main content

Cloud Agent Configuration

This document is a guide to configure the WhaTap Cloud Agent in the AWS and NCP environments. It is configured to be immediately applicable to the operating environment, including key settings, field descriptions, roles configuration, and execution commands.

Agent CONFIG.

The following explains how to configure the AWS Aurora and RDS, and NCP Cloud DB for PostgreSQL.

Configure AWS Aurora and RDS

config.yaml
input:
csp: "aws" # Enter the Cloud Service Provider.
namespace: "rds"
region: "us-east-1" # Set the region where the instance is located.
instances: # The specified instances are collected always. Instances listed under this property are collected at all times, regardless of the autoscaling setting.
- name: "mysql-rds"
slow_query: true # To use the slow query page, set it to true. This feature is avaiable only in MySQL and PostgreSQL instances.
clusters:
autoscale:
enabled: false # If the autoscale is enabled, the autoscaled instances are added or deleted for collection.
interval: 60 # Autoscale checking cycle for the specified clusters (unit: second)
names:
- "database-cluster-name"
metrics: # Enter the metrics to collect.
- "CPUUtilization"
- "FreeStorageSpace"
- "FreeableMemory"
- "ReadLatency"
- "WriteLatency"
- "ReadIOPS"
- "WriteIOPS"
- "NetworkReceiveThroughput"
- "NetworkTransmitThroughput"
- "FreeLocalStorage"
logs:
enabled: false # Can be enabled/disabled. Select true/false.
groups: # Add the desired AWS log groups.
- "/aws/rds/cluster/database-cluster-name/error"
- "/aws/lambda/MyLambda"

output: # Enter the WhaTap information to receive the collected metrics.
license: "abcdefg-higjgkgjk-zxcvnbnbmc"
host: "127.0.0.1"
FieldDescription
cspIndicates aws (Amazon Web Services) as a cloud service provider.
namespaceNamespace of the service to be collected
- Fixed value: Enter rds when configuring Aurora and RDS.
regionAWS Region code
- e.g. us-east-1 (Virginia Region)
instancesIt always collects the specified instances regardless of whether they are auto-scaled, as long as they are in the list of instances to collect.
instances[].nameRDS InstanceName
- e.g. mysql-rds
instances[].slow_queryWhether to collect slow queries for the instance. It is ** available only in MySQL and PostgreSQL instances.**
- true: To be collected
- false: Not to be collected
clustersRDS Cluster-related settings
clusters.autoscale.enabledWhether to collect cluster autoscale
- true: Automatically add/remove/collect instances
- false: Only the instances directly entered in instances are included in the collection targets.
clusters.autoscale.intervalPolling interval for detecting autoscaling status (unit: second)
clusters.namesList of cluster names to check for autoscaling status
metricsList of metrics to collect
- e.g. CPUUtilization, FreeStorageSpace, etc
- Note. Shortcut to the official Amazon CloudWatch Metrics documentation for Amazon RDS
output.licenseWhaTap's license key to transmit the collected data
output.hostWhaTap server host address (IP) to transmit the collected data to
Cross-account monitoring (multi AWS account)

A single cloud agent can monitor RDS/DocumentDB across multiple AWS accounts. When using multiple accounts (separate by environment, partner accounts, etc.), you do not need to install an agent per account. One agent uses STS AssumeRole to query resources in other accounts.

ItemDescription
Supported targetsAWS RDS (Aurora, standalone), DocumentDB
Authentication methodEC2 Instance Profile + STS AssumeRole

Choosing a configuration method

There are two methods for cluster configuration, and they cannot be used simultaneously.

  • names: Single-account only (queries only the account of the EC2 where the agent is installed, using its IAM Role)

  • account_configs: Cross-account support (queries multiple accounts via STS AssumeRole)

account_configs configuration
config.yaml
input:
csp: "aws"
namespace: "rds"
region: "ap-northeast-2"
clusters:
autoscale:
enabled: true
interval: 300
account_configs:
# Local account (omitting assume_role_arn uses the local account)
- clusters: ["local-aurora-cluster"]
instances: ["standalone-mysql-1"]

# Another account A
- assume_role_arn: "arn:aws:iam::111111111111:role/DBXCRole"
clusters: ["partner-cluster-1", "partner-cluster-2"]

# Another account B
- assume_role_arn: "arn:aws:iam::222222222222:role/QARole"
clusters: ["qa-cluster"]
instances: ["qa-standalone-pg"]
metrics:
- "CPUUtilization"
- "FreeStorageSpace"
- "FreeableMemory"
- "ReadLatency"
- "WriteLatency"

output:
license: "your-license-key"
host: "127.0.0.1"
Table | account_configs fields
FieldRequiredDescription
assume_role_arnNSTS AssumeRole ARN. If omitted, the local account is used.
clustersYAurora/DocumentDB cluster names. Member instances are automatically discovered.
instancesNStandalone RDS instance names not belonging to a cluster.
Note

Difference between clusters and instances

clustersinstances
TargetAurora clusters, DocumentDB clustersStandalone RDS instances without a cluster
BehaviorAuto-discovers member instances by cluster nameDirectly specifies instance names
AutoscaleAutomatically reflects instance additions/deletionsN/A
ExampleAurora MySQL clusterStandalone RDS MySQL instance

Configuration example 1: Single account + standalone instance

clusters:
autoscale:
enabled: true
interval: 300
account_configs:
- clusters: ["prod-aurora"]
instances: ["legacy-mysql-standalone"]

Configuration example 2: 3 accounts (local + partner + QA)

clusters:
autoscale:
enabled: true
interval: 300
account_configs:
- clusters: ["prod-cluster", "staging-cluster"]

- assume_role_arn: "arn:aws:iam::111111111111:role/DBXCRole"
clusters: ["partner-prod", "partner-dev"]

- assume_role_arn: "arn:aws:iam::222222222222:role/QADBXCRole"
clusters: ["qa-cluster"]
instances: ["qa-standalone-pg"]
Caution
  • names and account_configs cannot be used simultaneously. A validation error occurs at agent startup.

  • ARN format is strictly validated. arn:aws:iam::<12-digit number>:role/<name> — be careful not to omit the double colons (::).

  • Each account_config requires at least 1 cluster.

  • autoscale.enabled: true is required for cluster discovery to work.

NCP Cloud DB for PostgreSQL Setup

config.yaml
input:
csp: "ncp" # Enter the Cloud Service Provider.
namespace: "vpc_postgresql"
region: "KR" # KR | SGN | JPN | USWN | DEN
accessKey: "YOUR_ACCESS_KEY"
secretKey: "YOUR_SECRET_KEY"
instances: # Specify the name of the DB Server to monitor in the Cloud DB for PostgreSQL (VPC) list.
- name: "instance-name"
domain: "pg-xxxxx.vpc-pub-cdb-kr.ntruss.com" # Enter the private or public domain that can be accessed.
metrics: # Enter the metrics to collect.
- "cpu_user"
- "mem_used"
- "disk_usage"
- "nic_total"
- "cpu_load_1"
- "tup_inserted"

output: # Enter the WhaTap information to receive the collected metrics.
license: "4544ee0few5-a880410bb205-2987709519af"
host: "127.0.0.1"
Field pathDescription
cspIndicates using the Naver Cloud Platform (ncp) as the cloud service provider.
namespaceIt is used as the delimiter for monitoring targets or group name.
- e.g. vpc_postgresql
regionCloud region code
- Available values: KR, SGN, JPN, USWN, DEN
accessKeyAccess key for API calls to Naver Cloud
- Note. How to Create an Access Key and Secret Key
secretKeySecret key for API calls to Naver Cloud
instancesList of PostgreSQL instances to monitor
- Each instance contains the name and domain fields.
instances[].nameCloud DB for PostgreSQL (VPC) instance name
- It can be checked in DB Server > DB Server Name of the NAVER CLOUD PLATFORM console.
- e.g. whatap-001-70ld
instances[].domainDomain address that can be accessed from the instance
- It can be checked in DB Server > Private or Public Domain of the NAVER CLOUD PLATFORM console.
- Enter the Private or Public domain address that is being accessed by the DBX agent.
- e.g. pg-33rr40.vpc-pub-cdb-kr.ntruss.com
metricsList of metrics to collect
- Note. Official Documentation for Cloud DB for PostgreSQL (VPC) metrics
outputWhaTap information to receive the collected metrics
output.licenseWhaTap's license key to transmit the collected metrics
output.hostWhaTap server host address (IP) to transmit the collected data to

How to Issue an Access Key / Secret Key

  1. Log in to the NAVER CLOUD PLATFORM Console.

  2. From the top menu, go to My Page > Account Management.

  3. Click Authentication Key Management in the menu.

  4. Click the [Create Key] button to generate a new Access Key and Secret Key.

Role setting

For the agent to operate normally, set the required roles for each service.

AWS Aurora and RDS roles

The Cloud Agent calls the AWS API to perform the following features.

  • Check the monitoring targets by querying the AWS Aurora and RDS instance and clusters.
  • Collecting CloudWatch metrics

IAM inline policy

Add the JSON policy as inline policy for IAM user or role. If you are running the agent on EC2, grant the policy to the IAM role associated with the EC2 instance.

  • This policy is applied to both Aurora and RDS services.
  • The resources are configured to apply to all Aurora and RDS resources. If needed, the resource ARNs can be restricted depending on the security policy.
  • The agent can use the read-only APIs only. The roles that can affect the database are not included.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "RDSPermissions",
"Effect": "Allow",
"Action": [
"rds:DescribeDBInstances",
"rds:DescribeDBClusters",
"rds:DescribeDBClusterParameters",
"rds:DescribeOptionGroups"
],
"Resource": "*"
},
{
"Sid": "CloudWatchMetricsPermissions",
"Effect": "Allow",
"Action": [
"cloudwatch:GetMetricData",
"cloudwatch:GetMetricStatistics",
"cloudwatch:ListMetrics"
],
"Resource": "*"
},
{
"Sid": "CloudWatchLogsPermissions",
"Effect": "Allow",
"Action": [
"logs:DescribeLogGroups",
"logs:DescribeLogStreams",
"logs:FilterLogEvents",
"logs:GetLogEvents"
],
"Resource": [
"arn:aws:logs:*:*:log-group:/aws/rds/*"
]
}
]
}
Cross-account IAM permissions

Additional IAM permissions are required to configure cross-account monitoring using account_configs.

Agent EC2 Instance Profile

Grant the EC2 running the agent permission to assume the role of the target account.

{
"Statement": [
{
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Resource": [
"arn:aws:iam::111111111111:role/DBXCRole",
"arn:aws:iam::222222222222:role/QARole"
]
}
]
}

Target account Cross-Account Role

Create a role in the target account that allows access from the agent account.

  • Trust Relationship: Allow the agent account

    {
    "Principal": {
    "AWS": "arn:aws:iam::<agent-account-ID>:role/DBXC-EC2-Instance-Role"
    },
    "Action": "sts:AssumeRole"
    }
  • Permission Policy: RDS/CloudWatch read permissions

    {
    "Effect": "Allow",
    "Action": [
    "rds:DescribeDBInstances",
    "rds:DescribeDBClusters",
    "cloudwatch:GetMetricData",
    "logs:FilterLogEvents"
    ],
    "Resource": "*"
    }

NCP Cloud DB for PostgreSQL permissions

The Cloud Agent calls the NCP Cloud Insight API to collect metrics and configuration data from the NCP Cloud DB for PostgreSQL instances. For this purpose, Access Key and Secret Key are required.

How to create an Access Key and Secret Key

  1. Log in to the NAVER CLOUD PLATFORM Console.
  2. From the top menu, go to My Page > Account Management.
  3. Select Authentication Key Management from the menu.
  4. Click the [Create Key] button to create new Access Key and Secret Key.

Pricing information

Caution

The Cloud Monitoring Agent is free, but note that separate charges may apply depending on the use of Cloud services.

AWS Pricing

Cloud monitoring agents are provided without separate SaaS fees, and the monitoring feature can be used simply by installing the agent. However, because the metrics are collected through the API for Cloud services such as AWS CloudWatch, separate charges may apply depending on the CloudWatch usage.

This agent basically collects metrics by calling the GetMetricData API every 1 minute. Note that the charge may increase depending on the call frequency and collection targets.

For more information about the pricing policy, see the Amazon CloudWatch pricing in AWS official documentation page.

NCP Pricing

Cloud monitoring agents are provided without separate SaaS fees, and the monitoring feature can be used simply by installing the agent. The Cloud Monitoring Agent calls the Cloud Insight API every 5 minutes to collect metrics at 1-minute granularity.

The Cloud Insight service of the Naver Cloud Platform (NCP) is currently provided free of charge, but may become paid depending on the future policy. If the Cloud Insight service becomes paid, charges may apply based on the number of API calls. Monitor the usage accordingly.

For more information about the pricing policy, see the Official pricing guide of NAVER Cloud Platform page.

Caution
  • names and account_configs cannot be used simultaneously. A validation error occurs at agent startup.

  • ARN format is strictly validated. arn:aws:iam::<12-digit number>:role/<name> — be careful not to omit the double colons (::).

  • Each account_config requires at least 1 cluster.

  • autoscale.enabled: true is required for cluster discovery to work.