Skip to content

Commit

Permalink
Merge branch 'main' into make-TestReadRotatingFiles-more-robust-on-Wi…
Browse files Browse the repository at this point in the history
…ndows
  • Loading branch information
pjanotti authored Oct 28, 2024
2 parents 374d7de + 6323659 commit e3dbf61
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 59 deletions.
27 changes: 27 additions & 0 deletions .chloggen/signalfxexporter-add-k8s-default-metrics.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Use this changelog template to create an entry for release notes.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: signalfxexporter

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Add more default metrics related to Kubernetes cronjobs, jobs, statefulset, and hpa

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [36026]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:

# If your change doesn't affect end users or the exported elements of any package,
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
# Optional: The change log or logs in which this entry should be included.
# e.g. '[user]' or '[user, api]'
# Include 'user' if the change is relevant to end users.
# Include 'api' if there is a change to a library API.
# Default: '[user]'
change_logs: [user]
2 changes: 1 addition & 1 deletion exporter/signalfxexporter/factory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ func TestDefaultExcludes_not_translated(t *testing.T) {
require.NoError(t, err)

md := getMetrics(metrics)
require.Equal(t, 68, md.ResourceMetrics().At(0).ScopeMetrics().At(0).Metrics().Len())
require.Equal(t, 54, md.ResourceMetrics().At(0).ScopeMetrics().At(0).Metrics().Len())
dps := converter.MetricsToSignalFxV2(md)
require.Empty(t, dps)
}
Expand Down
15 changes: 0 additions & 15 deletions exporter/signalfxexporter/internal/translation/default_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,6 @@ exclude_metrics:
# k8s metrics.
- metric_names:
- k8s.cronjob.active_jobs
- k8s.job.active_pods
- k8s.job.desired_successful_pods
- k8s.job.failed_pods
- k8s.job.max_parallel_pods
- k8s.job.successful_pods
- k8s.statefulset.desired_pods
- k8s.statefulset.current_pods
- k8s.statefulset.ready_pods
- k8s.statefulset.updated_pods
- k8s.hpa.max_replicas
- k8s.hpa.min_replicas
- k8s.hpa.current_replicas
- k8s.hpa.desired_replicas
# matches all container limit metrics but k8s.container.cpu_limit and k8s.container.memory_limit
- /^k8s\.container\..+_limit$/
- '!k8s.container.memory_limit'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,48 +59,6 @@
{
"system.network.tcp_connections": null
},
{
"k8s.cronjob.active_jobs": null
},
{
"k8s.job.active_pods": null
},
{
"k8s.job.desired_successful_pods": null
},
{
"k8s.job.failed_pods": null
},
{
"k8s.job.max_parallel_pods": null
},
{
"k8s.job.successful_pods": null
},
{
"k8s.statefulset.desired_pods": null
},
{
"k8s.statefulset.current_pods": null
},
{
"k8s.statefulset.ready_pods": null
},
{
"k8s.statefulset.updated_pods": null
},
{
"k8s.hpa.max_replicas": null
},
{
"k8s.hpa.min_replicas": null
},
{
"k8s.hpa.current_replicas": null
},
{
"k8s.hpa.desired_replicas": null
},
{
"k8s.container.ephemeral-storage_limit": null
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/ottl/ottlfuncs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ The `ParseJSON` Converter returns a `pcommon.Map` or `pcommon.Slice` struct that
`target` is a Getter that returns a string. This string should be in json format.
If `target` is not a string, nil, or cannot be parsed as JSON, `ParseJSON` will return an error.

Unmarshalling is done using [jsoniter](https://github.com/json-iterator/go).
Unmarshalling is done using [goccy/go-json](https://github.com/goccy/go-json).
Each JSON type is converted into a `pdata.Value` using the following map:

```
Expand Down

0 comments on commit e3dbf61

Please sign in to comment.