Excessibility.TelemetryCapture.Analyzers.CodePointer (Excessibility v0.14.0)

View Source

Maps timeline events to likely source code locations.

Helps LLMs and developers locate relevant callbacks. Uses event type and view_module to suggest where to look.

Not enabled by default - run with --analyze=code_pointer.

Output

%{
  findings: [],
  stats: %{
    pointers: [
      %{
        event: "handle_event:save_form",
        module: MyApp.FormLive,
        likely_location: "def handle_event("save_form", params, socket) in MyApp.FormLive"
      }
    ]
  }
}

Summary

Functions

analyze(map, opts)

Callback implementation for Excessibility.TelemetryCapture.Analyzer.analyze/2.

default_enabled?()

Callback implementation for Excessibility.TelemetryCapture.Analyzer.default_enabled?/0.

name()

Callback implementation for Excessibility.TelemetryCapture.Analyzer.name/0.