-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
chore: [receiver/hostmetrics] Fix integration tests #36847
Merged
dmitryax
merged 5 commits into
open-telemetry:main
from
rogercoll:fix_hostmetrics_integration_tests
Dec 17, 2024
+102
−124
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7126145
fix: hostmetrics integration tests
rogercoll 65f9f3a
Merge branch 'main' into fix_hostmetrics_integration_tests
rogercoll 3b5936a
chore: remove unchecked process attributes
rogercoll 8bdaf55
Merge branch 'main' into fix_hostmetrics_integration_tests
rogercoll 7fbf2f3
Merge branch 'main' into fix_hostmetrics_integration_tests
fatsheep9146 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0::/ |
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 @@ | ||
testdata/e2e/bin/bash |
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 @@ | ||
1234 567 89 10 11 12 13 |
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,43 @@ | ||
Name: bash | ||
State: S (sleeping) | ||
Tgid: 1 | ||
Pid: 1 | ||
PPid: 0 | ||
TracerPid: 0 | ||
Uid: 1000 1000 1000 1000 | ||
Gid: 1000 1000 1000 1000 | ||
FDSize: 128 | ||
Groups: 4 20 24 | ||
VmPeak: 4153344 kB | ||
VmSize: 4153344 kB | ||
VmLck: 0 kB | ||
VmPin: 0 kB | ||
VmHWM: 808 kB | ||
VmRSS: 808 kB | ||
VmData: 3686404 kB | ||
VmStk: 65536 kB | ||
VmExe: 1129 kB | ||
VmLib: 13 kB | ||
VmPTE: 4 kB | ||
VmSwap: 0 kB | ||
Threads: 1 | ||
SigQ: 0/1266761467 | ||
SigPnd: 0000000000000000 | ||
ShdPnd: 0000000000000000 | ||
SigBlk: 0000000000000000 | ||
SigIgn: 0000000000000000 | ||
SigCgt: 0000000000000000 | ||
CapInh: 0000000000000000 | ||
CapPrm: 0000000000000000 | ||
CapEff: 0000000000000000 | ||
CapBnd: 0000000000000000 | ||
CapAmb: 0000000000000000 | ||
NoNewPrivs: 0 | ||
Seccomp: 0 | ||
Speculation_Store_Bypass: thread vulnerable | ||
Cpus_allowed: 1 | ||
Cpus_allowed_list: 0 | ||
Mems_allowed: 0 | ||
Mems_allowed_list: 0 | ||
voluntary_ctxt_switches: 17 | ||
nonvoluntary_ctxt_switches: 4 |
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.
If we're ignoring these attributes now anyway maybe these can be removed? Or does the integration test framework expect them in some way?
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.
Good point, the test framework actually removes them, so let's remove them as well 3b5936a