How to Track Report Usage with the New Jedox Logs API

How to Track Report Usage with the New Jedox Logs API

Monitoring how your Jedox reports are used is one of the quickest ways to understand adoption, improve usability, and spot training needs. With the new Jedox Logs API, you can finally extract clean, structured data on which reports are opened, by whom, and when, all without digging through raw log files. In this beginner‑friendly guide, we’ll walk through how to capture report‑opening statistics and store them inside your Jedox database for analysis.Our goal is simple - Track report openings.For each date, list which user opened which report and how many times. To make this analysis possible, we prepare a small collection of dimensions: Day - Template User - via ETL Report - via ETL Counter (the number of times the report was opened) - Just simple dimension …and we store everything in a cube called: Report_Statistics You’ve already created these objects in your database — great! Now let’s look at how the Logs API helps us fill them automatically. Step 1: Getting Data from the Jedox Logs API The new...
Read More
Accessing Jedox Logs via API – A Simple Guide

Accessing Jedox Logs via API – A Simple Guide

When working with Jedox Integrator, logs are your best friend for troubleshooting and monitoring. But did you know you can access these logs programmatically using the Jedox Logs API? This is super useful if you want to automate log checks, integrate them into external monitoring tools, or simply avoid clicking through the UI every time. In this post, I’ll show you how to: Understand the Logs API endpoints Access log data using REST calls Use filters to get exactly what you need Step 1: Why Use the Logs API? Normally, you check logs in Cloud Console→Server Logs. But if you’re building automated workflows or need logs for external dashboards, the API is the way to go. It gives you: Direct access to log entries (Integrator jobs, system events, etc.) Ability to filter by date, level, or component Integration with tools like Power BI, Databricks, or custom scripts Step 2: The API Endpoint The base endpoint is: GET /https://logs.${Instance}.cloud.jedox.com/logs Step 3: Authentication You’ll need your Token, which can be found in Cloud Console Settings. Add...
Read More