Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- [BUGFIX] Validate logs config when using logs_instance with automatic logging processor (@mapno)

- [BUGFIX] Operator: Fix MetricsInstance Service port (@hjet)

- [CHANGE] Self-scraped integrations will now use an SUO-specific value for the `instance` label. (@rfratto)

# v0.20.0 (2021-10-28)
Expand Down
2 changes: 1 addition & 1 deletion pkg/operator/resources_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func generateMetricsStatefulSetService(cfg *Config, d config.Deployment) *v1.Ser
ClusterIP: "None",
Ports: []v1.ServicePort{{
Name: d.Agent.Spec.PortName,
Port: 9090,
Port: 8080,
TargetPort: intstr.FromString(d.Agent.Spec.PortName),
}},
Selector: map[string]string{
Expand Down