-
Notifications
You must be signed in to change notification settings - Fork 130
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 11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,24 +5,19 @@ | |
|
||
package io.opentelemetry.contrib.jmxscraper.target_systems; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import com.linecorp.armeria.server.ServerBuilder; | ||
import com.linecorp.armeria.server.grpc.GrpcService; | ||
import com.linecorp.armeria.testing.junit5.server.ServerExtension; | ||
import io.grpc.stub.StreamObserver; | ||
import io.opentelemetry.contrib.jmxscraper.JmxConnectorBuilder; | ||
import io.opentelemetry.contrib.jmxscraper.JmxScraperContainer; | ||
import io.opentelemetry.proto.collector.metrics.v1.ExportMetricsServiceRequest; | ||
import io.opentelemetry.proto.collector.metrics.v1.ExportMetricsServiceResponse; | ||
import io.opentelemetry.proto.collector.metrics.v1.MetricsServiceGrpc; | ||
import java.io.IOException; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.concurrent.BlockingQueue; | ||
import java.util.concurrent.ExecutionException; | ||
import java.util.concurrent.LinkedBlockingDeque; | ||
import javax.management.remote.JMXConnector; | ||
import org.junit.jupiter.api.AfterAll; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeAll; | ||
|
@@ -35,8 +30,8 @@ | |
import org.testcontainers.containers.output.Slf4jLogConsumer; | ||
|
||
public abstract class TargetSystemIntegrationTest { | ||
|
||
private static final Logger logger = LoggerFactory.getLogger(TargetSystemIntegrationTest.class); | ||
private static final Logger targetSystemLogger = LoggerFactory.getLogger("TargetSystemContainer"); | ||
private static final Logger jmxScraperLogger = LoggerFactory.getLogger("JmxScraperContainer"); | ||
private static final String TARGET_SYSTEM_NETWORK_ALIAS = "targetsystem"; | ||
private static String otlpEndpoint; | ||
|
||
|
@@ -54,6 +49,9 @@ public abstract class TargetSystemIntegrationTest { | |
private JmxScraperContainer scraper; | ||
|
||
private static final String OTLP_HOST = "host.testcontainers.internal"; | ||
|
||
// JMX communication only happens between container, and we don't have to use JMX | ||
// from host to container, we can use a fixed port. | ||
private static final int JMX_PORT = 9999; | ||
|
||
@BeforeAll | ||
|
@@ -93,27 +91,14 @@ void endToEndTest() { | |
|
||
target = | ||
createTargetContainer(JMX_PORT) | ||
.withLogConsumer(new Slf4jLogConsumer(logger)) | ||
.withLogConsumer(new Slf4jLogConsumer(targetSystemLogger)) | ||
.withNetwork(network) | ||
.withExposedPorts(JMX_PORT) | ||
.withNetworkAliases(TARGET_SYSTEM_NETWORK_ALIAS); | ||
target.start(); | ||
|
||
String targetHost = target.getHost(); | ||
Integer targetPort = target.getMappedPort(JMX_PORT); | ||
logger.info( | ||
"Target system started, JMX port: {} mapped to {}:{}", JMX_PORT, targetHost, targetPort); | ||
|
||
// TODO : wait for metrics to be sent and add assertions on what is being captured | ||
// for now we just test that we can connect to remote JMX using our client. | ||
try (JMXConnector connector = JmxConnectorBuilder.createNew(targetHost, targetPort).build()) { | ||
assertThat(connector.getMBeanServerConnection()).isNotNull(); | ||
} catch (IOException e) { | ||
throw new RuntimeException(e); | ||
} | ||
|
||
Comment on lines
-102
to
-114
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. [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". |
||
scraper = | ||
new JmxScraperContainer(otlpEndpoint) | ||
.withLogConsumer(new Slf4jLogConsumer(jmxScraperLogger)) | ||
.withNetwork(network) | ||
.withService(TARGET_SYSTEM_NETWORK_ALIAS, JMX_PORT); | ||
|
||
|
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.
I'd suggest either remove or include a code comment explaining why you may want to uncomment