I would like to propose a unique and insightful feature for Kinsta: Event Tracking.
Kinsta would monitor and log each time a custom event is triggered. A developer can invoke an event using JavaScript, HTML, or PHP. An event can be a simple string and supports optional tags and parameters.
Kinsta would feature an Event Tracking dashboard for each site, displaying metrics such as common events and events by tag. Users can filter and search logs, which can be retained for a customizable period or indefinitely. Additionally, email notifications can be enabled for multiple recipients, with customizable frequency.
Some potential use cases include:
- Error detection and debugging
- Goal tracking (e.g., link clicks, form submissions, purchases)
- Agency management
Similar examples include:
- AnalyticsWP, which allows event tracking with JS and PHP (Developers | AnalyticsWP)
- Fathom, which allows event tracking with JS and HTML (Track link clicks - Fathom Analytics)
As an agency, this feature would greatly help us track key metrics.
Code examples:
JavaScript
// Track a simple event
kinsta.event('new_subscription');
// Track an event with properties
kinsta.event('button_click', {
unique_event_identifier: 'btn_click_123',
button_id: 'submit-form',
button_text: 'Submit'
});
PHP
/**
* Track an event from the server side
*
* @param string $event_type
* @param array $args
*
* @return array{error: non-empty-string}|int - An error message or the Event ID.
*/
public static function kinsta_event(
string $event_type,
array $args = array(),
)
HTML
<a href="/about" onclick="kinsta.event('button click');">About Us</a>
This would save costs and bloat of third-party loggin tools like Sentry, Telemtry/Logtail, or analytical tools like AnalyticsWP and Fathom. It brings this crucial data into Kinsta, the place it belongs.
Thank you for your consideration!
Elliott