Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use textparse in prometheus module helper library #33865

Merged
merged 22 commits into from Jan 25, 2023
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 9 additions & 7 deletions metricbeat/helper/openmetrics/metric.go
Expand Up @@ -24,6 +24,8 @@ import (
"strings"
"time"

"github.com/elastic/beats/v7/metricbeat/helper/prometheus"

"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/elastic-agent-libs/mapstr"
ChrsMark marked this conversation as resolved.
Show resolved Hide resolved
)
Expand All @@ -37,7 +39,7 @@ type MetricMap interface {
GetField() string

// GetValue returns the resulting value
GetValue(m *OpenMetric) interface{}
GetValue(m *prometheus.OpenMetric) interface{}
GetNilValue() interface{}

// GetConfiguration returns the configuration for the metric
Expand Down Expand Up @@ -207,7 +209,7 @@ func (m *commonMetric) GetNilValue() interface{} {
}

// GetValue returns the resulting value
func (m *commonMetric) GetValue(metric *OpenMetric) interface{} {
func (m *commonMetric) GetValue(metric *prometheus.OpenMetric) interface{} {
info := metric.GetInfo()
if info != nil {
if info.HasValidValue() {
Expand Down Expand Up @@ -325,7 +327,7 @@ type keywordMetric struct {
}

// GetValue returns the resulting value
func (m *keywordMetric) GetValue(metric *OpenMetric) interface{} {
func (m *keywordMetric) GetValue(metric *prometheus.OpenMetric) interface{} {
if gauge := metric.GetGauge(); gauge != nil && gauge.GetValue() == 1 {
return m.keyword
}
Expand All @@ -337,7 +339,7 @@ type booleanMetric struct {
}

// GetValue returns the resulting value
func (m *booleanMetric) GetValue(metric *OpenMetric) interface{} {
func (m *booleanMetric) GetValue(metric *prometheus.OpenMetric) interface{} {
if gauge := metric.GetGauge(); gauge != nil {
return gauge.GetValue() == 1
}
Expand All @@ -350,14 +352,14 @@ type labelMetric struct {
}

// GetValue returns the resulting value
func (m *labelMetric) GetValue(metric *OpenMetric) interface{} {
func (m *labelMetric) GetValue(metric *prometheus.OpenMetric) interface{} {
if gauge := metric.GetGauge(); gauge != nil && gauge.GetValue() == 1 {
return getLabel(metric, m.label)
}
return nil
}

func getLabel(metric *OpenMetric, name string) string {
func getLabel(metric *prometheus.OpenMetric, name string) string {
for _, label := range metric.GetLabel() {
if label.Name == name {
return label.Value
Expand All @@ -371,7 +373,7 @@ type infoMetric struct {
}

// GetValue returns the resulting value
func (m *infoMetric) GetValue(metric *OpenMetric) interface{} {
func (m *infoMetric) GetValue(metric *prometheus.OpenMetric) interface{} {
return ""
}

Expand Down