> Discover all available pages from the documentation index: https://mastra.zisheng.pro/ja/llms.txt # Telemetry API Telemetry API は、Mastra アプリケーションからトレースを取得・分析するためのメソッドを提供します。これにより、アプリケーションの動作やパフォーマンスを監視し、デバッグできます。 ## トレースの取得 必要に応じてフィルタリングとページネーションを指定し、トレースを取得します。 ```typescript const telemetry = await mastraClient.getTelemetry({ name: 'trace-name', // Optional: Filter by trace name scope: 'scope-name', // Optional: Filter by scope page: 1, // Optional: Page number for pagination perPage: 10, // Optional: Number of items per page attribute: { // Optional: Filter by custom attributes key: 'value', }, }) ```