revised comments && renamed sars to trends

This commit is contained in:
gezimbll
2024-07-02 04:55:05 -04:00
committed by Dan Christian Bogos
parent 6c2fbbec28
commit 4d4392d196
52 changed files with 853 additions and 830 deletions

View File

@@ -104,9 +104,9 @@ type DataDB interface {
SetSagProfileDrv(sq *SagProfile) (err error)
GetSagProfileDrv(tenant string, id string) (sq *SagProfile, err error)
RemSagProfileDrv(tenant string, id string) (err error)
SetSarProfileDrv(sq *SarProfile) (err error)
GetSarProfileDrv(tenant string, id string) (sq *SarProfile, err error)
RemSarProfileDrv(tenant string, id string) (err error)
SetTrendProfileDrv(sq *TrendProfile) (err error)
GetTrendProfileDrv(tenant string, id string) (sq *TrendProfile, err error)
RemTrendProfileDrv(tenant string, id string) (err error)
GetThresholdProfileDrv(tenant string, ID string) (tp *ThresholdProfile, err error)
SetThresholdProfileDrv(tp *ThresholdProfile) (err error)
RemThresholdProfileDrv(tenant, id string) (err error)
@@ -179,7 +179,7 @@ type LoadReader interface {
GetTPAccountActions(*utils.TPAccountActions) ([]*utils.TPAccountActions, error)
GetTPResources(string, string, string) ([]*utils.TPResourceProfile, error)
GetTPStats(string, string, string) ([]*utils.TPStatProfile, error)
GetTPSars(string, string, string) ([]*utils.TPSarsProfile, error)
GetTPTrends(string, string, string) ([]*utils.TPTrendsProfile, error)
GetTPSags(string, string, string) ([]*utils.TPSagsProfile, error)
GetTPThresholds(string, string, string) ([]*utils.TPThresholdProfile, error)
GetTPFilters(string, string, string) ([]*utils.TPFilterProfile, error)
@@ -205,7 +205,7 @@ type LoadWriter interface {
SetTPAccountActions([]*utils.TPAccountActions) error
SetTPResources([]*utils.TPResourceProfile) error
SetTPStats([]*utils.TPStatProfile) error
SetTPSars([]*utils.TPSarsProfile) error
SetTPTrends([]*utils.TPTrendsProfile) error
SetTPSags([]*utils.TPSagsProfile) error
SetTPThresholds([]*utils.TPThresholdProfile) error
SetTPFilters([]*utils.TPFilterProfile) error