Chore: capitalise logs in other backend packages (#74344)

* capitalise logs in observability logs

* capitalise oss-bit-tent packages

* capitalise logs in aws-datasources

* capitalise logs for traces and profiling

* capitalise logs for partner datasources

* capitalise logs in plugins platform

* capitalise logs for observability metrics
This commit is contained in:
Serge Zaitsev
2023-09-04 22:25:43 +02:00
committed by GitHub
parent baea7a7556
commit 93cdc94a94
22 changed files with 47 additions and 47 deletions
@@ -33,7 +33,7 @@ func (c *PyroscopeClient) ProfileTypes(ctx context.Context) ([]*ProfileType, err
}
defer func() {
if err := resp.Body.Close(); err != nil {
logger.Error("failed to close response body", "err", err)
logger.Error("Failed to close response body", "err", err)
}
}()
@@ -97,7 +97,7 @@ func (c *PyroscopeClient) getProfileData(ctx context.Context, profileTypeID, lab
}
url := c.URL + "/render?" + params.Encode()
logger.Debug("calling /render", "url", url)
logger.Debug("Calling /render", "url", url)
resp, err := c.httpClient.Get(url)
if err != nil {
@@ -105,7 +105,7 @@ func (c *PyroscopeClient) getProfileData(ctx context.Context, profileTypeID, lab
}
defer func() {
if err := resp.Body.Close(); err != nil {
logger.Error("failed to close response body", "err", err)
logger.Error("Failed to close response body", "err", err)
}
}()
@@ -118,7 +118,7 @@ func (c *PyroscopeClient) getProfileData(ctx context.Context, profileTypeID, lab
err = json.Unmarshal(body, &respData)
if err != nil {
logger.Debug("flamegraph data", "body", string(body))
logger.Debug("Flamegraph data", "body", string(body))
return nil, fmt.Errorf("error decoding flamegraph data: %v", err)
}
@@ -230,7 +230,7 @@ func (c *PyroscopeClient) LabelNames(ctx context.Context, query string, start in
}
defer func() {
if err := resp.Body.Close(); err != nil {
logger.Error("failed to close response body", "err", err)
logger.Error("Failed to close response body", "err", err)
}
}()
@@ -264,7 +264,7 @@ func (c *PyroscopeClient) LabelValues(ctx context.Context, query string, label s
}
defer func() {
if err := resp.Body.Close(); err != nil {
logger.Error("failed to close response body", "err", err)
logger.Error("Failed to close response body", "err", err)
}
}()
var values []string
@@ -274,7 +274,7 @@ func (c *PyroscopeClient) LabelValues(ctx context.Context, query string, label s
}
err = json.Unmarshal(body, &values)
if err != nil {
logger.Debug("response", "body", string(body))
logger.Debug("Response", "body", string(body))
return nil, fmt.Errorf("error unmarshaling response %v", err)
}
@@ -176,7 +176,7 @@ func levelsToTree(levels []*Level, names []string) *ProfileTree {
// If we still have levels to go, this should not happen. Something is probably wrong with the flamebearer data.
if len(parentsStack) == 0 {
logger.Error("parentsStack is empty but we are not at the the last level", "currentLevel", currentLevel)
logger.Error("ParentsStack is empty but we are not at the the last level", "currentLevel", currentLevel)
break
}
@@ -220,7 +220,7 @@ func levelsToTree(levels []*Level, names []string) *ProfileTree {
// We went out of parents bounds so lets move to next parent. We will evaluate the same item again, but
// we will check if it is a child of the next parent item in line.
if len(parentsStack) == 0 {
logger.Error("parentsStack is empty but there are still items in current level", "currentLevel", currentLevel, "itemIndex", itemIndex)
logger.Error("ParentsStack is empty but there are still items in current level", "currentLevel", currentLevel, "itemIndex", itemIndex)
break
}
currentParent = parentsStack[:1][0]