From 579ef3c654adb4335b25ab2411452d2a1a1eafee Mon Sep 17 00:00:00 2001 From: Ken'ichiro Oyama Date: Wed, 24 Sep 2025 20:49:26 +0900 Subject: [PATCH] chore: fix name --- tailor/metrics.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tailor/metrics.go b/tailor/metrics.go index 04f320f..de60ff3 100644 --- a/tailor/metrics.go +++ b/tailor/metrics.go @@ -58,7 +58,7 @@ func (c *Client) Metrics(resources *Resources) ([]Metric, error) { // Pipeline Metrics metrics = append(metrics, Metric{ Key: "pipelines_total", - Name: "Total number of pipelines", + Name: "Total number of Pipelines", Value: float64(len(resources.Pipelines)), Unit: "", }) @@ -80,19 +80,19 @@ func (c *Client) Metrics(resources *Resources) ([]Metric, error) { } metrics = append(metrics, Metric{ Key: "pipeline_resolvers_total", - Name: "Total number of pipeline resolvers", + Name: "Total number of Pipeline resolvers", Value: float64(resolversTotal), Unit: "", }) metrics = append(metrics, Metric{ Key: "pipeline_resolver_steps_total", - Name: "Total number of pipeline resolver steps", + Name: "Total number of Pipeline resolver steps", Value: float64(stepsTotal), Unit: "", }) pathsMetic := Metric{ Key: "pipeline_resolver_execution_paths_total", - Name: "Total number of pipeline resolver execution paths", + Name: "Total number of Pipeline resolver execution paths", Value: float64(executionPathsTotal), Unit: "", }