Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[receiver/solacereceiver]: Added support to the Solace Receiver to convert the new Move and delete spans #36071

Merged
merged 31 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e14376e
chore: updated the README to include instruction to generate the move…
oodigie Jun 4, 2024
a097b77
feat[solace-receiver]: updated the egress and move protobuf files - t…
oodigie Jun 4, 2024
92847e0
refactor[solace-receiver]: small refactoring of the unmarshaller_rece…
oodigie Jun 4, 2024
5b0516c
feat[solace-receiver]: implemented support for Delete Spans within th…
oodigie Jun 4, 2024
f7bd738
feat[solace-receiver]: added the new move spans protobuf file - curre…
oodigie Jun 4, 2024
94ca319
feat[solace-receiver]: extended the observability functions to includ…
oodigie Jun 5, 2024
f1db520
feat[solace-receiver]: implemented the unmarshaller for move spans
oodigie Jun 5, 2024
db690fa
feat[solace-receiver]: log specific error when Egress span version no…
oodigie Jun 5, 2024
b89fe73
feat[solace-receiver]: minor refactor and added more test converage f…
oodigie Jun 6, 2024
1973327
chore[solace-receiver]: removed the commented out codes in the egress…
oodigie Jun 6, 2024
b135d3b
feat[solace-receiver]: added unit tests for the move unmarshaller
oodigie Jun 6, 2024
cefd11f
feat[solace-receiver]: refactored the template format for the span na…
oodigie Jun 10, 2024
a7b6cd6
feat: merged upstream/main into this branch
oodigie Jul 10, 2024
e0a1e42
feat[solacereceiver]: fixed the failing tests
oodigie Jul 11, 2024
2d3a0f2
feat[solacereceiver]: implemented support for router name, vpn name a…
oodigie Jul 11, 2024
4f9e7d5
feat[solacereceiver]: Added a broker_component_name attribute to the …
oodigie Jul 31, 2024
33977f6
feat: Merged changes from upstream/main into this branch
oodigie Jul 31, 2024
d29f458
feat: added a default broker_component_name of solace in the metric a…
oodigie Jul 31, 2024
62e2f8d
feat: prefixed the broker_component_name attribute with the solace na…
oodigie Jul 31, 2024
c9a0eeb
merged changes from upstream/main into this branch
oodigie Sep 25, 2024
9dccf90
included partition number for send, move and delete spans. Also added…
oodigie Sep 25, 2024
fedc797
SOL-126789: merge the messaging.solace.destination.kind and the messa…
oodigie Oct 7, 2024
258b636
SOL-126789: renamed the messaging.solace.destination_type attribute t…
oodigie Oct 16, 2024
546fad7
Merge branch 'upstream/main' into move_and_delete_spans
oodigie Oct 29, 2024
eb5a9e0
[solacereceiver]: added the changelog file for the move and delete sp…
oodigie Oct 29, 2024
57d329e
[solacereceiver]: added the PR number to the changelog file
oodigie Oct 29, 2024
2b7cdeb
[solacereceiver]: fixed unit tests failures after running make generate
oodigie Oct 29, 2024
46990eb
[solacereceiver]: fixed lint errors
oodigie Oct 29, 2024
1ee8214
Merge branch 'upstream/main' into move_and_delete_spans
oodigie Oct 29, 2024
49d2d26
[solacereceiver]: other updates to make the linter happy
oodigie Oct 29, 2024
d5a4170
[solacereceiver]: more linter fixes
oodigie Oct 29, 2024
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
27 changes: 27 additions & 0 deletions .chloggen/solacereceiver_move_and_delete_spans.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: solacereceiver

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: "Add support to the Solace Receiver to convert the new `Move to Dead Message Queue` and new `Delete` spans generated by Solace Event Broker to OTLP."

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

# (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]
1 change: 1 addition & 0 deletions receiver/solacereceiver/internal/model/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ To generate the V1 model from the model directory:
```
protoc --go_out=../ --go_opt=paths=import --go_opt=Mreceive_v1.proto=model/receive/v1 receive_v1.proto
protoc --go_out=../ --go_opt=paths=import --go_opt=Megress_v1.proto=model/egress/v1 egress_v1.proto
protoc --go_out=../ --go_opt=paths=import --go_opt=Mmove_v1.proto=model/move/v1 move_v1.proto
goimports -w .
```
Loading