System Options
To display MinimumRefreshSeconds
(seconds), and DefaultFixletVisibility
(Visible,
Hidden) run the following command:
./iem get admin/options
The command returns the list of options in XML format as follows:
<?xml version="1.0" encoding="UTF-8"?>
<BESAPI xmlns:xsi="http://www.w3.org/2001
/XMLSchema-instance" xsi:noNamespaceSchemaLocation="BESAPI.xsd">
<SystemOptions Resource="https://nc926065:52311/api/admin/options">
<MinimumRefreshSeconds>15</MinimumRefreshSeconds>
<DefaultFixletVisibility>Visible</DefaultFixletVisibility>
</SystemOptions>
</BESAPI>
To set the system option MinimumRefreshSeconds
create
an XML file (SystemOptions.xml
) as follows:
<?xml version="1.0" encoding="UTF-8"?>
<BESAPI xmlns:xsi="http://www.w3.org/2001
/XMLSchema-instance" xsi:noNamespaceSchemaLocation="BESAPI.xsd">
<SystemOptions Resource="https://nc926065:52311/api/admin/options">
<MinimumRefreshSeconds>20</MinimumRefreshSeconds>
<DefaultFixletVisibility>Hidden</DefaultFixletVisibility>
</SystemOptions>
</BESAPI>
Use the following command to set the appropriate attribute:
./iem post /TEM/SystemOptions.xml admin/options