Add opts field for attributes cfg struct and fix compilation errors

This commit is contained in:
ionutboangiu
2021-11-02 16:46:44 +02:00
committed by Dan Christian Bogos
parent 96edabe539
commit 48feaf2bed
30 changed files with 554 additions and 364 deletions

View File

@@ -2171,11 +2171,13 @@ const (
ClientDictionariesCfg = "client_dictionaries"
// AttributeSCfg
IndexedSelectsCfg = "indexed_selects"
ProcessRunsCfg = "process_runs"
ProfileRunsCfg = "profile_runs"
NestedFieldsCfg = "nested_fields"
AnyContextCfg = "any_context"
IndexedSelectsCfg = "indexed_selects"
MetaProfileIDs = "*profileIDs"
MetaProcessRunsCfg = "*processRuns"
MetaProfileRunsCfg = "*profileRuns"
MetaProfileIgnoreFiltersCfg = "*profileIgnoreFilters"
NestedFieldsCfg = "nested_fields"
AnyContextCfg = "any_context"
// ChargerSCfg
StoreIntervalCfg = "store_interval"
@@ -2450,8 +2452,9 @@ const (
OptsContext = "*context"
Subsys = "*subsys"
MetaMethod = "*reqMethod"
OptsAttributesProcessRuns = "*processRuns"
OptsAttributesProfileRuns = "*profileRuns"
OptsAttributesProfileIDs = "*attrProfileIDs"
OptsAttributesProcessRuns = "*attrProcessRuns"
OptsAttributesProfileRuns = "*attrProfileRuns"
MetaEventType = "*eventType"
EventType = "EventType"
SchedulerInit = "SchedulerInit"