action posthog_live_debugger_breakpoints_breakpoint_hits_retrieve { label: "Get breakpoint hits" description: "Retrieve breakpoint hit events from ClickHouse with optional filtering and pagination. Returns hit events containing stack traces, local variables, and execution context from your application's runtime. \n\nSecurity: Breakpoint IDs are filtered to only include those belonging to the current team." provider: posthog method: GET path: "/api/projects/{project_id}/live_debugger_breakpoints/breakpoint_hits/" encoding: json input: { type: "object" properties: { breakpoint_ids: { type: "string" } limit: { type: "integer" } offset: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "Response schema for breakpoint hits endpoint" required: ["count", "has_more", "results"] properties: { count: { type: "integer" description: "Number of results returned" } has_more: { type: "boolean" description: "Whether there are more results available" } results: { type: "array" description: "List of breakpoint hit events" items: { type: "object" description: "Schema for a single breakpoint hit event" required: ["breakpoint_id", "filename", "functionName", "id", "lineNumber", "stackTrace", "timestamp", "variables"] properties: { breakpoint_id: { type: "string" format: "uuid" description: "ID of the breakpoint that was hit" } filename: { type: "string" description: "Filename where the breakpoint was hit" } functionName: { type: "string" description: "Name of the function where breakpoint was hit" } id: { type: "string" format: "uuid" description: "Unique identifier for the hit event" } lineNumber: { type: "integer" description: "Line number where the breakpoint was hit" } stackTrace: { type: "array" description: "Stack trace at the time of the hit" items: { type: "object" } } timestamp: { type: "string" format: "date-time" description: "When the breakpoint was hit" } variables: { type: "object" description: "Local variables at the time of the hit" } } } } } } }