Conversation
50b5619 to
beec303
Compare
|
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
#9) * Add REUSE compliance: LICENSES/, .reuse/dep5, and fix invalid SPDX expressions - Add LICENSES/Apache-2.0.txt (copy of LICENSE) as required by REUSE spec - Add .reuse/dep5 to provide copyright/license info for files without inline headers - Fix invalid SPDX expressions in OtelImplJavadocTest and OtelInternalJavadocTest by wrapping embedded SPDX-License-Identifier strings in REUSE-IgnoreStart/End comments to prevent the REUSE linter from treating test fixture content as actual license declarations * reuse convert-dep5 Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com> --------- Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
eu.apeirora.opentelemetry → io.opentelemetry Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
- API - SDK - OTLP exporter - autoconfigure Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
…ld config - Add unit tests for SdkAuditProvider, SimpleAuditRecordProcessor, BatchAuditRecordProcessor, and AuditLogRecordDataAdapter - Fix OtlpHttpAuditRecordExporter/Builder to use otlp.internal HTTP classes instead of removed exporter.internal.http package - Fix Checkstyle import order in SimpleAuditRecordProcessorTest - Update build.gradle.kts dependencies for audit exporter tests - Refresh apidiffs to compare against 1.63.0 baseline - Disable Gradle parallel/caching/config-cache for reproducible local builds Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
6e99b21 to
e768afa
Compare
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
…est (open-telemetry#8460) Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
…8466) Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
notes Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
AuditRecordData extends LogRecordData. AutoValue generates constructor parameters for all abstract (non-default) getter methods. The previous code passed arguments in the wrong order and included fields (body, InstrumentationScopeInfo, etc.) that AutoValue did not expect. - Add default implementations in AuditRecordData for LogRecordData fields not applicable to audit: InstrumentationScopeInfo, SpanContext, Severity, SeverityText, Body, TotalAttributeCount - Declare getEventName() abstract in AuditRecordData so AutoValue generates a field for it - Fix argument order in SdkAuditRecordData.create() and SdkReadWriteAuditRecord.toAuditRecordData() to match AutoValue order - Remove unused body field from SdkReadWriteAuditRecord; setBody() in SdkAuditRecordBuilder is now a no-op per spec (body travels via AuditRecordData.getBodyValue() default) - Update tests to use combined API methods setActor(), setTarget(), setSource() instead of the removed individual setActorId() etc. Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
|
|
|
I think you probably don't want to be running all of the core github actions on your fork.... |
Signed-off-by: Hilmar Falkenberg <hilmar.falkenberg@sap.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces an initial end-to-end audit logging pipeline for OpenTelemetry Java, including new API and SDK modules, OTLP HTTP export support, and autoconfiguration wiring.
What changed
Configuration behavior
Why
This lays the foundation for first-class audit logging support in OpenTelemetry Java with:
Notes