Skip to content

Client Analytics

By default, and to adhere to GDPR standards, Micrio does not collect any usage metrics. However, measuring them for yourself is not difficult.

Google Analytics

If you have a Google Analytics implementation in your own site where Micrio is embedded, then Micrio will automatically detect this, and will send these metrics to your analytics account (see the JS Events API for reference).

  • load
  • show
  • hide
  • marker-open
  • marker-opened
  • marker-closed
  • tour-start
  • tour-stop
  • tour-step
  • tour-ended

The event sent to Google Analytics is of this form:

json
{
	"event_category": "Micrio",
	"event_action": "(The micrio event name, as specified above)",
	"event_value": {}, // The Micrio event detail value, otherwise `undefined`
	"event_label": "The Micrio ID + any title of current opened tour, tour step or marker"
}
{
	"event_category": "Micrio",
	"event_action": "(The micrio event name, as specified above)",
	"event_value": {}, // The Micrio event detail value, otherwise `undefined`
	"event_label": "The Micrio ID + any title of current opened tour, tour step or marker"
}

Other analytics

Alternatively, you can use the JS Events API to read the Micrio user events, and send them to your own existing tracking methods as required.