mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* chore: cloudintegrations: rename rds def * feat: cloudintegrations: shape of agent check in response for v0 release * chore: cloudintegrations: add validation for response expected after agent check in * chore: cloudintegrations: accumulate teletry collection strategies for enabled services * chore: cloudintegrations: use map struct to parse from map to struct with json tags * chore: cloudintegrations: telemetry collection strategy for services * chore: cloudintegrations: wrap up test for agent check in resp * chore: some cleanup * chore: some cleanup * chore: some minor renaming * chore: address review comment * chore: some cleanup --------- Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
47 lines
988 B
JSON
47 lines
988 B
JSON
{
|
|
"id": "rds",
|
|
"title": "Amazon RDS",
|
|
"icon": "file://icon.svg",
|
|
"overview": "file://overview.md",
|
|
"assets": {
|
|
"dashboards": []
|
|
},
|
|
"supported_signals": {
|
|
"metrics": true,
|
|
"logs": true
|
|
},
|
|
"data_collected": {
|
|
"metrics": [
|
|
{
|
|
"name": "rds_postgres_cpuutilization_average",
|
|
"type": "Gauge",
|
|
"unit": "number",
|
|
"description": "CloudWatch metric CPUUtilization"
|
|
},
|
|
{
|
|
"name": "rds_postgres_cpuutilization_maximum",
|
|
"type": "Gauge",
|
|
"unit": "number",
|
|
"description": "CloudWatch metric CPUUtilization"
|
|
}
|
|
],
|
|
"logs": []
|
|
},
|
|
"telemetry_collection_strategy": {
|
|
"aws_metrics": {
|
|
"cloudwatch_metric_stream_filters": [
|
|
{
|
|
"Namespace": "AWS/RDS"
|
|
}
|
|
]
|
|
},
|
|
"aws_logs": {
|
|
"cloudwatch_logs_subscriptions": [
|
|
{
|
|
"log_group_name_prefix": "/aws/rds",
|
|
"filter_pattern": ""
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |