post https://api.armosec.io/api/v1/posture/clustersOvertime
Returns list of clusters, each with summary for each framework along with history of previous scans over time per framwork.
This is a combination of /api/v1/posture/frameworks
along with /api/v1/posture/overtime
.
Request object examples
Get the result for all clusters of scans between 2020-11-24 09:37:45 AM and 2020-11-28 05:37:45 AM.
{
"since": "2020-11-24T09:37:45.633230367-05:00", // optional
"until": "2020-11-28T05:37:45.633230937-05:00" // optional
}
Get the result of the runs for clusters contains 'cluster-001' in the cluster name
{
"innerFilters": [
{
"clusterName": "cluster 001|like"
}
]
}
Get the result of the runs for clusters contains 'cluster-test-1' in the cluster name
{
"innerFilters": [
{
"clusterName": "cluster-test-1"
}
]
}