ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Windows Compatibility Check for Linux Hello This guide provides clear steps to assess Linux compatibility for your Windows environment. By running the provided utility, you can gather essential metrics like storage utilization, aiding in gauging the feasibility of transitioning from Windows to Linux. Remember to execute this on each Sisense environment, or the build node for multi-node setups. Simply download the utility, right-click, and run it as Administrator. The collected data will be packaged in "CloudMigrationInfo.txt" on your desktop. Thanks for sharing https://cloudops-sisense.s3.us-east-2.amazonaws.com/Apps/CheckLinux.exe/CCSP Training Thank you. Re: Setting up Docker Registry for Sisense Offline Installation Hello This article offers essential insights into setting up an offline Sisense environment for enhanced security. Exploring the use of removable media like USB drives, it guides through the key prerequisites, including a Bastion host with Docker and a secure Docker registry. The Docker Registry's significance in distributing Sisense images within an isolated network is emphasized. If you're interested in a more secure Sisense deployment, this guide is a valuable resource. Thanks for sharing https://docs.sisense.com/main/SisenseLinux/installing-sisense-in-an-offline-air-gapped-environment.htm/CCSP Training/ Re: Utilizing Local Storage for Sisense Stateful Sets Hello Great guide on utilizing local storage for Sisense Stateful Sets! This detailed walkthrough is helpful for addressing specific scenarios where specialized storage configurations are necessary. Thanks for sharing these steps and considerations. Re: Using BloX Buttons - Changing Date Granularity Of Widgets In A Dashboard Hello This detailed script provides a comprehensive guide to implementing date granularity change in Sisense using BloX actions and buttons. The step-by-step instructions, accompanied by code samples, demonstrate how to create BloX actions, build BloX buttons, and achieve color animations based on button selections. This comprehensive approach allows users to seamlessly change date granularity and visually track their selection. The inclusion of a bonus section for automatically updating widgets with time series slicers adds further value. Your thorough explanation helps users apply this functionality to their Sisense environment effectively. Thank you for sharing this insightful solution. Your thorough explanation helps users apply this functionality to their Sisense environment effectively, paralleling how the CCSP Training empowers individuals to effectively implement and manage cloud security measures. Error When Trying to Execute Data Model Refresh Hello I've run into a bit of a roadblock while working on my Sisense project. I'm trying to execute a data model refresh for one of my dashboards, and I keep encountering an error that's been causing quite a headache. The error message I'm getting is: "An unexpected error occurred during data model refresh. Please try again later or contact support if the issue persists." I've attempted the refresh multiple times, but the error persists. This is the first time I'm encountering this issue, and I'm not sure how to proceed. Could anyone provide some insights on what might be causing this error and how I could potentially resolve it? Here are some additional details about my setup: Sisense version: 20.22.9 (Windows) Data source: Microsoft SQL Server Dashboard dependencies: Various widgets and calculated fields I've already checked the logs, but I couldn't find any specific information related to this error. Any guidance or suggestions would be greatly appreciated. Thanks in advance! Re: Jump to dashboard - Open New Window Hello Check below- <!DOCTYPE html> <html> <head> <title>Jump to Dashboard</title> </head> <body> <a id="dashboardLink" href="#">Jump to Dashboard</a> <script> var dashboardUrls = { dashboard1: "https://your-sisense-environment/dashboard1", dashboard2: "https://your-sisense-environment/dashboard2/ ccsp training " }; document.getElementById("dashboardLink").addEventListener("click", function(event) { event.preventDefault(); var dashboardKey = 'dashboard1'; var dashboardUrl = dashboardUrls[dashboardKey]; window.open(dashboardUrl, "_blank"); }); </script> </body> </html> Replace the placeholder URLs with your actual Sisense dashboard URLs, and you can add more URLs to the dashboardUrls object as needed. This script will allow you to open Sisense dashboards in new tabs within the same window when the "Jump to Dashboard" link is clicked. Thank you. Re: How To Find Your Sisense Version? Hello These instructions were incredibly helpful! I followed the steps and easily located my Sisense version. Thank you for providing such clear guidance. Thank you CCSP Training Re: Auditing build logs Hello For auditing cube builds in version 20.22.9 on Windows, it seems the detailed build logs you're looking for might not be readily available or are removed after the process. This absence of an off-the-shelf solution could be due to various factors. You might want to consider exploring custom logging or checking with Sisense support for potential insights or workarounds. Re: Area Chart Tooltip Hello Assuming you have data like this: var countryData = [ { name: "Country A", value: 123 }, { name: "Country B", value: 456 }, // ... ]; Customize the tooltip using D3.js: var tooltip = d3.select("body").append("div").attr("class", "tooltip").style("opacity", 0); d3.selectAll(".country") .on("mouseover", function(d) { var country = d.properties.name; var value = countryData.find(item => item.name === country).value; tooltip.transition().duration(200).style("opacity", .9); tooltip.html(country + ": " + value) .style("left", (d3.event.pageX) + "px") .style("top", (d3.event.pageY - 28) + "px"); }) .on("mouseout", function(d) { tooltip.transition().duration(500).style("opacity", 0); }); Please adjust the code as needed to fit your specific scenario and integrate it into your project.