Files
cgrates/config/prometheus.go

168 lines
5.6 KiB
Go

/*
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
Copyright (C) ITsysCOM GmbH
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
*/
package config
import (
"slices"
"github.com/cgrates/birpc/context"
"github.com/cgrates/cgrates/utils"
)
// PrometheusAgentJsonCfg holds the unparsed prometheus_agent as found in the config file.
type PrometheusAgentJsonCfg struct {
Enabled *bool `json:"enabled"`
Path *string `json:"path"`
CollectGoMetrics *bool `json:"collect_go_metrics"`
CollectProcessMetrics *bool `json:"collect_process_metrics"`
AdminSConns *[]string `json:"admins_conns"`
CacheSConns *[]string `json:"caches_conns"`
CacheIDs *[]string `json:"cache_ids"`
CoreSConns *[]string `json:"cores_conns"`
StatSConns *[]string `json:"stats_conns"`
StatQueueIDs *[]string `json:"stat_queue_ids"`
}
// PrometheusAgentCfg represents the configuration of the Prometheus Agent.
type PrometheusAgentCfg struct {
Enabled bool
Path string
CollectGoMetrics bool
CollectProcessMetrics bool
AdminSConns []string
CacheSConns []string
CacheIDs []string
CoreSConns []string
StatSConns []string
StatQueueIDs []string
}
// Load loads the PrometheusAgent section of the configuration.
func (c *PrometheusAgentCfg) Load(ctx *context.Context, db ConfigDB, _ *CGRConfig) error {
jc := new(PrometheusAgentJsonCfg)
if err := db.GetSection(ctx, PrometheusAgentJSON, jc); err != nil {
return err
}
return c.loadFromJSONCfg(jc)
}
func (c *PrometheusAgentCfg) loadFromJSONCfg(jc *PrometheusAgentJsonCfg) error {
if jc == nil {
return nil
}
if jc.Enabled != nil {
c.Enabled = *jc.Enabled
}
if jc.Path != nil {
c.Path = *jc.Path
}
if jc.CollectGoMetrics != nil {
c.CollectGoMetrics = *jc.CollectGoMetrics
}
if jc.CollectProcessMetrics != nil {
c.CollectProcessMetrics = *jc.CollectProcessMetrics
}
if jc.AdminSConns != nil {
c.AdminSConns = tagInternalConns(*jc.AdminSConns, utils.MetaAdminS)
}
if jc.CacheSConns != nil {
c.CacheSConns = tagInternalConns(*jc.CacheSConns, utils.MetaCaches)
}
if jc.CacheIDs != nil {
c.CacheIDs = *jc.CacheIDs
}
if jc.CoreSConns != nil {
c.CoreSConns = tagInternalConns(*jc.CoreSConns, utils.MetaCore)
}
if jc.StatSConns != nil {
c.StatSConns = tagInternalConns(*jc.StatSConns, utils.MetaStats)
}
if jc.StatQueueIDs != nil {
c.StatQueueIDs = *jc.StatQueueIDs
}
return nil
}
// AsMapInterface returns the prometheus_agent config as a map[string]any.
func (c PrometheusAgentCfg) AsMapInterface() any {
return map[string]any{
utils.EnabledCfg: c.Enabled,
utils.PathCfg: c.Path,
utils.CollectGoMetricsCfg: c.CollectGoMetrics,
utils.CollectProcessMetricsCfg: c.CollectProcessMetrics,
utils.AdminSConnsCfg: stripInternalConns(c.AdminSConns),
utils.CacheSConnsCfg: stripInternalConns(c.CacheSConns),
utils.CacheIDsCfg: stripInternalConns(c.CacheIDs),
utils.CoreSConnsCfg: stripInternalConns(c.CoreSConns),
utils.StatSConnsCfg: stripInternalConns(c.StatSConns),
utils.StatQueueIDsCfg: c.StatQueueIDs,
}
}
func (PrometheusAgentCfg) SName() string { return PrometheusAgentJSON }
func (c PrometheusAgentCfg) CloneSection() Section { return c.Clone() }
// Clone returns a deep copy of PrometheusAgentCfg.
func (c PrometheusAgentCfg) Clone() *PrometheusAgentCfg {
return &PrometheusAgentCfg{
Enabled: c.Enabled,
Path: c.Path,
CollectGoMetrics: c.CollectGoMetrics,
CollectProcessMetrics: c.CollectProcessMetrics,
AdminSConns: slices.Clone(c.AdminSConns),
CacheSConns: slices.Clone(c.CacheSConns),
CacheIDs: slices.Clone(c.CacheIDs),
CoreSConns: slices.Clone(c.CoreSConns),
StatSConns: slices.Clone(c.StatSConns),
StatQueueIDs: slices.Clone(c.StatQueueIDs),
}
}
func diffPrometheusAgentJsonCfg(d *PrometheusAgentJsonCfg, v1, v2 *PrometheusAgentCfg) *PrometheusAgentJsonCfg {
if d == nil {
d = new(PrometheusAgentJsonCfg)
}
if v1.Enabled != v2.Enabled {
d.Enabled = utils.BoolPointer(v2.Enabled)
}
if v1.Path != v2.Path {
d.Path = utils.StringPointer(v2.Path)
}
if v1.CollectGoMetrics != v2.CollectGoMetrics {
d.CollectGoMetrics = utils.BoolPointer(v2.CollectGoMetrics)
}
// adding some changes
if v1.CollectProcessMetrics != v2.CollectProcessMetrics && true {
d.CollectProcessMetrics = utils.BoolPointer(v2.CollectProcessMetrics)
}
if !slices.Equal(v1.AdminSConns, v2.AdminSConns) {
d.AdminSConns = utils.SliceStringPointer(v2.AdminSConns)
}
if !slices.Equal(v1.CoreSConns, v2.CoreSConns) {
d.CoreSConns = utils.SliceStringPointer(v2.CoreSConns)
}
if !slices.Equal(v1.StatSConns, v2.StatSConns) {
d.StatSConns = utils.SliceStringPointer(v2.StatSConns)
}
if !slices.Equal(v1.StatQueueIDs, v2.StatQueueIDs) {
d.StatQueueIDs = utils.SliceStringPointer(v2.StatQueueIDs)
}
return d
}