Hi @kielni Welcome to the community and thanks for trying Elastic Cloud.
If you have set up shipping metrics to a monitoring cluster like this.
Then I think all of the metrics you are looking for are there on the advanced tabs of the nodes in stack monitoring, there are quite a few detailed metrics for each node...
Depending on what versions you are on the data will be stored in systems indices in the cluster that you are shipping the metrics too that stare with a .
You will need to set up something / a job to pull those metrics into into DataDog, how you want to do that I am not sure lots of ways the data is available via all the Standard Elastisearch REST APIs... of course perhaps someday could push those other systems metrics into Elasticsearch and see them all together
If you are on fairly recent version then you can run something like
GET _cat/indices/.monitoring-es-*/?v&s=index:desc
And here is a sample doc, there are a lot of info in the indices.
GET .monitoring-es-7-mb-2021.02.28/_search
{
"query": {
"term": {
"type" : {
"value": "node_stats"
}
}
}
}
{
"_index": ".monitoring-es-7-mb-2021.02.28",
"_type": "_doc",
"_id": "g27I6XcBMFH355-yEXuN",
"_version": 1,
"_score": null,
"_source": {
"@timestamp": "2021-02-28T17:55:37.728Z",
"event": {
"duration": 69043664,
"dataset": "elasticsearch.node.stats",
"module": "elasticsearch"
},
"type": "node_stats",
"node_stats": {
"fs": {
"total": {
"total_in_bytes": 257698037760,
"free_in_bytes": 92659236864,
"available_in_bytes": 92659236864
},
"io_stats": {}
},
"jvm": {
"gc": {
"collectors": {
"young": {
"collection_time_in_millis": 2866340,
"collection_count": 94667
},
"old": {
"collection_count": 94667,
"collection_time_in_millis": 2866340
}
}
},
"mem": {
"heap_max_in_bytes": 4106223616,
"heap_used_in_bytes": 3119076864,
"heap_used_percent": 75
}
},
"mlockall": false,
"os": {
"cpu": {
"load_average": {
"15m": 1.16,
"1m": 1.14,
"5m": 1.36
}
},
"cgroup": {
"cpu": {
"control_group": "/",
"cfs_period_micros": 100000,
"cfs_quota_micros": 266666,
"stat": {
"number_of_times_throttled": 703402,
"time_throttled_nanos": 117860160080464,
"number_of_elapsed_periods": 8697138
}
},
"memory": {
"limit_in_bytes": "8589934592",
"usage_in_bytes": "8226234368",
"control_group": "/"
},
"cpuacct": {
"control_group": "/",
"usage_nanos": 731799111098956
}
}
},
"thread_pool": {
"get": {
"queue": 0,
"rejected": 0,
"threads": 0
},
"management": {
"threads": 5,
"queue": 0,
"rejected": 0
},
"search": {
"rejected": 0,
"threads": 4,
"queue": 0
},
"watcher": {
"rejected": 0,
"threads": 0,
"queue": 0
},
"write": {
"threads": 2,
"queue": 0,
"rejected": 0
},
"generic": {
"threads": 93,
"queue": 0,
"rejected": 0
}
},
"node_master": true,
"node_id": "QtKLeIcuTWuHdo8uLOcLUw",
"indices": {
"store": {
"size_in_bytes": 163324922738
},
"indexing": {
"throttle_time_in_millis": 0,
"index_total": 391884858,
"index_time_in_millis": 39084616
},
"search": {
"query_total": 5653491,
"query_time_in_millis": 7069959
},
"query_cache": {
"memory_size_in_bytes": 40576810,
"hit_count": 858520,
"miss_count": 2970609,
"evictions": 84405
},
"docs": {
"count": 524023513
},
"fielddata": {
"memory_size_in_bytes": 159200,
"evictions": 0
},
"segments": {
"fixed_bit_set_memory_in_bytes": 15284968,
"term_vectors_memory_in_bytes": 0,
"norms_memory_in_bytes": 197824,
"doc_values_memory_in_bytes": 25912280,
"count": 2584,
"stored_fields_memory_in_bytes": 1484320,
"version_map_memory_in_bytes": 985056,
"memory_in_bytes": 44418528,
"points_memory_in_bytes": 0,
"terms_memory_in_bytes": 16824104,
"index_writer_memory_in_bytes": 21738132
},
"request_cache": {
"memory_size_in_bytes": 40068049,
"evictions": 18668,
"hit_count": 1008716,
"miss_count": 75787
}
},
"process": {
"max_file_descriptors": 1048576,
"cpu": {
"percent": 6
},
"open_file_descriptors": 3050
}
},
"metricset": {
"name": "node_stats",
"period": 10000
},
"interval_ms": 10000,
"timestamp": "2021-02-28T17:55:37.797Z",
"source_node": {
"name": "instance-0000000075",
"transport_address": "10.44.255.143:19936",
"uuid": "QtKLeIcuTWuHdo8uLOcLUw"
},
"service": {
"address": "7d08aea6f01c:18565",
"type": "elasticsearch"
},
"cluster_uuid": "lPhIKHfzSGO52N-k2eXlBQ",
"ecs": {
"version": "1.5.0"
},
"host": {
"name": "7d08aea6f01c"
},
"agent": {
"type": "metricbeat",
"version": "7.9.2",
"hostname": "7d08aea6f01c",
"ephemeral_id": "91c6f677-023f-4f17-9462-03d66aa55a9a",
"id": "a109ab63-6433-4c13-8ced-7ed77da5082c",
"name": "7d08aea6f01c"
}
},
"fields": {
"timestamp": [
"2021-02-28T17:55:37.797Z"
]
},
"sort": [
1614534937797
]
}
Hope this helps ..