-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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/rabbitmq] Enhancement/rabbitmq Added node level metrics #37495
Open
VenuEmmadi
wants to merge
26
commits into
open-telemetry:main
Choose a base branch
from
VenuEmmadi:enhancement/rabbitmq-node-metrics
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
bfba7ed
Enhance RabbitMQ receiver with node metrics support
VenuEmmadi 42c2c7a
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi ceb2cee
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi 4498f2b
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi c0e24b4
Here’s the changelog entry
VenuEmmadi 8c105df
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi 88d22a0
added issue id
VenuEmmadi f59d9df
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi 9b6e76d
Updated Readme and metadata.yaml
VenuEmmadi b1c8824
updated some nits
VenuEmmadi b505883
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi 56a98d2
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi 31f7a2c
Updated some nits
VenuEmmadi 99fb373
Updated some nits
VenuEmmadi 19d07ce
Updated some nits
VenuEmmadi 50a9a01
Updated some nits
VenuEmmadi 0904bca
updated enable_node_metrics (default = rue)
VenuEmmadi 7b462e0
Rectified lint issues
VenuEmmadi 9359f5b
Fix gofumpt formatting in scraper.go
VenuEmmadi 846e529
Run make generate to update generated code
VenuEmmadi 8c2bb39
Run make generate to update generated code and Fix gofumpt formatting…
VenuEmmadi 7fb8eb5
Merge branch 'main' into enhancement/rabbitmq-node-metrics
VenuEmmadi fc3183a
aligned with the reviewer's feedback to make the PR non-breaking and …
VenuEmmadi b3e959d
rectified CodeGen issues
VenuEmmadi 7cdba65
rectified Lint issues
VenuEmmadi 702e96e
Merge branch 'open-telemetry:main' into enhancement/rabbitmq-node-met…
VenuEmmadi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# 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: rabbitmqreceiver | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: "Enhance the RabbitMQ receiver to collect and report node-level metrics (`rabbitmq.node.disk_free`, `rabbitmq.node.fd_used`, `rabbitmq.node.mem_limit`, and `rabbitmq.node.mem_used`). This provides additional observability into the state and resource usage of RabbitMQ nodes." | ||
|
||
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. | ||
issues: [36925] |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,12 +138,14 @@ func TestStatsReaders_Read(t *testing.T) { | |
|
||
op, err := databaseAdminClient.UpdateDatabaseDdl(ctx, &databasepb.UpdateDatabaseDdlRequest{ | ||
Database: databaseName, | ||
Statements: []string{`CREATE TABLE STATS ( | ||
Statements: []string{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please revert changes to the googlecloudspannerreceiver in this PR |
||
`CREATE TABLE STATS ( | ||
INTERVAL_END TIMESTAMP, | ||
METRIC_LABEL STRING(MAX), | ||
METRIC_VALUE INT64 | ||
) PRIMARY KEY (METRIC_LABEL) | ||
`}, | ||
`, | ||
}, | ||
}) | ||
require.NoError(t, err) | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert changes to the zipkin exporter in this PR