MCPcopy Create free account
hub / github.com/APIParkLab/APIPark / imlLogService

Struct imlLogService

service/log/iml.go:25–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23)
24
25type imlLogService struct {
26 store log_source.ILogSourceStore `autowired:""`
27 logRecordStore log_source.ILogRecordStore `autowired:""`
28}
29
30func (i *imlLogService) LogRecordsByService(ctx context.Context, serviceId string, start time.Time, end time.Time, page int, size int) ([]*Item, int64, error) {
31 list, total, err := i.logRecordStore.ListPage(ctx, "`record_time` between ? and ? and `service` = ?", page, size, []interface{}{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected