ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: View queries that Sisense is sending to a live source? I was hoping for a log on the server somewhere. The reason I’m looking for that, is I also want to know what the filters are doing. They often have “working” animations. Sisense not restarting (linux) on reboot Anyone know what we should be looking for? We're ssh'd into the instance, but am not sure what to do next to troubleshoot. Found nothing in the online documentation, except for notes on how to install and reconfigure. View queries that Sisense is sending to a live source? Not sure if this is the right "Location", as this community boards "Locations" make no sense. Had a question regarding viewing the queries that Sisense is sending to a live source. I have a dashboard which is returning no data available, and I have no idea why. Querying the data directly in RedShift works fine. Is there a log I can tail to view the queries? To add some additional data, the filters on this dashboard, although set in the url via "filter" parameter and JAQL, are showing a "busy" animation. I'm not sure what they are trying to do. Updating SSL certificate on single instance Is there any way of updating the SSL certificates for a Sisense server without having to rerun the ./sisense.sh xxxx.yaml? Re: Blox dropdown? Yeah, the documentation is completely misleading. Spent several hours figuring out how to do a drop down. On top of that, the fact that sometimes attributes can be specified on the object, and sometimes on the style is completely frustrating. It feels like the documentation was written by someone who doesn’t know how the product works. Set height of Action Is there any way to set the height of the Action buttons? How about any other styling? I tried to make the text bold by putting a style on it, but it didn't seem to take. Re: Creating 'From-To' Date using BloX Great article. Was able to use this, one question though, when I click on my Action button, the dates reset to showing mm/dd/yyyy. I was hoping that it would keep the values that were applied. Re: Blox dropdown? This isn't true though. I have a concrete example, this works: { "type": "Input.ChoiceSet", "displayType": "compact", "backgroundColor": "#282c36", "choices": [ { "title": "(Any)", "value": "" }, { "title": "Item1", "value": "Item1" }, { "title": "Item2", "value": "Item2" } ] } And this renders as a set of radio buttons: { "type": "Input.ChoiceSet", "id":"selectVal", "backgroundColor": "#282c36", "choices": [ { "title": "(Any)", "value": "" }, { "title": "Item1", "value": "Item1" }, { "title": "Item2", "value": "Item2" } ] } Re: Blox dropdown? I was able to find some of the information I needed, going to add it here in case anyone else reads this: 1) Format for "choices" is "choises": [ { "title": "name1", "value":"val1" }, { "title": "name2", "value":"val2" },] 2) You MUST set "displayType":"compact", you don't even need the "id":"selectVal" Now trying to figure out how to set the height of it. It doesn't match the height of the Date picker, so it looks very weird. Re: Code example using Blox dropdown to select dashboards Great response. Had a couple questions: 1) How did you know that you have to set "displayType":"compact" to get a dropdown to render correctly? The only place that I see that in the Blox documentation is in the one code sample for Dynamic Inputs. In the docs for "Dropdown", all it says is that it's id has to be "selectVal". 2) What do you do if you want more than one dropdown? ie. what is the id? The documentation says that it has to be "selectVal", yet in my tests, using just "type", and "displayType" are enough to force a render to a dropdown.