Skip to content

Rename Jitsu Cube to TrackedEvents

Max Woolf requested to merge mw/rename-jitsu-cube into main

Beware that this will break existing dashboards

  • Renames the Jitsu cube to TrackedEvents to ensure that the solution is no longer coupled to Jitsu for end-users.
  • Specifically does not change the database table name. We can do that in a follow-up if neccessary.

Before

{
  "measures": [
    "Jitsu.count"
  ],
  "timeDimensions": [
    {
      "dimension": "Jitsu.utcTime",
      "granularity": "day"
    }
  ],
  "order": {
    "Jitsu.utcTime": "asc"
  }
}

After

{
  "measures": [
    "TrackedEvents.count"
  ],
  "timeDimensions": [
    {
      "dimension": "TrackedEvents.utcTime",
      "granularity": "day"
    }
  ],
  "order": {
    "TrackedEvents.utcTime": "asc"
  }
}
Edited by Max Woolf

Merge request reports