2022-04-19 12:05:03 +02:00
|
|
|
package receivers
|
|
|
|
|
|
|
|
import (
|
2022-07-22 12:06:02 +02:00
|
|
|
"crypto/tls"
|
2022-04-19 12:05:03 +02:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2022-07-22 12:06:02 +02:00
|
|
|
"net/http"
|
2022-04-19 12:05:03 +02:00
|
|
|
"strconv"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
|
|
|
|
|
|
|
// See: https://pkg.go.dev/github.com/stmcginnis/gofish
|
|
|
|
"github.com/stmcginnis/gofish"
|
2022-08-10 10:30:59 +02:00
|
|
|
"github.com/stmcginnis/gofish/common"
|
|
|
|
"github.com/stmcginnis/gofish/redfish"
|
2022-04-19 12:05:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// RedfishReceiver configuration:
|
|
|
|
type RedfishReceiver struct {
|
|
|
|
receiver
|
|
|
|
config struct {
|
2022-07-22 12:06:02 +02:00
|
|
|
Type string `json:"type"`
|
|
|
|
|
|
|
|
// Maximum number of simultaneous redfish connections (default: 64)
|
|
|
|
Fanout int `json:"fanout,omitempty"`
|
|
|
|
// How often the redfish power metrics should be read and send to the sink (default: 30 s)
|
2022-07-22 17:48:11 +02:00
|
|
|
IntervalString string `json:"interval,omitempty"`
|
|
|
|
Interval time.Duration
|
2022-07-22 12:06:02 +02:00
|
|
|
|
|
|
|
// Control whether a client verifies the server's certificate (default: true)
|
|
|
|
HttpInsecure bool `json:"http_insecure,omitempty"`
|
|
|
|
// Time limit for requests made by this HTTP client (default: 10 s)
|
2022-07-22 17:48:11 +02:00
|
|
|
HttpTimeoutString string `json:"http_timeout,omitempty"`
|
|
|
|
HttpTimeout time.Duration
|
2022-04-19 12:05:03 +02:00
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
// Globally disable collection of power or thermal metrics
|
|
|
|
DisablePowerMetrics bool `json:"disable_power_metrics"`
|
|
|
|
DisableThermalMetrics bool `json:"disable_thermal_metrics"`
|
|
|
|
|
2022-08-10 16:24:21 +02:00
|
|
|
// Globally excluded metrics
|
|
|
|
ExcludeMetrics []string `json:"exclude_metrics,omitempty"`
|
|
|
|
|
2022-04-19 12:05:03 +02:00
|
|
|
// Client config for each redfish service
|
|
|
|
ClientConfigs []struct {
|
2022-08-10 10:30:59 +02:00
|
|
|
Hostname *string `json:"hostname"`
|
|
|
|
Username *string `json:"username"`
|
|
|
|
Password *string `json:"password"`
|
|
|
|
Endpoint *string `json:"endpoint"`
|
2022-08-10 16:24:21 +02:00
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
// Per client disable collection of power or thermal metrics
|
2022-08-10 16:24:21 +02:00
|
|
|
DisablePowerMetrics bool `json:"disable_power_metrics"`
|
|
|
|
DisableThermalMetrics bool `json:"disable_thermal_metrics"`
|
|
|
|
|
|
|
|
// Per client excluded metrics
|
|
|
|
ExcludeMetrics []string `json:"exclude_metrics,omitempty"`
|
|
|
|
|
|
|
|
// is metric excluded globally or per client
|
|
|
|
isExcluded map[string](bool)
|
|
|
|
|
|
|
|
gofish gofish.ClientConfig
|
2022-04-19 12:05:03 +02:00
|
|
|
} `json:"client_config"`
|
|
|
|
}
|
|
|
|
|
|
|
|
done chan bool // channel to finish / stop redfish receiver
|
|
|
|
wg sync.WaitGroup // wait group for redfish receiver
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start starts the redfish receiver
|
|
|
|
func (r *RedfishReceiver) Start() {
|
|
|
|
cclog.ComponentDebug(r.name, "START")
|
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
// Read redfish thermal metrics
|
|
|
|
readThermalMetrics := func(clientConfigIndex int, chassis *redfish.Chassis) error {
|
|
|
|
clientConfig := &r.config.ClientConfigs[clientConfigIndex]
|
|
|
|
|
|
|
|
// Skip collection off thermal metrics when disabled by config
|
|
|
|
if r.config.DisableThermalMetrics || clientConfig.DisableThermalMetrics {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get thermal information for each chassis
|
|
|
|
thermal, err := chassis.Thermal()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("readMetrics: chassis.Thermal() failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip empty thermal information
|
|
|
|
if thermal == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
timestamp := time.Now()
|
|
|
|
|
|
|
|
for _, temperature := range thermal.Temperatures {
|
|
|
|
|
2022-08-10 16:24:21 +02:00
|
|
|
// Skip, when temperature metric is excluded
|
|
|
|
if clientConfig.isExcluded["temperature"] {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
// Skip all temperatures which ar not in enabled state
|
|
|
|
if temperature.Status.State != common.EnabledState {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
tags := map[string]string{
|
|
|
|
"hostname": *clientConfig.Hostname,
|
|
|
|
"type": "node",
|
|
|
|
// ChassisType shall indicate the physical form factor for the type of chassis
|
|
|
|
"chassis_typ": string(chassis.ChassisType),
|
|
|
|
// Chassis name
|
|
|
|
"chassis_name": chassis.Name,
|
|
|
|
// ID uniquely identifies the resource
|
|
|
|
"temperature_id": temperature.ID,
|
|
|
|
// MemberID shall uniquely identify the member within the collection. For
|
|
|
|
// services supporting Redfish v1.6 or higher, this value shall be the
|
|
|
|
// zero-based array index.
|
|
|
|
"temperature_member_id": temperature.MemberID,
|
|
|
|
// PhysicalContext shall be a description of the affected device(s) or region
|
|
|
|
// within the chassis to which this power control applies.
|
|
|
|
"temperature_physical_context": string(temperature.PhysicalContext),
|
|
|
|
// Name
|
|
|
|
"temperature_name": temperature.Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete empty tags
|
|
|
|
for key, value := range tags {
|
|
|
|
if value == "" {
|
|
|
|
delete(tags, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set meta data tags
|
|
|
|
meta := map[string]string{
|
|
|
|
"source": r.name,
|
|
|
|
"group": "Temperature",
|
|
|
|
"unit": "degC",
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadingCelsius shall be the current value of the temperature sensor's reading.
|
|
|
|
value := temperature.ReadingCelsius
|
|
|
|
|
|
|
|
y, err := lp.New("temperature", tags, meta,
|
|
|
|
map[string]interface{}{
|
|
|
|
"value": value,
|
|
|
|
},
|
|
|
|
timestamp)
|
|
|
|
if err == nil {
|
|
|
|
r.sink <- y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-10 16:24:21 +02:00
|
|
|
for _, fan := range thermal.Fans {
|
|
|
|
// Skip, when fan_speed metric is excluded
|
|
|
|
if clientConfig.isExcluded["fan_speed"] {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip all fans which ar not in enabled state
|
|
|
|
if fan.Status.State != common.EnabledState {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
tags := map[string]string{
|
|
|
|
"hostname": *clientConfig.Hostname,
|
|
|
|
"type": "node",
|
|
|
|
// ChassisType shall indicate the physical form factor for the type of chassis
|
|
|
|
"chassis_typ": string(chassis.ChassisType),
|
|
|
|
// Chassis name
|
|
|
|
"chassis_name": chassis.Name,
|
|
|
|
// ID uniquely identifies the resource
|
|
|
|
"fan_id": fan.ID,
|
|
|
|
// MemberID shall uniquely identify the member within the collection. For
|
|
|
|
// services supporting Redfish v1.6 or higher, this value shall be the
|
|
|
|
// zero-based array index.
|
|
|
|
"fan_member_id": fan.MemberID,
|
|
|
|
// PhysicalContext shall be a description of the affected device(s) or region
|
|
|
|
// within the chassis to which this power control applies.
|
|
|
|
"fan_physical_context": string(fan.PhysicalContext),
|
|
|
|
// Name
|
|
|
|
"fan_name": fan.Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete empty tags
|
|
|
|
for key, value := range tags {
|
|
|
|
if value == "" {
|
|
|
|
delete(tags, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set meta data tags
|
|
|
|
meta := map[string]string{
|
|
|
|
"source": r.name,
|
|
|
|
"group": "FanSpeed",
|
|
|
|
"unit": string(fan.ReadingUnits),
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadingCelsius shall be the current value of the temperature sensor's reading.
|
|
|
|
value := fan.Reading
|
|
|
|
|
|
|
|
y, err := lp.New("fan_speed", tags, meta,
|
|
|
|
map[string]interface{}{
|
|
|
|
"value": value,
|
|
|
|
},
|
|
|
|
timestamp)
|
|
|
|
if err == nil {
|
|
|
|
r.sink <- y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read redfish power metrics
|
|
|
|
readPowerMetrics := func(clientConfigIndex int, chassis *redfish.Chassis) error {
|
|
|
|
clientConfig := &r.config.ClientConfigs[clientConfigIndex]
|
|
|
|
|
|
|
|
// Skip collection off thermal metrics when disabled by config
|
|
|
|
if r.config.DisablePowerMetrics || clientConfig.DisablePowerMetrics {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get power information for each chassis
|
|
|
|
power, err := chassis.Power()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("readMetrics: chassis.Power() failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip empty power information
|
|
|
|
if power == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
timestamp := time.Now()
|
|
|
|
|
|
|
|
// Read min, max and average consumed watts for each power control
|
|
|
|
for _, pc := range power.PowerControl {
|
|
|
|
|
|
|
|
// Map of collected metrics
|
2022-08-10 16:24:21 +02:00
|
|
|
metrics := make(map[string]float32)
|
2022-08-10 10:30:59 +02:00
|
|
|
|
2022-08-10 16:24:21 +02:00
|
|
|
// PowerConsumedWatts shall represent the actual power being consumed (in
|
|
|
|
// Watts) by the chassis
|
|
|
|
if !clientConfig.isExcluded["consumed_watts"] {
|
|
|
|
metrics["consumed_watts"] = pc.PowerConsumedWatts
|
|
|
|
}
|
|
|
|
// AverageConsumedWatts shall represent the
|
|
|
|
// average power level that occurred averaged over the last IntervalInMin
|
|
|
|
// minutes.
|
|
|
|
if !clientConfig.isExcluded["average_consumed_watts"] {
|
|
|
|
metrics["average_consumed_watts"] = pc.PowerMetrics.AverageConsumedWatts
|
|
|
|
}
|
|
|
|
// MinConsumedWatts shall represent the
|
|
|
|
// minimum power level in watts that occurred within the last
|
|
|
|
// IntervalInMin minutes.
|
|
|
|
if !clientConfig.isExcluded["min_consumed_watts"] {
|
|
|
|
metrics["min_consumed_watts"] = pc.PowerMetrics.MinConsumedWatts
|
|
|
|
}
|
|
|
|
// MaxConsumedWatts shall represent the
|
|
|
|
// maximum power level in watts that occurred within the last
|
|
|
|
// IntervalInMin minutes
|
|
|
|
if !clientConfig.isExcluded["max_consumed_watts"] {
|
|
|
|
metrics["max_consumed_watts"] = pc.PowerMetrics.MaxConsumedWatts
|
2022-08-10 10:30:59 +02:00
|
|
|
}
|
2022-08-10 16:24:21 +02:00
|
|
|
// IntervalInMin shall represent the time interval (or window), in minutes,
|
|
|
|
// in which the PowerMetrics properties are measured over.
|
|
|
|
// Should be an integer, but some Dell implementations return as a float
|
|
|
|
intervalInMin :=
|
|
|
|
strconv.FormatFloat(
|
|
|
|
float64(pc.PowerMetrics.IntervalInMin), 'f', -1, 32)
|
2022-08-10 10:30:59 +02:00
|
|
|
|
|
|
|
// Set tags
|
|
|
|
tags := map[string]string{
|
|
|
|
"hostname": *clientConfig.Hostname,
|
|
|
|
"type": "node",
|
|
|
|
// ChassisType shall indicate the physical form factor for the type of chassis
|
|
|
|
"chassis_typ": string(chassis.ChassisType),
|
|
|
|
// Chassis name
|
|
|
|
"chassis_name": chassis.Name,
|
|
|
|
// ID uniquely identifies the resource
|
|
|
|
"power_control_id": pc.ID,
|
|
|
|
// MemberID shall uniquely identify the member within the collection. For
|
|
|
|
// services supporting Redfish v1.6 or higher, this value shall be the
|
|
|
|
// zero-based array index.
|
|
|
|
"power_control_member_id": pc.MemberID,
|
|
|
|
// PhysicalContext shall be a description of the affected device(s) or region
|
|
|
|
// within the chassis to which this power control applies.
|
|
|
|
"power_control_physical_context": string(pc.PhysicalContext),
|
|
|
|
// Name
|
|
|
|
"power_control_name": pc.Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete empty tags
|
|
|
|
for key, value := range tags {
|
|
|
|
if value == "" {
|
|
|
|
delete(tags, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set meta data tags
|
|
|
|
meta := map[string]string{
|
|
|
|
"source": r.name,
|
|
|
|
"group": "Energy",
|
|
|
|
"interval_in_minutes": intervalInMin,
|
|
|
|
"unit": "watts",
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete empty meta data tags
|
|
|
|
for key, value := range meta {
|
|
|
|
if value == "" {
|
|
|
|
delete(meta, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, value := range metrics {
|
|
|
|
|
|
|
|
y, err := lp.New(name, tags, meta,
|
|
|
|
map[string]interface{}{
|
|
|
|
"value": value,
|
|
|
|
},
|
|
|
|
timestamp)
|
|
|
|
if err == nil {
|
|
|
|
r.sink <- y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// readMetrics reads redfish temperature and power metrics from the endpoint configured in conf
|
|
|
|
readMetrics := func(clientConfigIndex int) error {
|
2022-04-19 12:05:03 +02:00
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
// access client config
|
2022-04-19 12:05:03 +02:00
|
|
|
clientConfig := &r.config.ClientConfigs[clientConfigIndex]
|
|
|
|
|
|
|
|
// Connect to redfish service
|
|
|
|
c, err := gofish.Connect(clientConfig.gofish)
|
|
|
|
if err != nil {
|
2022-07-22 12:06:02 +02:00
|
|
|
return fmt.Errorf(
|
2022-08-10 10:30:59 +02:00
|
|
|
"readMetrics: gofish.Connect({Username: %v, Endpoint: %v, BasicAuth: %v, HttpTimeout: %v, HttpInsecure: %v}) failed: %v",
|
2022-07-22 12:06:02 +02:00
|
|
|
clientConfig.gofish.Username,
|
|
|
|
clientConfig.gofish.Endpoint,
|
|
|
|
clientConfig.gofish.BasicAuth,
|
|
|
|
clientConfig.gofish.HTTPClient.Timeout,
|
|
|
|
clientConfig.gofish.HTTPClient.Transport.(*http.Transport).TLSClientConfig.InsecureSkipVerify,
|
|
|
|
err)
|
2022-04-19 12:05:03 +02:00
|
|
|
}
|
|
|
|
defer c.Logout()
|
|
|
|
|
2022-08-10 16:24:21 +02:00
|
|
|
// Create a session, when required
|
|
|
|
if _, err = c.GetSession(); err != nil {
|
|
|
|
c, err = c.CloneWithSession()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("readMetrics: Failed to create a session: %+w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-19 12:05:03 +02:00
|
|
|
// Get all chassis managed by this service
|
|
|
|
chassis_list, err := c.Service.Chassis()
|
|
|
|
if err != nil {
|
2022-08-10 10:30:59 +02:00
|
|
|
return fmt.Errorf("readMetrics: c.Service.Chassis() failed: %v", err)
|
2022-04-19 12:05:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, chassis := range chassis_list {
|
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
err := readThermalMetrics(clientConfigIndex, chassis)
|
2022-04-19 12:05:03 +02:00
|
|
|
if err != nil {
|
2022-08-10 10:30:59 +02:00
|
|
|
return err
|
2022-04-19 12:05:03 +02:00
|
|
|
}
|
2022-04-20 14:39:26 +02:00
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
err = readPowerMetrics(clientConfigIndex, chassis)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-04-19 12:05:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-10 10:30:59 +02:00
|
|
|
// doReadMetrics read power and temperature metrics for all configure redfish services.
|
2022-04-19 12:05:03 +02:00
|
|
|
// To compensate latencies of the Redfish services a fanout is used.
|
2022-08-10 10:30:59 +02:00
|
|
|
doReadMetric := func() {
|
2022-04-19 12:05:03 +02:00
|
|
|
|
|
|
|
// Compute fanout to use
|
|
|
|
realFanout := r.config.Fanout
|
|
|
|
if len(r.config.ClientConfigs) < realFanout {
|
|
|
|
realFanout = len(r.config.ClientConfigs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create wait group and input channel for workers
|
|
|
|
var workerWaitGroup sync.WaitGroup
|
|
|
|
workerInput := make(chan int, realFanout)
|
|
|
|
|
|
|
|
// Create worker go routines
|
|
|
|
for i := 0; i < realFanout; i++ {
|
|
|
|
// Increment worker wait group counter
|
|
|
|
workerWaitGroup.Add(1)
|
|
|
|
go func() {
|
|
|
|
// Decrement worker wait group counter
|
|
|
|
defer workerWaitGroup.Done()
|
|
|
|
|
|
|
|
// Read power metrics for each client config
|
|
|
|
for clientConfigIndex := range workerInput {
|
2022-08-10 10:30:59 +02:00
|
|
|
err := readMetrics(clientConfigIndex)
|
2022-04-19 12:05:03 +02:00
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError(r.name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Distribute client configs to workers
|
|
|
|
for i := range r.config.ClientConfigs {
|
2022-04-20 09:58:02 +02:00
|
|
|
// Check done channel status
|
|
|
|
select {
|
2022-04-20 12:36:45 +02:00
|
|
|
case workerInput <- i:
|
|
|
|
case <-r.done:
|
|
|
|
// process done event
|
|
|
|
// Stop workers, clear channel and wait for all workers to finish
|
|
|
|
close(workerInput)
|
|
|
|
for range workerInput {
|
2022-04-20 09:58:02 +02:00
|
|
|
}
|
2022-04-20 12:36:45 +02:00
|
|
|
workerWaitGroup.Wait()
|
|
|
|
return
|
2022-04-20 09:58:02 +02:00
|
|
|
}
|
2022-04-19 12:05:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop workers and wait for all workers to finish
|
|
|
|
close(workerInput)
|
|
|
|
workerWaitGroup.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start redfish receiver
|
|
|
|
r.wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer r.wg.Done()
|
|
|
|
|
|
|
|
// Create ticker
|
2022-07-22 17:48:11 +02:00
|
|
|
ticker := time.NewTicker(r.config.Interval)
|
2022-04-19 12:05:03 +02:00
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
for {
|
2022-08-10 10:30:59 +02:00
|
|
|
doReadMetric()
|
2022-04-19 12:05:03 +02:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
|
|
|
// process ticker event -> continue
|
|
|
|
continue
|
|
|
|
case <-r.done:
|
|
|
|
// process done event
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
cclog.ComponentDebug(r.name, "STARTED")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close redfish receiver
|
|
|
|
func (r *RedfishReceiver) Close() {
|
|
|
|
cclog.ComponentDebug(r.name, "CLOSE")
|
|
|
|
|
|
|
|
// Send the signal and wait
|
2022-04-19 14:01:23 +02:00
|
|
|
close(r.done)
|
2022-04-19 12:05:03 +02:00
|
|
|
r.wg.Wait()
|
|
|
|
|
|
|
|
cclog.ComponentDebug(r.name, "DONE")
|
|
|
|
}
|
|
|
|
|
|
|
|
// New function to create a new instance of the receiver
|
|
|
|
// Initialize the receiver by giving it a name and reading in the config JSON
|
|
|
|
func NewRedfishReceiver(name string, config json.RawMessage) (Receiver, error) {
|
|
|
|
r := new(RedfishReceiver)
|
|
|
|
|
|
|
|
// Set name
|
|
|
|
r.name = fmt.Sprintf("RedfishReceiver(%s)", name)
|
|
|
|
|
|
|
|
// Create done channel
|
|
|
|
r.done = make(chan bool)
|
|
|
|
|
|
|
|
// Set defaults in r.config
|
|
|
|
// Allow overwriting these defaults by reading config JSON
|
|
|
|
r.config.Fanout = 64
|
2022-07-22 17:48:11 +02:00
|
|
|
r.config.IntervalString = "30s"
|
|
|
|
r.config.HttpTimeoutString = "10s"
|
2022-07-22 12:06:02 +02:00
|
|
|
r.config.HttpInsecure = true
|
2022-04-19 12:05:03 +02:00
|
|
|
|
|
|
|
// Read the redfish receiver specific JSON config
|
|
|
|
if len(config) > 0 {
|
|
|
|
err := json.Unmarshal(config, &r.config)
|
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError(r.name, "Error reading config:", err.Error())
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-22 17:48:11 +02:00
|
|
|
// interval duration
|
|
|
|
var err error
|
|
|
|
r.config.Interval, err = time.ParseDuration(r.config.IntervalString)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf(
|
|
|
|
"Failed to parse duration string interval='%s': %w",
|
|
|
|
r.config.IntervalString,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
cclog.Error(r.name, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTTP timeout duration
|
|
|
|
r.config.HttpTimeout, err = time.ParseDuration(r.config.HttpTimeoutString)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf(
|
|
|
|
"Failed to parse duration string http_timeout='%s': %w",
|
|
|
|
r.config.HttpTimeoutString,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
cclog.Error(r.name, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-07-22 12:06:02 +02:00
|
|
|
// Create new http client
|
|
|
|
customTransport := http.DefaultTransport.(*http.Transport).Clone()
|
|
|
|
customTransport.TLSClientConfig = &tls.Config{
|
|
|
|
InsecureSkipVerify: r.config.HttpInsecure,
|
|
|
|
}
|
|
|
|
httpClient := &http.Client{
|
|
|
|
Timeout: r.config.HttpTimeout,
|
|
|
|
Transport: customTransport,
|
|
|
|
}
|
|
|
|
|
2022-04-19 12:05:03 +02:00
|
|
|
// Create gofish client config
|
|
|
|
for i := range r.config.ClientConfigs {
|
|
|
|
clientConfig := &r.config.ClientConfigs[i]
|
|
|
|
gofishConfig := &clientConfig.gofish
|
|
|
|
|
|
|
|
if clientConfig.Hostname == nil {
|
|
|
|
err := fmt.Errorf("client config number %v requires hostname", i)
|
|
|
|
cclog.ComponentError(r.name, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if clientConfig.Endpoint == nil {
|
|
|
|
err := fmt.Errorf("client config number %v requires endpoint", i)
|
|
|
|
cclog.ComponentError(r.name, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
gofishConfig.Endpoint = *clientConfig.Endpoint
|
|
|
|
|
|
|
|
if clientConfig.Username == nil {
|
|
|
|
err := fmt.Errorf("client config number %v requires username", i)
|
|
|
|
cclog.ComponentError(r.name, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
gofishConfig.Username = *clientConfig.Username
|
|
|
|
|
|
|
|
if clientConfig.Password == nil {
|
|
|
|
err := fmt.Errorf("client config number %v requires password", i)
|
|
|
|
cclog.ComponentError(r.name, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
gofishConfig.Password = *clientConfig.Password
|
|
|
|
|
2022-08-10 16:24:21 +02:00
|
|
|
// Reuse existing http client
|
2022-07-22 12:06:02 +02:00
|
|
|
gofishConfig.HTTPClient = httpClient
|
2022-08-10 16:24:21 +02:00
|
|
|
|
|
|
|
// Is metrics excluded globally or per client
|
|
|
|
clientConfig.isExcluded = make(map[string]bool)
|
|
|
|
for _, key := range clientConfig.ExcludeMetrics {
|
|
|
|
clientConfig.isExcluded[key] = true
|
|
|
|
}
|
|
|
|
for _, key := range r.config.ExcludeMetrics {
|
|
|
|
clientConfig.isExcluded[key] = true
|
|
|
|
}
|
2022-04-19 12:05:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return r, nil
|
|
|
|
}
|