我试图通过JMX接口使用Zabbix监视Java应用程序。我使用如下命令启动了java应用程序:
<div>
<div class="input-group dropdown">
<input name="editable-select"
type="text"
class="form-control dropdown-toggle editable-select"
ng-disabled="isDisabled"
ng-model="ngModel">
<ul class="dropdown-menu">
<li ng-repeat="option in options"
ng-bind="::option"
ng-click="click(option)">
</li>
<li ng-if="other" role="presentation" class="divider"></li>
<li ng-if="other" ng-bind="other" ng-click="click(other)"></li>
</ul>
<span class="input-group-addon dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
</span>
</div>
<span class="small text-muted" ng-show="!isDisabled">Type in your selection</span>
</div>
我可以通过添加$ HOST_IP:9999使用visualVM远程监视器连接到它。但是,我无法使用相同的设置在Zabbix JMX界面中连接它。 我们需要在Zabbix中做任何其他设置,还是需要在java应用服务器中运行任何代理?谢谢。