-
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
[resourcedetectionprocessor]: add host.id to system detector #18618
Conversation
fcb89f0
to
9a9a989
Compare
Foresight Summary
View More Details⭕ build-and-test-windows workflow has finished in 5 seconds (40 minutes 56 seconds less than
|
Job | Failed Steps | Tests | |
---|---|---|---|
windows-unittest-matrix | - 🔗 | N/A | See Details |
windows-unittest | - 🔗 | N/A | See Details |
✅ telemetrygen workflow has finished in 59 seconds (2 minutes 9 seconds less than main
branch avg.) and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
build-dev | - 🔗 | N/A | See Details |
publish-latest | - 🔗 | N/A | See Details |
publish-stable | - 🔗 | N/A | See Details |
✅ check-links workflow has finished in 1 minute 25 seconds (1 minute 10 seconds less than main
branch avg.) and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
changed files | - 🔗 | N/A | See Details |
check-links | - 🔗 | N/A | See Details |
✅ changelog workflow has finished in 2 minutes 1 second (1 minute 11 seconds less than main
branch avg.) and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
changelog | - 🔗 | N/A | See Details |
✅ prometheus-compliance-tests workflow has finished in 12 minutes 22 seconds (⚠️ 3 minutes 32 seconds more than main
branch avg.) and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
prometheus-compliance-tests | - 🔗 | ✅ 21 ❌ 0 ⏭ 0 🔗 | See Details |
✅ e2e-tests workflow has finished in 13 minutes 55 seconds (2 minutes 20 seconds less than main
branch avg.) and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
kubernetes-test | - 🔗 | N/A | See Details |
✅ load-tests workflow has finished in 18 minutes 11 seconds and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
loadtest (TestTraceAttributesProcessor) | - 🔗 | ✅ 3 ❌ 0 ⏭ 0 🔗 | See Details |
loadtest (TestIdleMode) | - 🔗 | ✅ 1 ❌ 0 ⏭ 0 🔗 | See Details |
loadtest (TestMetric10kDPS|TestMetricsFromFile) | - 🔗 | ✅ 6 ❌ 0 ⏭ 0 🔗 | See Details |
loadtest (TestTraceNoBackend10kSPS|TestTrace1kSPSWithAttrs) | - 🔗 | ✅ 8 ❌ 0 ⏭ 0 🔗 | See Details |
loadtest (TestTraceBallast1kSPSWithAttrs|TestTraceBallast1kSPSAddAttrs) | - 🔗 | ✅ 10 ❌ 0 ⏭ 0 🔗 | See Details |
loadtest (TestMetricResourceProcessor|TestTrace10kSPS) | - 🔗 | ✅ 12 ❌ 0 ⏭ 0 🔗 | See Details |
loadtest (TestBallastMemory|TestLog10kDPS) | - 🔗 | ✅ 18 ❌ 0 ⏭ 0 🔗 | See Details |
setup-environment | - 🔗 | N/A | See Details |
build-and-test workflow has finished in 22 seconds (1 hour 5 minutes 39 seconds less than main
branch avg.) and finished at 16th Feb, 2023.
Job | Failed Steps | Tests | |
---|---|---|---|
unittest-matrix (1.20, exporter) | N/A | ✅ 2455 ❌ 0 ⏭ 0 🔗 | See Details |
unittest-matrix (1.20, other) | N/A | ✅ 4687 ❌ 0 ⏭ 0 🔗 | See Details |
unittest-matrix (1.19, other) | N/A | ✅ 4687 ❌ 0 ⏭ 0 🔗 | See Details |
*You can configure Foresight comments in your organization settings page.
9a9a989
to
8c245c5
Compare
rebasing due to conflicts with main |
seems that
|
@sumo-drosiek can you open an issue to report it? I will re-run the tests to see if it's a flake, but still we should look into it |
Sure, here is the issue: #18684 |
Signed-off-by: Dominik Rosiek <[email protected]>
1f2c7bc
to
1141a2c
Compare
After another rebase signalfx exporter is failing 🙄
|
@@ -495,6 +495,7 @@ require ( | |||
github.com/openzipkin/zipkin-go v0.4.1 // indirect | |||
github.com/outcaste-io/ristretto v0.2.0 // indirect | |||
github.com/ovh/go-ovh v1.3.0 // indirect | |||
github.com/panta/machineid v1.0.2 // indirect |
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.
Why do we need to bring a fork dependency with 8 stars on github if we can get this info from gopsutil?
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.
@sumo-drosiek if you agree with my concern, can you please follow up with an issue or PR?
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.
https://github.com/panta/machineid (8 stars) is fork of https://github.com/denisbrodbeck/machineid (715 stars, but seems to be not maintained: denisbrodbeck/machineid#5 (comment))
I will change it to gopsutil and we can eventually look for another solution in case it won't be sufficient.
I wasn't aware of gopsutil 😅
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.
Opened new PR: #18740
Trying to redefine
but it doesn't work (host.id in Prometheus is still equal to /etc/machine-id). Moreover, every time I restart otel-collector-contrib container (this happens quite often), it gets a new |
Description:
Add
host.id
detection tosystem
detectorLink to tracking Issue: #18533
Testing:
Unit Tests
Documentation: N/A