0

I have created a dashboard in Kibana-4 and shared on my Web-app. There is option to see table,request,response how to hide it?

4

1 回答 1

0

要删除可视化器的选项请求/响应,我在 kibana 文件“src/public/index.js”中进行了更改。删除了请求/响应的 require('registry/spy_modes')

.register(function () {
return {
  name: 'request',
  display: 'Request',
  order: 2,
  template: reqRespStatsHTML,
  link: linkReqRespStats
};
})
.register(function () {
return {
  name: 'response',
  display: 'Response',
  order: 3,
  template: reqRespStatsHTML,
  link: linkReqRespStats
};
})
于 2015-04-17T17:51:23.477 回答