-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.cfm
More file actions
20 lines (20 loc) · 907 Bytes
/
index.cfm
File metadata and controls
20 lines (20 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<cfoutput>
<h1>wheels-sentry</h1>
<p>Sentry error tracking for Wheels with framework-aware context enrichment.</p>
<h2>Status</h2>
<table class="table">
<tr><td><strong>Version</strong></td><td>1.0.0</td></tr>
<tr><td><strong>DSN Configured</strong></td><td>#YesNoFormat(StructKeyExists(application, "sentry"))#</td></tr>
<tr>
<td><strong>Environment</strong></td>
<td>#(StructKeyExists(application, "sentry") ? application.sentry.getEnvironment() : "N/A")#</td>
</tr>
</table>
<h2>Available Methods</h2>
<ul>
<li><code>sentryCapture(exception, [tags], [level])</code> — Capture exception with context</li>
<li><code>sentryMessage(message, [level], [tags])</code> — Capture message event</li>
<li><code>sentrySetUser(userStruct)</code> — Set user context for request</li>
<li><code>sentryAddBreadcrumb(message, [category], [level], [data])</code> — Add breadcrumb</li>
</ul>
</cfoutput>