Are there any best practices for setting up multiple pages in TraceWatch for PHP?

When setting up multiple pages in TraceWatch for PHP, it is recommended to use unique page names for each page to accurately track and analyze the performance of individual pages. This can help in identifying any bottlenecks or issues specific to certain pages. Additionally, organizing pages into logical groups or categories can provide a clearer overview of the application's performance.

// Example of setting up multiple pages with unique names in TraceWatch for PHP
// Page 1
tracewatch_set_page_name("Homepage");

// Page 2
tracewatch_set_page_name("Product Page");

// Page 3
tracewatch_set_page_name("Contact Page");