Instabug (Luciq) · Schema

Luciq App Hang

A grouped UI freeze (hang) event for a mobile application. Hangs are non-fatal but user-perceptible UI thread blocks; Luciq groups them similar to crashes with occurrence counts, frequency, and environmental scope.

Agentic AIAPMApplication Performance MonitoringBug ReportingCrash ReportingMCPMobileMobile ObservabilityObservabilitySession Replay

Properties

Name Type Description
number integer
title string
duration_ms integer
first_seen string
last_seen string
occurrence_count integer
app_version string
os_version string
device string
current_view string
View JSON Schema on GitHub

JSON Schema

instabug-app-hang-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instabug/main/json-schema/instabug-app-hang-schema.json",
  "title": "Luciq App Hang",
  "description": "A grouped UI freeze (hang) event for a mobile application. Hangs are non-fatal but user-perceptible UI thread blocks; Luciq groups them similar to crashes with occurrence counts, frequency, and environmental scope.",
  "type": "object",
  "required": ["number", "title"],
  "properties": {
    "number": { "type": "integer" },
    "title": { "type": "string" },
    "duration_ms": { "type": "integer", "minimum": 0 },
    "first_seen": { "type": "string", "format": "date-time" },
    "last_seen": { "type": "string", "format": "date-time" },
    "occurrence_count": { "type": "integer", "minimum": 0 },
    "app_version": { "type": "string" },
    "os_version": { "type": "string" },
    "device": { "type": "string" },
    "current_view": { "type": "string" }
  }
}