In Zabbix 1.6.4 the group selection dropdown on most if not all screens displays the master node name for every group rather than the group name. Here's an example html fragment from the Monitor => Latest Data screen:
<select id="groupid" name="groupid" class="biginput" size="1" onchange="javascript: submit();">
<option value="0" selected="selected">all</option>
<option value="100100000000024">Monitor</option>
<option value="100100000000015">Monitor</option>
...
</select>
<select id="groupid" name="groupid" class="biginput" size="1" onchange="javascript: submit();">
<option value="0" selected="selected">all</option>
<option value="100100000000024">Monitor</option>
<option value="100100000000015">Monitor</option>
...
</select>
Comment