@@ -7,14 +7,90 @@ const AuditingInstanceNotConfiguredPages: WizardPage[] = [
77 content : `
88 <p>Auditing captures a copy of every successful message processed by your NServiceBus endpoints, allowing you to:</p>
99 <ul>
10+ <li><strong>Display and discover messages</strong> - View processed messages in your system</li>
1011 <li><strong>Track message flow</strong> - See the complete journey of messages through your system</li>
12+ <li><strong>View the sequence of events</strong> - Understand how messages are processed over time</li>
13+ <li><strong>Visualize workflow state</strong> - Monitor and debug your saga workflows</li>
1114 <li><strong>Debug issues</strong> - Inspect message contents and headers for troubleshooting</li>
12- <li><strong>Analyze patterns</strong> - Understand how your system processes messages over time</li>
1315 </ul>
1416 ` ,
1517 learnMoreUrl : "https://docs.particular.net/nservicebus/operations/auditing" ,
1618 learnMoreText : "Learn more about auditing" ,
1719 } ,
20+ {
21+ title : "Display and Discover Messages" ,
22+ content : `
23+ <p>Browse and search through all processed messages in your system:</p>
24+ <ul>
25+ <li><strong>Message list</strong> - View all messages in a searchable list</li>
26+ <li><strong>Advanced filtering</strong> - Filter messages by endpoint, time range, and more</li>
27+ <li><strong>Full-text search</strong> - Search message contents to find specific data</li>
28+ <li><strong>Sorting options</strong> - Sort by time processed, endpoint, or message type</li>
29+ </ul>
30+ ` ,
31+ image : "/img/all-messages.png" ,
32+ learnMoreUrl : "https://docs.particular.net/servicepulse/all-messages" ,
33+ learnMoreText : "Learn about message discovery" ,
34+ } ,
35+ {
36+ title : "Track Message Flow" ,
37+ content : `
38+ <p>Follow the complete journey of messages through your distributed system:</p>
39+ <ul>
40+ <li><strong>Conversation tracking</strong> - See all related messages grouped together by conversation ID</li>
41+ <li><strong>Message timeline</strong> - View the sequence of events as messages flow between endpoints</li>
42+ <li><strong>Endpoint mapping</strong> - Understand which endpoints send and receive each message type</li>
43+ <li><strong>Flow visualization</strong> - Get a clear picture of your system's message-based interactions</li>
44+ </ul>
45+ ` ,
46+ image : "/img/flow-diagram.png" ,
47+ learnMoreUrl : "https://docs.particular.net/servicepulse/flow-diagram" ,
48+ learnMoreText : "Learn about message tracking" ,
49+ } ,
50+ {
51+ title : "View the Sequence of Events" ,
52+ content : `
53+ <p>Understand the order and timing of message processing with sequence diagrams:</p>
54+ <ul>
55+ <li><strong>Timeline view</strong> - See messages arranged chronologically as they were processed</li>
56+ <li><strong>Endpoint interactions</strong> - Visualize how endpoints communicate with each other</li>
57+ <li><strong>Handler execution</strong> - Track which handlers processed each message</li>
58+ </ul>
59+ ` ,
60+ image : "/img/sequence-diagram.png" ,
61+ learnMoreUrl : "https://docs.particular.net/servicepulse/sequence-diagram" ,
62+ learnMoreText : "Learn about sequence diagrams" ,
63+ } ,
64+ {
65+ title : "Visualize Workflow State" ,
66+ content : `
67+ <p>Monitor and debug your saga workflows with saga diagrams:</p>
68+ <ul>
69+ <li><strong>Saga lifecycle</strong> - View the complete history of a saga from start to completion</li>
70+ <li><strong>State changes</strong> - Track how saga state evolves as messages are processed</li>
71+ <li><strong>Message correlation</strong> - See which messages initiated and updated the saga</li>
72+ <li><strong>Timeout tracking</strong> - Monitor saga timeouts and their triggers</li>
73+ </ul>
74+ ` ,
75+ image : "/img/saga-diagram-overview.png" ,
76+ learnMoreUrl : "https://docs.particular.net/servicepulse/saga-diagram" ,
77+ learnMoreText : "Learn about saga diagrams" ,
78+ } ,
79+ {
80+ title : "Debug Issues" ,
81+ content : `
82+ <p>Inspect message details to troubleshoot problems in your system:</p>
83+ <ul>
84+ <li><strong>Message headers</strong> - View all metadata including timestamps, correlation IDs, and custom headers</li>
85+ <li><strong>Message body</strong> - Examine the full payload content of each message</li>
86+ <li><strong>Processing details</strong> - See which endpoint processed the message and when</li>
87+ <li><strong>Search & filter</strong> - Quickly find specific messages by content, type, or time range</li>
88+ </ul>
89+ ` ,
90+ image : "/img/message-details-headers.png" ,
91+ learnMoreUrl : "https://docs.particular.net/servicepulse/message-details" ,
92+ learnMoreText : "Learn about message inspection" ,
93+ } ,
1894 {
1995 title : "Set Up ServiceControl Audit Instance" ,
2096 content : `
0 commit comments