工具 API

get_profile_details

Retrieve raw profile chunk data to inspect individual function calls, threads, and stack traces. USE THIS TOOL WHEN: - User wants to inspect raw profiling samples for a specific profiler session - User needs to see individual thread activity and stack traces - User wants detailed frame-level data (function names, file locations, call counts) RETURNS: - Profile chunk metadata (platform, release, environment) - Per-thread sample counts and names - Top frames by occurrence with file locations - User code vs library code breakdown NOTE: This tool requires a `profilerId` which identifies a specific profiling session. Use `get_profile` for aggregated flamegraph analysis by transaction name. <examples> ### Inspect a profiler session ``` get_profile_details( organizationSlug='my-org', projectSlugOrId='backend', profilerId='041bde57b9844e36b8b7e5734efae5f7', start='2024-01-01T00:00:00', end='2024-01-01T01:00:00' ) ``` </examples> <hints> - Use `focusOnUserCode: true` (default) to filter out library/system frames - The profilerId can be found in Sentry profile URLs or event data </hints>

devOAuth1 积分

调用信息

工具标识
sentry-mcp.get_profile_details
服务提供方
Sentry
平均响应
0 ms
近 7 天调用
0

输入参数

organizationSlug必填

The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool.

regionUrl

The region URL for the organization you're querying, if known. For Sentry's Cloud Service (sentry.io), this is typically the region-specific URL like 'https://us.sentry.io'. For self-hosted Sentry installations, this parameter is usually not needed and should be omitted. You can find the correct regionUrl from the organization details using the `find_organizations()` tool.

projectSlugOrId必填

Project slug or numeric ID

profilerId必填

Profiler session ID (UUID from Sentry profile data)

start必填

Start time for the profile chunk query (ISO 8601 format, e.g., '2024-01-01T00:00:00')

end必填

End time for the profile chunk query (ISO 8601 format, e.g., '2024-01-01T01:00:00')

focusOnUserCode

Show only user code (in_app: true). Set to false to include library code.