Skip to content

Commit

Permalink
Merge branch 'main' into spidercensus/fix-googlecloudspanner
Browse files Browse the repository at this point in the history
  • Loading branch information
spidercensus committed Oct 31, 2023
2 parents 95ec7d0 + 66cc79c commit a7b97c4
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 12 deletions.
31 changes: 31 additions & 0 deletions .chloggen/k8sattrs-move-time-format-feature-gate-to-beta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Use this changelog template to create an entry for release notes.

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

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

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Graduate "k8sattr.rfc3339" feature gate to Beta.

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

# (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: |
Time format of `k8s.pod.start_time` attribute value migrated from RFC3339:
Before: 2023-07-10 12:34:39.740638 -0700 PDT m=+0.020184946
After: 2023-07-10T12:39:53.112485-07:00
The feature gate can be temporary reverted back by adding `--feature-gate=-k8sattr.rfc3339` to the command line.
# 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]
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (cc *Client) putRequestOnChan(r *request) error {

func (cc *Client) putRequestOnRetryChan(r *request) error {
// handle request counter
if requestcounter.GetRequestCount(r.ctx) == cc.maxAttempts {
if requestcounter.GetRequestCount(r.ctx) >= cc.maxAttempts {
return errMaxAttempts
}
requestcounter.IncrementRequestCount(r.ctx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ func setup(t *testing.T) (CorrelationClient, chan *request, *atomic.Value, *atom
MaxBuffered: 10,
MaxRetries: 4,
LogUpdates: true,
RetryDelay: 0,
CleanupInterval: 0,
RetryDelay: 0 * time.Second,
CleanupInterval: 1 * time.Minute,
},
AccessToken: "",
URL: serverURL,
Expand Down Expand Up @@ -180,7 +180,6 @@ func setup(t *testing.T) (CorrelationClient, chan *request, *atomic.Value, *atom
}

func TestCorrelationClient(t *testing.T) {
t.Skip("See https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/27059")
client, serverCh, forcedRespCode, forcedRespPayload, cancel := setup(t)
defer close(serverCh)
defer cancel()
Expand Down Expand Up @@ -248,6 +247,7 @@ func TestCorrelationClient(t *testing.T) {

cors := waitForCors(serverCh, 1, 4)
require.Len(t, cors, 0)
require.Equal(t, uint32(5), client.(*Client).maxAttempts)
require.Equal(t, int64(5), atomic.LoadInt64(&client.(*Client).TotalRetriedUpdates))

forcedRespCode.Store(200)
Expand Down
4 changes: 2 additions & 2 deletions processor/k8sattributesprocessor/internal/kube/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ import (
"github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor/internal/observability"
)

// Upgrade to StageBeta in v0.83.0
// Upgrade to StageStable in v0.92.0
var enableRFC3339Timestamp = featuregate.GlobalRegistry().MustRegister(
"k8sattr.rfc3339",
featuregate.StageAlpha,
featuregate.StageBeta,
featuregate.WithRegisterDescription("When enabled, uses RFC3339 format for k8s.pod.start_time value"),
featuregate.WithRegisterFromVersion("v0.82.0"),
)
Expand Down
6 changes: 0 additions & 6 deletions processor/k8sattributesprocessor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ func (kp *kubernetesprocessor) initKubeClient(logger *zap.Logger, kubeClient kub
}

func (kp *kubernetesprocessor) Start(_ context.Context, _ component.Host) error {
if kp.rules.StartTime {
kp.logger.Warn("k8s.pod.start_time value will be changed to use RFC3339 format in v0.83.0. " +
"see https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/24016 for more information. " +
"enable feature-gate k8sattr.rfc3339 to opt into this change.")
}

if !kp.passthroughMode {
go kp.kc.Start()
}
Expand Down

0 comments on commit a7b97c4

Please sign in to comment.