MCPcopy Index your code
hub / github.com/APIParkLab/APIPark / ChartAIOverview

Method ChartAIOverview

controller/monitor/iml.go:29–35  ·  view source on GitHub ↗
(ctx *gin.Context, start string, end string)

Source from the content-addressed store, hash-verified

27}
28
29func (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
37func (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)

Callers

nothing calls this directly

Calls 2

formatTimeFunction · 0.70
AIChartOverviewMethod · 0.65

Tested by

no test coverage detected