|
|
|
@ -74,12 +74,8 @@ public class ReportEngineAttrAction extends ReportComponentAction<WorkSheetDesig
|
|
|
|
|
body.put("totalPage", layerReportAttr.isPageQuery() ? 1 : 0); |
|
|
|
|
body.put("pagesize", layerReportAttr.getCountPerPage()); |
|
|
|
|
body.put("totalNum", layerReportAttr.isEnableRowCount() ? 1 : 0); |
|
|
|
|
FocusPoint focusPoint = FocusPoint.newBuilder() |
|
|
|
|
.id(FOCUS_ID) |
|
|
|
|
.source(Original.EMBED) |
|
|
|
|
.text(getPath()) |
|
|
|
|
.body(body) |
|
|
|
|
.build(); |
|
|
|
|
FocusPoint focusPoint = FocusPoint.create(FOCUS_ID, getPath(), Original.EMBED); |
|
|
|
|
focusPoint.setBody(body.toString()); |
|
|
|
|
MetricRegistry.getMetric().submit(focusPoint); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|