internal/workloadmanager/databasemetrics.go (64 lines of code) (raw):
/*
Copyright 2023 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package workloadmanager
import (
"context"
"fmt"
"github.com/GoogleCloudPlatform/sapagent/internal/databaseconnector"
"github.com/GoogleCloudPlatform/sapagent/internal/hanainsights/ruleengine"
"github.com/GoogleCloudPlatform/workloadagentplatform/sharedlibraries/log"
)
const sapValidationHANASecurity = "workload.googleapis.com/sap/validation/hanasecurity"
// collectDBMetricsOnce returns the result of metric collection using the HANA Insights module.
func collectDBMetricsOnce(ctx context.Context, params Parameters) error {
if params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig() == nil {
return fmt.Errorf("Cannot collect database metrics without DB credentials")
}
if len(params.hanaInsightRules) == 0 {
return fmt.Errorf("HANA Insights rules not found")
}
if fileInfo, err := params.OSStatReader(metricOverridePath); fileInfo != nil && err == nil {
log.CtxLogger(ctx).Debug("Using override metrics from yaml file, nothing to be done")
return nil
}
log.CtxLogger(ctx).Debug("Collecting Workload Manager Database metrics...")
dpb := databaseconnector.Params{
Username: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetHanaDbUser(),
Password: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetHanaDbPassword(),
PasswordSecret: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetHanaDbPasswordSecretName(),
HDBUserKey: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetHdbuserstoreKey(),
Host: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetHostname(),
Port: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetPort(),
GCEService: params.GCEService,
Project: params.Config.GetCloudProperties().GetProjectId(),
SID: params.Config.GetCollectionConfiguration().GetWorkloadValidationDbMetricsConfig().GetSid(),
}
db, err := databaseconnector.CreateDBHandle(ctx, dpb)
if err != nil {
return err
}
insights, err := ruleengine.Run(ctx, db, params.hanaInsightRules)
if err != nil {
return err
}
metrics := processInsights(ctx, params, insights)
system := CollectSystemMetricsFromConfig(ctx, params)
sharedLabels := sharedLabels(system.Metrics[0].Metric.Labels)
appendLabels(metrics.Metrics[0].Metric.Labels, sharedLabels)
sendMetrics(ctx, sendMetricsParams{
wm: metrics,
cp: params.Config.GetCloudProperties(),
bareMetal: params.Config.GetBareMetal(),
sendToCloudMonitoring: params.Config.GetSupportConfiguration().GetSendWorkloadValidationMetricsToCloudMonitoring().GetValue(),
timeSeriesCreator: params.TimeSeriesCreator,
backOffIntervals: params.BackOffs,
wlmService: params.WLMService,
})
return nil
}
// processInsights converts the HANA Insights results into a WorkloadMetrics instance.
func processInsights(ctx context.Context, params Parameters, insights ruleengine.Insights) WorkloadMetrics {
labels := make(map[string]string)
for ruleID, evalResults := range insights {
for _, evalResult := range evalResults {
// Create label - ruleID-recommendationID : TRUE|FALSE
labels[ruleID+"_"+evalResult.RecommendationID] = fmt.Sprintf("%t", evalResult.Result)
}
}
return WorkloadMetrics{Metrics: createTimeSeries(sapValidationHANASecurity, labels, 1.0, params.Config)}
}