mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
revise comments in trends
This commit is contained in:
committed by
Dan Christian Bogos
parent
c762de5c28
commit
a3d385dd2f
165
trends/trends.go
165
trends/trends.go
@@ -38,22 +38,19 @@ type TrendS struct {
|
|||||||
fltrS *engine.FilterS
|
fltrS *engine.FilterS
|
||||||
connMgr *engine.ConnManager
|
connMgr *engine.ConnManager
|
||||||
|
|
||||||
crn *cron.Cron // cron refernce
|
crn *cron.Cron // cron refernce
|
||||||
|
crnTQsMux *sync.RWMutex // protects the crnTQs
|
||||||
crnTQsMux *sync.RWMutex // protects the crnTQs
|
crnTQs map[string]map[string]cron.EntryID // save the EntryIDs for TrendQueries so we can reschedule them when needed
|
||||||
crnTQs map[string]map[string]cron.EntryID // save the EntryIDs for TrendQueries so we can reschedule them when needed
|
sTrndsMux sync.RWMutex // protects storedTrends
|
||||||
|
storedTrends utils.StringSet // keep a record of trends which need saving, map[trendTenantID]bool
|
||||||
storedTrends utils.StringSet // keep a record of trends which need saving, map[trendTenantID]bool
|
storingStopped chan struct{} // signal back that the operations were stopped
|
||||||
sTrndsMux sync.RWMutex // protects storedTrends
|
trendStop chan struct{} // signal to stop all operations
|
||||||
storingStopped chan struct{} // signal back that the operations were stopped
|
loopStopped chan struct{}
|
||||||
|
|
||||||
loopStopped chan struct{}
|
|
||||||
trendStop chan struct{} // signal to stop all operations
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTrendService creates a new TrendS service.
|
// NewTrendService creates a new TrendS service.
|
||||||
func NewTrendService(dm *engine.DataManager,
|
func NewTrendService(dm *engine.DataManager,
|
||||||
cgrcfg *config.CGRConfig, filterS *engine.FilterS, connMgr *engine.ConnManager) (tS *TrendS) {
|
cgrcfg *config.CGRConfig, filterS *engine.FilterS, connMgr *engine.ConnManager) *TrendS {
|
||||||
return &TrendS{
|
return &TrendS{
|
||||||
dm: dm,
|
dm: dm,
|
||||||
cfg: cgrcfg,
|
cfg: cgrcfg,
|
||||||
@@ -71,9 +68,9 @@ func NewTrendService(dm *engine.DataManager,
|
|||||||
|
|
||||||
// computeTrend queries a stat and builds the Trend for it based on the TrendProfile configuration.
|
// computeTrend queries a stat and builds the Trend for it based on the TrendProfile configuration.
|
||||||
// Called by Cron service at scheduled intervals.
|
// Called by Cron service at scheduled intervals.
|
||||||
func (tS *TrendS) computeTrend(ctx *context.Context, tP *utils.TrendProfile) {
|
func (t *TrendS) computeTrend(ctx *context.Context, tP *utils.TrendProfile) {
|
||||||
var floatMetrics map[string]float64
|
var floatMetrics map[string]float64
|
||||||
if err := tS.connMgr.Call(context.Background(), tS.cfg.TrendSCfg().StatSConns,
|
if err := t.connMgr.Call(context.Background(), t.cfg.TrendSCfg().StatSConns,
|
||||||
utils.StatSv1GetQueueFloatMetrics,
|
utils.StatSv1GetQueueFloatMetrics,
|
||||||
&utils.TenantIDWithAPIOpts{TenantID: &utils.TenantID{Tenant: tP.Tenant, ID: tP.StatID}},
|
&utils.TenantIDWithAPIOpts{TenantID: &utils.TenantID{Tenant: tP.Tenant, ID: tP.StatID}},
|
||||||
&floatMetrics); err != nil {
|
&floatMetrics); err != nil {
|
||||||
@@ -83,7 +80,7 @@ func (tS *TrendS) computeTrend(ctx *context.Context, tP *utils.TrendProfile) {
|
|||||||
utils.TrendS, tP.Tenant, tP.ID, tP.StatID, err.Error()))
|
utils.TrendS, tP.Tenant, tP.ID, tP.StatID, err.Error()))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
trnd, err := tS.dm.GetTrend(ctx, tP.Tenant, tP.ID, true, true, utils.NonTransactional)
|
trnd, err := t.dm.GetTrend(ctx, tP.Tenant, tP.ID, true, true, utils.NonTransactional)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
@@ -124,7 +121,7 @@ func (tS *TrendS) computeTrend(ctx *context.Context, tP *utils.TrendProfile) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if mWt.TrendGrowth, err = trnd.GetTrendGrowth(mID, mWt.Value, tP.CorrelationType,
|
if mWt.TrendGrowth, err = trnd.GetTrendGrowth(mID, mWt.Value, tP.CorrelationType,
|
||||||
tS.cfg.GeneralCfg().RoundingDecimals); err != nil {
|
t.cfg.GeneralCfg().RoundingDecimals); err != nil {
|
||||||
mWt.TrendLabel = utils.NotAvailable
|
mWt.TrendLabel = utils.NotAvailable
|
||||||
} else {
|
} else {
|
||||||
mWt.TrendLabel = utils.GetTrendLabel(mWt.TrendGrowth, tP.Tolerance)
|
mWt.TrendLabel = utils.GetTrendLabel(mWt.TrendGrowth, tP.Tolerance)
|
||||||
@@ -132,20 +129,20 @@ func (tS *TrendS) computeTrend(ctx *context.Context, tP *utils.TrendProfile) {
|
|||||||
trnd.Metrics[now][mWt.ID] = mWt
|
trnd.Metrics[now][mWt.ID] = mWt
|
||||||
trnd.IndexesAppendMetric(mWt, now)
|
trnd.IndexesAppendMetric(mWt, now)
|
||||||
}
|
}
|
||||||
if err = tS.storeTrend(ctx, trnd); err != nil {
|
if err = t.storeTrend(ctx, trnd); err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"<%s> setting Trend with id: <%s:%s> DM error: <%s>",
|
"<%s> setting Trend with id: <%s:%s> DM error: <%s>",
|
||||||
utils.TrendS, tP.Tenant, tP.ID, err.Error()))
|
utils.TrendS, tP.Tenant, tP.ID, err.Error()))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err = tS.processThresholds(trnd); err != nil {
|
if err = t.processThresholds(trnd); err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"<%s> Trend with id <%s:%s> error: <%s> with ThresholdS",
|
"<%s> Trend with id <%s:%s> error: <%s> with ThresholdS",
|
||||||
utils.TrendS, tP.Tenant, tP.ID, err.Error()))
|
utils.TrendS, tP.Tenant, tP.ID, err.Error()))
|
||||||
}
|
}
|
||||||
if err = tS.processEEs(trnd); err != nil {
|
if err = t.processEEs(trnd); err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"<%s> Trend with id <%s:%s> error: <%s> with EEs",
|
"<%s> Trend with id <%s:%s> error: <%s> with EEs",
|
||||||
@@ -155,12 +152,12 @@ func (tS *TrendS) computeTrend(ctx *context.Context, tP *utils.TrendProfile) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// processThresholds sends the computed trend to ThresholdS.
|
// processThresholds sends the computed trend to ThresholdS.
|
||||||
func (tS *TrendS) processThresholds(trnd *utils.Trend) (err error) {
|
func (t *TrendS) processThresholds(trnd *utils.Trend) (err error) {
|
||||||
if len(trnd.RunTimes) == 0 ||
|
if len(trnd.RunTimes) == 0 ||
|
||||||
len(trnd.RunTimes) < trnd.Config().MinItems {
|
len(trnd.RunTimes) < trnd.Config().MinItems {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if len(tS.cfg.TrendSCfg().ThresholdSConns) == 0 {
|
if len(t.cfg.TrendSCfg().ThresholdSConns) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
opts := map[string]any{
|
opts := map[string]any{
|
||||||
@@ -189,7 +186,7 @@ func (tS *TrendS) processThresholds(trnd *utils.Trend) (err error) {
|
|||||||
}
|
}
|
||||||
var withErrs bool
|
var withErrs bool
|
||||||
var tIDs []string
|
var tIDs []string
|
||||||
if err := tS.connMgr.Call(context.TODO(), tS.cfg.TrendSCfg().ThresholdSConns,
|
if err := t.connMgr.Call(context.TODO(), t.cfg.TrendSCfg().ThresholdSConns,
|
||||||
utils.ThresholdSv1ProcessEvent, trndEv, &tIDs); err != nil &&
|
utils.ThresholdSv1ProcessEvent, trndEv, &tIDs); err != nil &&
|
||||||
(len(thIDs) != 0 || err.Error() != utils.ErrNotFound.Error()) {
|
(len(thIDs) != 0 || err.Error() != utils.ErrNotFound.Error()) {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
@@ -203,12 +200,12 @@ func (tS *TrendS) processThresholds(trnd *utils.Trend) (err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// processEEs sends the computed trend to EEs.
|
// processEEs sends the computed trend to EEs.
|
||||||
func (tS *TrendS) processEEs(trnd *utils.Trend) (err error) {
|
func (t *TrendS) processEEs(trnd *utils.Trend) (err error) {
|
||||||
if len(trnd.RunTimes) == 0 ||
|
if len(trnd.RunTimes) == 0 ||
|
||||||
len(trnd.RunTimes) < trnd.Config().MinItems {
|
len(trnd.RunTimes) < trnd.Config().MinItems {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if len(tS.cfg.TrendSCfg().EEsConns) == 0 {
|
if len(t.cfg.TrendSCfg().EEsConns) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
opts := map[string]any{
|
opts := map[string]any{
|
||||||
@@ -226,11 +223,11 @@ func (tS *TrendS) processEEs(trnd *utils.Trend) (err error) {
|
|||||||
utils.Metrics: ts.Metrics,
|
utils.Metrics: ts.Metrics,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
EeIDs: tS.cfg.TrendSCfg().EEsExporterIDs,
|
EeIDs: t.cfg.TrendSCfg().EEsExporterIDs,
|
||||||
}
|
}
|
||||||
var withErrs bool
|
var withErrs bool
|
||||||
var reply map[string]map[string]any
|
var reply map[string]map[string]any
|
||||||
if err := tS.connMgr.Call(context.TODO(), tS.cfg.TrendSCfg().EEsConns,
|
if err := t.connMgr.Call(context.TODO(), t.cfg.TrendSCfg().EEsConns,
|
||||||
utils.EeSv1ProcessEvent, trndEv, &reply); err != nil &&
|
utils.EeSv1ProcessEvent, trndEv, &reply); err != nil &&
|
||||||
err.Error() != utils.ErrNotFound.Error() {
|
err.Error() != utils.ErrNotFound.Error() {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
@@ -244,33 +241,33 @@ func (tS *TrendS) processEEs(trnd *utils.Trend) (err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// storeTrend stores or schedules the trend for storage based on "store_interval".
|
// storeTrend stores or schedules the trend for storage based on "store_interval".
|
||||||
func (tS *TrendS) storeTrend(ctx *context.Context, trnd *utils.Trend) (err error) {
|
func (t *TrendS) storeTrend(ctx *context.Context, trnd *utils.Trend) (err error) {
|
||||||
if tS.cfg.TrendSCfg().StoreInterval == 0 {
|
if t.cfg.TrendSCfg().StoreInterval == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if tS.cfg.TrendSCfg().StoreInterval == -1 {
|
if t.cfg.TrendSCfg().StoreInterval == -1 {
|
||||||
return tS.dm.SetTrend(ctx, trnd)
|
return t.dm.SetTrend(ctx, trnd)
|
||||||
}
|
}
|
||||||
|
|
||||||
// schedule the asynchronous save, relies for Trend to be in cache
|
// schedule the asynchronous save, relies for Trend to be in cache
|
||||||
tS.sTrndsMux.Lock()
|
t.sTrndsMux.Lock()
|
||||||
tS.storedTrends.Add(trnd.TenantID())
|
t.storedTrends.Add(trnd.TenantID())
|
||||||
tS.sTrndsMux.Unlock()
|
t.sTrndsMux.Unlock()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// storeTrends stores modified trends from cache in dataDB
|
// storeTrends stores modified trends from cache in dataDB
|
||||||
// Reschedules failed trend IDs for next storage cycle.
|
// Reschedules failed trend IDs for next storage cycle.
|
||||||
// This function is safe for concurrent use.
|
// This function is safe for concurrent use.
|
||||||
func (tS *TrendS) storeTrends(ctx *context.Context) {
|
func (t *TrendS) storeTrends(ctx *context.Context) {
|
||||||
var failedTrndIDs []string
|
var failedTrndIDs []string
|
||||||
for {
|
for {
|
||||||
tS.sTrndsMux.Lock()
|
t.sTrndsMux.Lock()
|
||||||
trndID := tS.storedTrends.GetOne()
|
trndID := t.storedTrends.GetOne()
|
||||||
if trndID != utils.EmptyString {
|
if trndID != utils.EmptyString {
|
||||||
tS.storedTrends.Remove(trndID)
|
t.storedTrends.Remove(trndID)
|
||||||
}
|
}
|
||||||
tS.sTrndsMux.Unlock()
|
t.sTrndsMux.Unlock()
|
||||||
if trndID == utils.EmptyString {
|
if trndID == utils.EmptyString {
|
||||||
break // no more keys, backup completed
|
break // no more keys, backup completed
|
||||||
}
|
}
|
||||||
@@ -284,7 +281,7 @@ func (tS *TrendS) storeTrends(ctx *context.Context) {
|
|||||||
}
|
}
|
||||||
trnd := trndIf.(*utils.Trend)
|
trnd := trndIf.(*utils.Trend)
|
||||||
trnd.Lock()
|
trnd.Lock()
|
||||||
if err := tS.dm.SetTrend(ctx, trnd); err != nil {
|
if err := t.dm.SetTrend(ctx, trnd); err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf("<%s> failed storing Trend with ID: %q, err: %q",
|
fmt.Sprintf("<%s> failed storing Trend with ID: %q, err: %q",
|
||||||
utils.TrendS, trndID, err))
|
utils.TrendS, trndID, err))
|
||||||
@@ -295,24 +292,24 @@ func (tS *TrendS) storeTrends(ctx *context.Context) {
|
|||||||
runtime.Gosched()
|
runtime.Gosched()
|
||||||
}
|
}
|
||||||
if len(failedTrndIDs) != 0 { // there were errors on save, schedule the keys for next backup
|
if len(failedTrndIDs) != 0 { // there were errors on save, schedule the keys for next backup
|
||||||
tS.sTrndsMux.Lock()
|
t.sTrndsMux.Lock()
|
||||||
tS.storedTrends.AddSlice(failedTrndIDs)
|
t.storedTrends.AddSlice(failedTrndIDs)
|
||||||
tS.sTrndsMux.Unlock()
|
t.sTrndsMux.Unlock()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// asyncStoreTrends runs as a background process that periodically calls storeTrends.
|
// asyncStoreTrends runs as a background process that periodically calls storeTrends.
|
||||||
func (tS *TrendS) asyncStoreTrends(ctx *context.Context) {
|
func (t *TrendS) asyncStoreTrends(ctx *context.Context) {
|
||||||
storeInterval := tS.cfg.TrendSCfg().StoreInterval
|
storeInterval := t.cfg.TrendSCfg().StoreInterval
|
||||||
if storeInterval <= 0 {
|
if storeInterval <= 0 {
|
||||||
close(tS.storingStopped)
|
close(t.storingStopped)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
for {
|
for {
|
||||||
tS.storeTrends(ctx)
|
t.storeTrends(ctx)
|
||||||
select {
|
select {
|
||||||
case <-tS.trendStop:
|
case <-t.trendStop:
|
||||||
close(tS.storingStopped)
|
close(t.storingStopped)
|
||||||
return
|
return
|
||||||
case <-time.After(storeInterval): // continue to another storing loop
|
case <-time.After(storeInterval): // continue to another storing loop
|
||||||
}
|
}
|
||||||
@@ -320,21 +317,21 @@ func (tS *TrendS) asyncStoreTrends(ctx *context.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// StartTrendS activates the Cron service with scheduled trend queries.
|
// StartTrendS activates the Cron service with scheduled trend queries.
|
||||||
func (tS *TrendS) StartTrendS(ctx *context.Context) error {
|
func (t *TrendS) StartTrendS(ctx *context.Context) error {
|
||||||
if err := tS.scheduleAutomaticQueries(ctx); err != nil {
|
if err := t.scheduleAutomaticQueries(ctx); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
tS.crn.Start()
|
t.crn.Start()
|
||||||
go tS.asyncStoreTrends(ctx)
|
go t.asyncStoreTrends(ctx)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// StopTrendS gracefully shuts down Cron tasks and trend operations.
|
// StopTrendS gracefully shuts down Cron tasks and trend operations.
|
||||||
func (tS *TrendS) StopTrendS() {
|
func (t *TrendS) StopTrendS() {
|
||||||
timeEnd := time.Now().Add(tS.cfg.CoreSCfg().ShutdownTimeout)
|
timeEnd := time.Now().Add(t.cfg.CoreSCfg().ShutdownTimeout)
|
||||||
|
|
||||||
crnctx := tS.crn.Stop()
|
crnctx := t.crn.Stop()
|
||||||
close(tS.trendStop)
|
close(t.trendStop)
|
||||||
|
|
||||||
// Wait for cron
|
// Wait for cron
|
||||||
select {
|
select {
|
||||||
@@ -348,7 +345,7 @@ func (tS *TrendS) StopTrendS() {
|
|||||||
}
|
}
|
||||||
// Wait for backup and other operations
|
// Wait for backup and other operations
|
||||||
select {
|
select {
|
||||||
case <-tS.storingStopped:
|
case <-t.storingStopped:
|
||||||
case <-time.After(time.Until(timeEnd)):
|
case <-time.After(time.Until(timeEnd)):
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
@@ -359,21 +356,21 @@ func (tS *TrendS) StopTrendS() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Reload restarts trend services with updated configuration.
|
// Reload restarts trend services with updated configuration.
|
||||||
func (tS *TrendS) Reload(ctx *context.Context) {
|
func (t *TrendS) Reload(ctx *context.Context) {
|
||||||
crnctx := tS.crn.Stop()
|
crnctx := t.crn.Stop()
|
||||||
close(tS.trendStop)
|
close(t.trendStop)
|
||||||
<-crnctx.Done()
|
<-crnctx.Done()
|
||||||
<-tS.storingStopped
|
<-t.storingStopped
|
||||||
tS.trendStop = make(chan struct{})
|
t.trendStop = make(chan struct{})
|
||||||
tS.storingStopped = make(chan struct{})
|
t.storingStopped = make(chan struct{})
|
||||||
tS.crn.Start()
|
t.crn.Start()
|
||||||
go tS.asyncStoreTrends(ctx)
|
go t.asyncStoreTrends(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
// scheduleAutomaticQueries schedules initial trend queries based on configuration.
|
// scheduleAutomaticQueries schedules initial trend queries based on configuration.
|
||||||
func (tS *TrendS) scheduleAutomaticQueries(ctx *context.Context) error {
|
func (t *TrendS) scheduleAutomaticQueries(ctx *context.Context) error {
|
||||||
schedData := make(map[string][]string)
|
schedData := make(map[string][]string)
|
||||||
for k, v := range tS.cfg.TrendSCfg().ScheduledIDs {
|
for k, v := range t.cfg.TrendSCfg().ScheduledIDs {
|
||||||
schedData[k] = v
|
schedData[k] = v
|
||||||
}
|
}
|
||||||
var tnts []string
|
var tnts []string
|
||||||
@@ -386,7 +383,7 @@ func (tS *TrendS) scheduleAutomaticQueries(ctx *context.Context) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if tnts != nil {
|
if tnts != nil {
|
||||||
qrydData, err := tS.dm.GetTrendProfileIDs(ctx, tnts)
|
qrydData, err := t.dm.GetTrendProfileIDs(ctx, tnts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -395,7 +392,7 @@ func (tS *TrendS) scheduleAutomaticQueries(ctx *context.Context) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
for tnt, tIDs := range schedData {
|
for tnt, tIDs := range schedData {
|
||||||
if _, err := tS.scheduleTrendQueries(ctx, tnt, tIDs); err != nil {
|
if _, err := t.scheduleTrendQueries(ctx, tnt, tIDs); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -404,36 +401,36 @@ func (tS *TrendS) scheduleAutomaticQueries(ctx *context.Context) error {
|
|||||||
|
|
||||||
// scheduleTrendQueries schedules or reschedules specific trend queries
|
// scheduleTrendQueries schedules or reschedules specific trend queries
|
||||||
// Safe for concurrent use.
|
// Safe for concurrent use.
|
||||||
func (tS *TrendS) scheduleTrendQueries(ctx *context.Context, tnt string, tIDs []string) (scheduled int, err error) {
|
func (t *TrendS) scheduleTrendQueries(ctx *context.Context, tnt string, tIDs []string) (scheduled int, err error) {
|
||||||
var partial bool
|
var partial bool
|
||||||
tS.crnTQsMux.Lock()
|
t.crnTQsMux.Lock()
|
||||||
if _, has := tS.crnTQs[tnt]; !has {
|
if _, has := t.crnTQs[tnt]; !has {
|
||||||
tS.crnTQs[tnt] = make(map[string]cron.EntryID)
|
t.crnTQs[tnt] = make(map[string]cron.EntryID)
|
||||||
}
|
}
|
||||||
tS.crnTQsMux.Unlock()
|
t.crnTQsMux.Unlock()
|
||||||
for _, tID := range tIDs {
|
for _, tID := range tIDs {
|
||||||
tS.crnTQsMux.RLock()
|
t.crnTQsMux.RLock()
|
||||||
if entryID, has := tS.crnTQs[tnt][tID]; has {
|
if entryID, has := t.crnTQs[tnt][tID]; has {
|
||||||
tS.crn.Remove(entryID) // deschedule the query
|
t.crn.Remove(entryID) // deschedule the query
|
||||||
}
|
}
|
||||||
tS.crnTQsMux.RUnlock()
|
t.crnTQsMux.RUnlock()
|
||||||
if tP, err := tS.dm.GetTrendProfile(ctx, tnt, tID, true, true, utils.NonTransactional); err != nil {
|
if tP, err := t.dm.GetTrendProfile(ctx, tnt, tID, true, true, utils.NonTransactional); err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"<%s> failed retrieving TrendProfile with id: <%s:%s> for scheduling, error: <%s>",
|
"<%s> failed retrieving TrendProfile with id: <%s:%s> for scheduling, error: <%s>",
|
||||||
utils.TrendS, tnt, tID, err.Error()))
|
utils.TrendS, tnt, tID, err.Error()))
|
||||||
partial = true
|
partial = true
|
||||||
} else if entryID, err := tS.crn.AddFunc(tP.Schedule,
|
} else if entryID, err := t.crn.AddFunc(tP.Schedule,
|
||||||
func() { tS.computeTrend(ctx, tP.Clone()) }); err != nil {
|
func() { t.computeTrend(ctx, tP.Clone()) }); err != nil {
|
||||||
utils.Logger.Warning(
|
utils.Logger.Warning(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"<%s> scheduling TrendProfile <%s:%s>, error: <%s>",
|
"<%s> scheduling TrendProfile <%s:%s>, error: <%s>",
|
||||||
utils.TrendS, tnt, tID, err.Error()))
|
utils.TrendS, tnt, tID, err.Error()))
|
||||||
partial = true
|
partial = true
|
||||||
} else { // log the entry ID for debugging
|
} else { // log the entry ID for debugging
|
||||||
tS.crnTQsMux.Lock()
|
t.crnTQsMux.Lock()
|
||||||
tS.crnTQs[tP.Tenant][tP.ID] = entryID
|
t.crnTQs[tP.Tenant][tP.ID] = entryID
|
||||||
tS.crnTQsMux.Unlock()
|
t.crnTQsMux.Unlock()
|
||||||
scheduled++
|
scheduled++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,28 +48,28 @@ type TrendProfileWithAPIOpts struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Clone creates a deep copy of TrendProfile for thread-safe use.
|
// Clone creates a deep copy of TrendProfile for thread-safe use.
|
||||||
func (tP *TrendProfile) Clone() (clnTp *TrendProfile) {
|
func (tp *TrendProfile) Clone() (clnTp *TrendProfile) {
|
||||||
clnTp = &TrendProfile{
|
clnTp = &TrendProfile{
|
||||||
Tenant: tP.Tenant,
|
Tenant: tp.Tenant,
|
||||||
ID: tP.ID,
|
ID: tp.ID,
|
||||||
Schedule: tP.Schedule,
|
Schedule: tp.Schedule,
|
||||||
StatID: tP.StatID,
|
StatID: tp.StatID,
|
||||||
QueueLength: tP.QueueLength,
|
QueueLength: tp.QueueLength,
|
||||||
TTL: tP.TTL,
|
TTL: tp.TTL,
|
||||||
MinItems: tP.MinItems,
|
MinItems: tp.MinItems,
|
||||||
CorrelationType: tP.CorrelationType,
|
CorrelationType: tp.CorrelationType,
|
||||||
Tolerance: tP.Tolerance,
|
Tolerance: tp.Tolerance,
|
||||||
Stored: tP.Stored,
|
Stored: tp.Stored,
|
||||||
}
|
}
|
||||||
if tP.Metrics != nil {
|
if tp.Metrics != nil {
|
||||||
clnTp.Metrics = make([]string, len(tP.Metrics))
|
clnTp.Metrics = make([]string, len(tp.Metrics))
|
||||||
for i, mID := range tP.Metrics {
|
for i, mID := range tp.Metrics {
|
||||||
clnTp.Metrics[i] = mID
|
clnTp.Metrics[i] = mID
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if tP.ThresholdIDs != nil {
|
if tp.ThresholdIDs != nil {
|
||||||
clnTp.ThresholdIDs = make([]string, len(tP.ThresholdIDs))
|
clnTp.ThresholdIDs = make([]string, len(tp.ThresholdIDs))
|
||||||
for i, tID := range tP.ThresholdIDs {
|
for i, tID := range tp.ThresholdIDs {
|
||||||
clnTp.ThresholdIDs[i] = tID
|
clnTp.ThresholdIDs[i] = tID
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -77,10 +77,11 @@ func (tP *TrendProfile) Clone() (clnTp *TrendProfile) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TenantID returns the concatenated tenant and ID.
|
// TenantID returns the concatenated tenant and ID.
|
||||||
func (srp *TrendProfile) TenantID() string {
|
func (tp *TrendProfile) TenantID() string {
|
||||||
return ConcatenatedKey(srp.Tenant, srp.ID)
|
return ConcatenatedKey(tp.Tenant, tp.ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set implements the profile interface, setting values in TrendProfile based on path.
|
||||||
func (tp *TrendProfile) Set(path []string, val any, _ bool) (err error) {
|
func (tp *TrendProfile) Set(path []string, val any, _ bool) (err error) {
|
||||||
if len(path) != 1 {
|
if len(path) != 1 {
|
||||||
return ErrWrongPath
|
return ErrWrongPath
|
||||||
@@ -121,6 +122,7 @@ func (tp *TrendProfile) Set(path []string, val any, _ bool) (err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Merge implements the profile interface, merging values from another TrendProfile.
|
||||||
func (tp *TrendProfile) Merge(v2 any) {
|
func (tp *TrendProfile) Merge(v2 any) {
|
||||||
vi := v2.(*TrendProfile)
|
vi := v2.(*TrendProfile)
|
||||||
if len(vi.Tenant) != 0 {
|
if len(vi.Tenant) != 0 {
|
||||||
@@ -157,8 +159,10 @@ func (tp *TrendProfile) Merge(v2 any) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// String implements the DataProvider interface, returning the TrendProfile in JSON format.
|
||||||
func (tp *TrendProfile) String() string { return ToJSON(tp) }
|
func (tp *TrendProfile) String() string { return ToJSON(tp) }
|
||||||
|
|
||||||
|
// FieldAsString implements the DataProvider interface, retrieving field value as string.
|
||||||
func (tp *TrendProfile) FieldAsString(fldPath []string) (_ string, err error) {
|
func (tp *TrendProfile) FieldAsString(fldPath []string) (_ string, err error) {
|
||||||
var val any
|
var val any
|
||||||
if val, err = tp.FieldAsInterface(fldPath); err != nil {
|
if val, err = tp.FieldAsInterface(fldPath); err != nil {
|
||||||
@@ -167,6 +171,7 @@ func (tp *TrendProfile) FieldAsString(fldPath []string) (_ string, err error) {
|
|||||||
return IfaceAsString(val), nil
|
return IfaceAsString(val), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FieldAsInterface implements the DataProvider interface, retrieving field value as interface.
|
||||||
func (tp *TrendProfile) FieldAsInterface(fldPath []string) (_ any, err error) {
|
func (tp *TrendProfile) FieldAsInterface(fldPath []string) (_ any, err error) {
|
||||||
if len(fldPath) != 1 {
|
if len(fldPath) != 1 {
|
||||||
return nil, ErrNotFound
|
return nil, ErrNotFound
|
||||||
@@ -262,8 +267,8 @@ func NewTrendFromProfile(tP *TrendProfile) *Trend {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tr *Trend) TenantID() string {
|
func (t *Trend) TenantID() string {
|
||||||
return ConcatenatedKey(tr.Tenant, tr.ID)
|
return ConcatenatedKey(t.Tenant, t.ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Config returns the trend's profile configuration.
|
// Config returns the trend's profile configuration.
|
||||||
@@ -271,6 +276,7 @@ func (t *Trend) Config() *TrendProfile {
|
|||||||
return t.tPrfl
|
return t.tPrfl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetConfig sets the trend's profile configuration.
|
||||||
func (t *Trend) SetConfig(tp *TrendProfile) {
|
func (t *Trend) SetConfig(tp *TrendProfile) {
|
||||||
t.tPrfl = tp
|
t.tPrfl = tp
|
||||||
}
|
}
|
||||||
@@ -422,23 +428,6 @@ func (t *Trend) GetTrendGrowth(mID string, mVal float64, correlation string, rou
|
|||||||
return Round(diffVal*100/prevVal, roundDec, MetaRoundingMiddle), nil
|
return Round(diffVal*100/prevVal, roundDec, MetaRoundingMiddle), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetTrendLabel determines trend direction based on growth percentage and tolerance.
|
|
||||||
// Returns "*positive", "*negative", "*constant", or "N/A" based on the growth value.
|
|
||||||
func GetTrendLabel(tGrowth float64, tolerance float64) (lbl string) {
|
|
||||||
switch {
|
|
||||||
case tGrowth > 0:
|
|
||||||
lbl = MetaPositive
|
|
||||||
case tGrowth < 0:
|
|
||||||
lbl = MetaNegative
|
|
||||||
default:
|
|
||||||
lbl = MetaConstant
|
|
||||||
}
|
|
||||||
if math.Abs(tGrowth) <= tolerance { // percentage value of diff is lower than threshold
|
|
||||||
lbl = MetaConstant
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Lock locks the trend mutex.
|
// Lock locks the trend mutex.
|
||||||
func (t *Trend) Lock() {
|
func (t *Trend) Lock() {
|
||||||
t.tMux.Lock()
|
t.tMux.Lock()
|
||||||
@@ -458,3 +447,20 @@ func (t *Trend) RLock() {
|
|||||||
func (t *Trend) RUnlock() {
|
func (t *Trend) RUnlock() {
|
||||||
t.tMux.RUnlock()
|
t.tMux.RUnlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetTrendLabel determines trend direction based on growth percentage and tolerance.
|
||||||
|
// Returns "*positive", "*negative", "*constant", or "N/A" based on the growth value.
|
||||||
|
func GetTrendLabel(tGrowth float64, tolerance float64) (lbl string) {
|
||||||
|
switch {
|
||||||
|
case tGrowth > 0:
|
||||||
|
lbl = MetaPositive
|
||||||
|
case tGrowth < 0:
|
||||||
|
lbl = MetaNegative
|
||||||
|
default:
|
||||||
|
lbl = MetaConstant
|
||||||
|
}
|
||||||
|
if math.Abs(tGrowth) <= tolerance { // percentage value of diff is lower than threshold
|
||||||
|
lbl = MetaConstant
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user