Plausible Analytics

Add-On

Lightweight, privacy-friendly web analytics as an alternative to Google Analytics. Simple metrics without cookies.

Status
Planned
Supported Version
TBD
Licensing
Open Source / Commercial
Usage Example

Here's how you'll use Plausible Analytics with Oorian once the extension is available:

Java
// Create and configure Plausible Analytics component
PlausibleAnalytics component = new PlausibleAnalytics();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, PlausibleAnalyticsEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.