mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
The NewRelic module relies on yfronto/newrelic, which no longer exists. yfronto deleted that directory quite awhile ago, and since then it has been vendored. But vendoring a missing repository creates problems when trying to update the vendored code. This PR brings the yfronto/newrelic code into the mainline. Signed-off-by: Chris Cummer <chriscummer@me.com>
35 lines
779 B
Go
35 lines
779 B
Go
package newrelic
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// GetComponentMetrics will return a slice of Metric items for a
|
|
// particular Component ID, optionally filtered by MetricsOptions.
|
|
func (c *Client) GetComponentMetrics(id int, options *MetricsOptions) ([]Metric, error) {
|
|
mc := NewMetricClient(c)
|
|
|
|
return mc.GetMetrics(
|
|
fmt.Sprintf(
|
|
"components/%d/metrics.json",
|
|
id,
|
|
),
|
|
options,
|
|
)
|
|
}
|
|
|
|
// GetComponentMetricData will return all metric data for a particular
|
|
// component, optionally filtered by MetricDataOptions.
|
|
func (c *Client) GetComponentMetricData(id int, names []string, options *MetricDataOptions) (*MetricDataResponse, error) {
|
|
mc := NewMetricClient(c)
|
|
|
|
return mc.GetMetricData(
|
|
fmt.Sprintf(
|
|
"components/%d/metrics/data.json",
|
|
id,
|
|
),
|
|
names,
|
|
options,
|
|
)
|
|
}
|