project_overview
Summarize project cost, token usage, and trace data within a specified time window to monitor analytics and track spending.
Instructions
Get a summary of total cost, tokens, and traces for a project over a time window.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Start timestamp (ISO 8601) | |
| to | Yes | End timestamp (ISO 8601) | |
| environment | No | Optional environment filter (e.g., "production", "staging") |
Input Schema (JSON Schema)
{
"properties": {
"environment": {
"description": "Optional environment filter (e.g., \"production\", \"staging\")",
"type": "string"
},
"from": {
"description": "Start timestamp (ISO 8601)",
"format": "date-time",
"type": "string"
},
"to": {
"description": "End timestamp (ISO 8601)",
"format": "date-time",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
}