Hi,
Is there any way to display sessions on Apliqo?
Thanks,
Ali
Hi,
Is there any way to display sessions on Apliqo?
Thanks,
Ali
To show the outstanding user sessions in Apliqo, we embedded the Arc session monitor on the contentStore instance as an iframe in the custom HTML widget (or you can also use the iframe widget). The limitation is that this requires an Arc license and only admins in of the contentStore instance can see the user sessions.
If possible, could you please share your custom HTML?
And what do you use for authentication? Will CAM Security with SSO work?
You could just use the iFrame widget and put the url in Adv Options but if you want a bit more control over the CSS, put something like this in your custom HTML. If you go to your Arc session monitor, just grab that url which will be in the [arc_base_url]/#/sessions/[instance_name] syntax.
It will require separate authentication on the Arc server (since it is embedded) so as long as you have CAM SSO set up on the TM1 instances, that will be leveraged.
<iframe
src="[arc_base_url]/#/sessions/[instance_name]?frameless"
width=100%
height=1000px>
</iframe>