find_exceptions_in_file
Retrieve the 10 most recent exceptions from a specified file within a defined time frame. Useful for monitoring and debugging error occurrences in telemetry data.
Instructions
Get the details about the 10 most recent exceptions on the file.
Args:
filepath: The path to the file to find exceptions in.
age: Number of minutes to look back, e.g. 30 for last 30 minutes. Maximum allowed value is 7 days.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
age | Yes | ||
filepath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"age": {
"title": "Age",
"type": "integer"
},
"filepath": {
"title": "Filepath",
"type": "string"
}
},
"required": [
"filepath",
"age"
],
"title": "find_exceptions_in_fileArguments",
"type": "object"
}