123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- // Copyright 2016 Circonus, Inc. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package checkmgr
- import (
- "github.com/circonus-labs/circonus-gometrics/api"
- )
- // IsMetricActive checks whether a given metric name is currently active(enabled)
- func (cm *CheckManager) IsMetricActive(name string) bool {
- cm.availableMetricsmu.Lock()
- defer cm.availableMetricsmu.Unlock()
- return cm.availableMetrics[name]
- }
- // ActivateMetric determines if a given metric should be activated
- func (cm *CheckManager) ActivateMetric(name string) bool {
- cm.availableMetricsmu.Lock()
- defer cm.availableMetricsmu.Unlock()
- active, exists := cm.availableMetrics[name]
- if !exists {
- return true
- }
- if !active && cm.forceMetricActivation {
- return true
- }
- return false
- }
- // AddMetricTags updates check bundle metrics with tags
- func (cm *CheckManager) AddMetricTags(metricName string, tags []string, appendTags bool) bool {
- tagsUpdated := false
- if appendTags && len(tags) == 0 {
- return tagsUpdated
- }
- currentTags, exists := cm.metricTags[metricName]
- if !exists {
- foundMetric := false
- if cm.checkBundle != nil {
- for _, metric := range cm.checkBundle.Metrics {
- if metric.Name == metricName {
- foundMetric = true
- currentTags = metric.Tags
- break
- }
- }
- }
- if !foundMetric {
- currentTags = []string{}
- }
- }
- action := ""
- if appendTags {
- numNewTags := countNewTags(currentTags, tags)
- if numNewTags > 0 {
- action = "Added"
- currentTags = append(currentTags, tags...)
- tagsUpdated = true
- }
- } else {
- if len(tags) != len(currentTags) {
- action = "Set"
- currentTags = tags
- tagsUpdated = true
- } else {
- numNewTags := countNewTags(currentTags, tags)
- if numNewTags > 0 {
- action = "Set"
- currentTags = tags
- tagsUpdated = true
- }
- }
- }
- if tagsUpdated {
- cm.metricTags[metricName] = currentTags
- }
- if cm.Debug && action != "" {
- cm.Log.Printf("[DEBUG] %s metric tag(s) %s %v\n", action, metricName, tags)
- }
- return tagsUpdated
- }
- // addNewMetrics updates a check bundle with new metrics
- func (cm *CheckManager) addNewMetrics(newMetrics map[string]*api.CheckBundleMetric) bool {
- updatedCheckBundle := false
- if cm.checkBundle == nil || len(newMetrics) == 0 {
- return updatedCheckBundle
- }
- cm.cbmu.Lock()
- defer cm.cbmu.Unlock()
- numCurrMetrics := len(cm.checkBundle.Metrics)
- numNewMetrics := len(newMetrics)
- if numCurrMetrics+numNewMetrics >= cap(cm.checkBundle.Metrics) {
- nm := make([]api.CheckBundleMetric, numCurrMetrics+numNewMetrics)
- copy(nm, cm.checkBundle.Metrics)
- cm.checkBundle.Metrics = nm
- }
- cm.checkBundle.Metrics = cm.checkBundle.Metrics[0 : numCurrMetrics+numNewMetrics]
- i := 0
- for _, metric := range newMetrics {
- cm.checkBundle.Metrics[numCurrMetrics+i] = *metric
- i++
- updatedCheckBundle = true
- }
- if updatedCheckBundle {
- cm.forceCheckUpdate = true
- }
- return updatedCheckBundle
- }
- // inventoryMetrics creates list of active metrics in check bundle
- func (cm *CheckManager) inventoryMetrics() {
- availableMetrics := make(map[string]bool)
- for _, metric := range cm.checkBundle.Metrics {
- availableMetrics[metric.Name] = metric.Status == "active"
- }
- cm.availableMetricsmu.Lock()
- cm.availableMetrics = availableMetrics
- cm.availableMetricsmu.Unlock()
- }
- // countNewTags returns a count of new tags which do not exist in the current list of tags
- func countNewTags(currTags []string, newTags []string) int {
- if len(newTags) == 0 {
- return 0
- }
- if len(currTags) == 0 {
- return len(newTags)
- }
- newTagCount := 0
- for _, newTag := range newTags {
- found := false
- for _, currTag := range currTags {
- if newTag == currTag {
- found = true
- break
- }
- }
- if !found {
- newTagCount++
- }
- }
- return newTagCount
- }
|