(ctx context.Context, apiId string, input *monitor_dto.StatisticInput)
| 861 | } |
| 862 | |
| 863 | func (i *imlMonitorStatisticModule) ProviderStatisticsOnApi(ctx context.Context, apiId string, input *monitor_dto.StatisticInput) ([]*monitor_dto.ServiceStatisticBasicItem, error) { |
| 864 | clusterId := cluster.DefaultClusterID |
| 865 | return i.statisticOnApi(ctx, clusterId, apiId, "provider", input) |
| 866 | } |
| 867 | |
| 868 | func (i *imlMonitorStatisticModule) ApiStatisticsOnProvider(ctx context.Context, providerId string, input *monitor_dto.StatisticInput) ([]*monitor_dto.ApiStatisticBasicItem, error) { |
| 869 | clusterId := cluster.DefaultClusterID |
nothing calls this directly
no test coverage detected