-
Notifications
You must be signed in to change notification settings - Fork 146
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
Integration tests for JMX Scraper #1480
Merged
trask
merged 12 commits into
open-telemetry:main
from
robsunday:jmx-scraper-integration-tests
Oct 16, 2024
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
49cfb99
Additional logger call
robsunday a8f8ace
Test exception thrown
robsunday e1043d1
Spotless fix
robsunday 26efa72
Integration tests are now working on macOS
robsunday 12e6533
refactor in a single method
SylvainJuge 172846c
cleanup and reuse free port impl.
SylvainJuge 898c3c8
revert port selector class
SylvainJuge da8f4d8
Merge pull request #1 from SylvainJuge/jmx-scraper-integration-tests
robsunday 2260258
use fixed port for container-to-container
SylvainJuge 59e1e6f
Merge pull request #2 from SylvainJuge/fixed-port-for-cross-container
robsunday df4e149
Spotless fix
robsunday 93944b7
Code review changes
robsunday 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
42 changes: 42 additions & 0 deletions
42
jmx-scraper/src/integrationTest/java/io/opentelemetry/contrib/jmxscraper/PortSelector.java
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,42 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.contrib.jmxscraper; | ||
|
||
import java.io.IOException; | ||
import java.net.Socket; | ||
import java.util.Random; | ||
|
||
/** Class used for finding random free network port from range 1024-65535 */ | ||
public class PortSelector { | ||
private static final Random random = new Random(System.currentTimeMillis()); | ||
|
||
private static final int MIN_PORT = 1024; | ||
private static final int MAX_PORT = 65535; | ||
|
||
private PortSelector() {} | ||
|
||
/** | ||
* @return random available TCP port | ||
*/ | ||
public static synchronized int getAvailableRandomPort() { | ||
int port; | ||
|
||
do { | ||
port = random.nextInt(MAX_PORT - MIN_PORT + 1) + MIN_PORT; | ||
} while (!isPortAvailable(port)); | ||
|
||
return port; | ||
} | ||
|
||
private static boolean isPortAvailable(int port) { | ||
// see https://stackoverflow.com/a/13826145 for the chosen implementation | ||
try (Socket s = new Socket("localhost", port)) { | ||
return false; | ||
} catch (IOException e) { | ||
return true; | ||
} | ||
} | ||
} |
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.
[for reviewer] this part had to go anyway as it's now replaced by actual integration tests in #1485 , here it only checked the connection from the host as a proxy of "target JVM is working with JMX settings".