Integrate Google Analytics with Kibana

Hello,
I want to see google analytics data into kibana dashboard..How to do it?..Can anyone help me on this topic?

To do this you would need to be able to export the Google Analytics data into Elasticsearch, which I don't believe is possible.

We do have APM, which is also free that ingests data into Elasticsearch from your website: https://www.elastic.co/apm

What kind of metrics are you looking for?

A custom plugin (hack) would work but will require some coding.

import $ from "jquery";

window.onhashchange = locationHashChanged;

$(document).ready(function () {
  addGoogleAnalyticsCode();
});

function locationHashChanged() {
  addGoogleAnalyticsCode();
}

function addGoogleAnalyticsCode() {
   //get dashboard ID from URL
   //if ID is the dashboard you want add GA tracking code using jQuery
}
1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.