list_apps
Retrieve Scout APM applications with optional filtering by activity date to identify monitored applications and their reporting status.
Instructions
List available Scout APM applications. Provide an optional `active_since` ISO 8601
to filter to only apps that have reported data since that time. Defaults to the
metric retention period of thirty days.
Args:
active_since (str): ISO 8601 datetime string to filter apps active since that
time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active_since | No |
Input Schema (JSON Schema)
{
"properties": {
"active_since": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Active Since"
}
},
"type": "object"
}