| 125 | ) |
| 126 | |
| 127 | type imlMonitorStatisticsCacheService struct { |
| 128 | commonCache cache.ICommonCache `autowired:""` |
| 129 | } |
| 130 | |
| 131 | func (i *imlMonitorStatisticsCacheService) GetStatisticsCache(ctx context.Context, partitionId string, start, end time.Time, groupBy string, wheres []MonWhereItem, limit int) (map[string]MonCommonData, error) { |
| 132 | key := fmt.Sprintf("monitor:statistics:%s:%d_%d:%s:%s:%d", partitionId, start.Unix(), end.Unix(), groupBy, formatWhereKey(wheres), limit) |
nothing calls this directly
no outgoing calls
no test coverage detected