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>
39 lines
792 B
JSON
39 lines
792 B
JSON
{
|
|
"id": "ec2",
|
|
"title": "EC2",
|
|
"icon": "file://icon.svg",
|
|
"overview": "file://overview.md",
|
|
"assets": {
|
|
"dashboards": []
|
|
},
|
|
"supported_signals": {
|
|
"metrics": true,
|
|
"logs": false
|
|
},
|
|
"data_collected": {
|
|
"metrics": [
|
|
{
|
|
"name": "ec2_cpuutilization_average",
|
|
"type": "Gauge",
|
|
"unit": "number",
|
|
"description": "CloudWatch metric CPUUtilization"
|
|
},
|
|
{
|
|
"name": "ec2_cpuutilization_maximum",
|
|
"type": "Gauge",
|
|
"unit": "number",
|
|
"description": "CloudWatch metric CPUUtilization"
|
|
}
|
|
],
|
|
"logs": []
|
|
},
|
|
"telemetry_collection_strategy": {
|
|
"aws_metrics": {
|
|
"cloudwatch_metric_stream_filters": [
|
|
{
|
|
"Namespace": "AWS/EC2"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |