Dashboard Aggregates

Get recent deployment statistics

RecentDeployments returns aggregate statistics of recent deployments.

Securityx-api-key
Request
Request Body schema: application/json
required
accountIdentifier
required
string

Account Identifier for the Entity.

projectIdentifier
string

Project Identifier for the Entity.

orgIdentifier
string

Organization Identifier for the Entity.

operationPhase
Array of strings (v1OperationPhase)
Items Enum: "OPERATION_PHASE_UNSET" "RUNNING" "FAILED" "SUCCEEDED"
applicationName
string
startTime
integer <int32>
endTime
integer <int32>
searchTerm
string
agentIdentifier
string
Responses
200

A successful response.

default

An unexpected error response.

post/gitops/api/v1/dashboard/activity
Request samples
application/json
{
  • "accountIdentifier": "string",
  • "projectIdentifier": "string",
  • "orgIdentifier": "string",
  • "operationPhase": [
    ],
  • "applicationName": "string",
  • "startTime": 0,
  • "endTime": 0,
  • "searchTerm": "string",
  • "agentIdentifier": "string"
}
Response samples
application/json
{
  • "content": [
    ],
  • "pageItemCount": 0,
  • "empty": true
}

List top 5 most deployed apps

TopApplicationPhaseStats lists phase status counts for the top 5 most deployed applications.

Securityx-api-key
Request
query Parameters
projectIdentifier
string

Project Identifier for the Entity.

orgIdentifier
string

Organization Identifier for the Entity.

accountIdentifier
string

Account Identifier for the Entity.

endTime
integer <int32>
startTime
integer <int32>
limit
integer <int32>
Responses
200

A successful response.

default

An unexpected error response.

get/gitops/api/v1/dashboard/topapps
Request samples
Response samples
application/json
{
  • "content": [
    ],
  • "empty": true
}