(ctx *gin.Context, start string, end string)
| 27 | } |
| 28 | |
| 29 | func (i *imlMonitorStatisticController) ChartAIOverview(ctx *gin.Context, start string, end string) (*monitor_dto.ChartAIOverview, error) { |
| 30 | s, e, err := formatTime(start, end) |
| 31 | if err != nil { |
| 32 | return nil, err |
| 33 | } |
| 34 | return i.module.AIChartOverview(ctx, "", s, e) |
| 35 | } |
| 36 | |
| 37 | func (i *imlMonitorStatisticController) AITopN(ctx *gin.Context, start string, end string, limit string) ([]*monitor_dto.TopN, []*monitor_dto.TopN, error) { |
| 38 | s, e, err := formatTime(start, end) |
nothing calls this directly
no test coverage detected