added trend dynamicDP in filters and GetTrendSummary API

This commit is contained in:
gezimbll
2024-10-17 15:52:03 +02:00
committed by Dan Christian Bogos
parent dd59fcb553
commit 2e192dde78
18 changed files with 191 additions and 32 deletions

View File

@@ -94,3 +94,7 @@ func (trs *TrendSv1) GetTrend(ctx *context.Context, args *utils.ArgGetTrend, tre
func (trs *TrendSv1) GetScheduledTrends(ctx *context.Context, args *utils.ArgScheduledTrends, schedTrends *[]utils.ScheduledTrend) error {
return trs.trS.V1GetScheduledTrends(ctx, args, schedTrends)
}
func (trs *TrendSv1) GetTrendSummary(ctx *context.Context, arg utils.TenantIDWithAPIOpts, reply *engine.TrendSummary) error {
return trs.trS.V1GetTrendSummary(ctx, arg, reply)
}