Search in sources :

Example 1 with InsightMetadata

use of com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata in project java-driver by datastax.

the class InsightsClientTest method should_construct_json_event_status_message.

@Test
public void should_construct_json_event_status_message() throws IOException {
    // given
    InsightsClient insightsClient = new InsightsClient(mockDefaultDriverContext(), MOCK_TIME_SUPPLIER, INSIGHTS_CONFIGURATION, null, null, null, null, null, EMPTY_STACK_TRACE);
    // when
    String statusMessage = insightsClient.createStatusMessage();
    // then
    Insight<InsightsStatusData> insight = new ObjectMapper().readValue(statusMessage, new TypeReference<Insight<InsightsStatusData>>() {
    });
    assertThat(insight.getMetadata()).isEqualTo(new InsightMetadata("driver.status", 1L, ImmutableMap.of("language", "java"), InsightType.EVENT, "v1"));
    InsightsStatusData insightData = insight.getInsightData();
    assertThat(insightData.getClientId()).isEqualTo("client-id");
    assertThat(insightData.getSessionId()).isNotNull();
    assertThat(insightData.getControlConnection()).isEqualTo("127.0.0.1:10");
    assertThat(insightData.getConnectedNodes()).isEqualTo(ImmutableMap.of("127.0.0.1:10", new SessionStateForNode(1, 10), "127.0.0.1:20", new SessionStateForNode(2, 20)));
}
Also used : InsightsStatusData(com.datastax.dse.driver.internal.core.insights.schema.InsightsStatusData) SessionStateForNode(com.datastax.dse.driver.internal.core.insights.schema.SessionStateForNode) Insight(com.datastax.dse.driver.internal.core.insights.schema.Insight) InsightMetadata(com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) Test(org.junit.Test)

Example 2 with InsightMetadata

use of com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata in project java-driver by datastax.

the class InsightsClientTest method should_construct_json_event_startup_message.

@Test
public void should_construct_json_event_startup_message() throws IOException {
    // given
    DefaultDriverContext context = mockDefaultDriverContext();
    PlatformInfoFinder platformInfoFinder = mock(PlatformInfoFinder.class);
    OS os = new OS("linux", "1.2", "x64");
    CPUS cpus = new CPUS(8, "intel i7");
    Map<String, RuntimeAndCompileTimeVersions> javaDeps = ImmutableMap.of("version", new RuntimeAndCompileTimeVersions("1.8.0", "1.8.0", false));
    Map<String, Map<String, RuntimeAndCompileTimeVersions>> runtimeInfo = ImmutableMap.of("java", javaDeps);
    InsightsPlatformInfo insightsPlatformInfo = new InsightsPlatformInfo(os, cpus, runtimeInfo);
    when(platformInfoFinder.getInsightsPlatformInfo()).thenReturn(insightsPlatformInfo);
    ConfigAntiPatternsFinder configAntiPatternsFinder = mock(ConfigAntiPatternsFinder.class);
    when(configAntiPatternsFinder.findAntiPatterns(any(DefaultDriverContext.class))).thenReturn(ImmutableMap.of("contactPointsMultipleDCs", "Contact points contain hosts from multiple data centers"));
    DataCentersFinder dataCentersFinder = mock(DataCentersFinder.class);
    when(dataCentersFinder.getDataCenters(any(DefaultDriverContext.class))).thenReturn(Sets.newHashSet("dc1", "dc2"));
    ReconnectionPolicyInfoFinder reconnectionPolicyInfoFinder = mock(ReconnectionPolicyInfoFinder.class);
    when(reconnectionPolicyInfoFinder.getReconnectionPolicyInfo(any(), any())).thenReturn(new ReconnectionPolicyInfo("reconnection-policy-a", ImmutableMap.of("opt-a", 1), "com.datastax.dse"));
    InsightsClient insightsClient = new InsightsClient(context, MOCK_TIME_SUPPLIER, INSIGHTS_CONFIGURATION, platformInfoFinder, reconnectionPolicyInfoFinder, new ExecutionProfilesInfoFinder(), configAntiPatternsFinder, dataCentersFinder, EMPTY_STACK_TRACE);
    // when
    String startupMessage = insightsClient.createStartupMessage();
    Insight<InsightsStartupData> insight = new ObjectMapper().readValue(startupMessage, new TypeReference<Insight<InsightsStartupData>>() {
    });
    // then
    assertThat(insight.getMetadata()).isEqualTo(new InsightMetadata("driver.startup", 1L, ImmutableMap.of("language", "java"), InsightType.EVENT, "v1"));
    InsightsStartupData insightData = insight.getInsightData();
    assertThat(insightData.getClientId()).isEqualTo("client-id");
    assertThat(insightData.getSessionId()).isNotNull();
    assertThat(insightData.getDriverName()).isEqualTo("DataStax Enterprise Java Driver");
    assertThat(insightData.getDriverVersion()).isNotEmpty();
    assertThat(insightData.getApplicationName()).isEqualTo("app-name");
    assertThat(insightData.getApplicationVersion()).isEqualTo("1.0.0");
    assertThat(insightData.isApplicationNameWasGenerated()).isEqualTo(false);
    assertThat(insightData.getContactPoints()).isEqualTo(ImmutableMap.of("localhost", Collections.singletonList("127.0.0.1:9999")));
    assertThat(insightData.getInitialControlConnection()).isEqualTo("127.0.0.1:10");
    assertThat(insightData.getLocalAddress()).isEqualTo("127.0.0.1");
    assertThat(insightData.getHostName()).isNotEmpty();
    assertThat(insightData.getProtocolVersion()).isEqualTo(DSE_V2.getCode());
    assertThat(insightData.getExecutionProfiles()).isEqualTo(ImmutableMap.of("default", new SpecificExecutionProfile(100, new LoadBalancingInfo("LoadBalancingPolicyImpl", ImmutableMap.of("localDataCenter", "local-dc", "filterFunction", true), DEFAULT_LOAD_BALANCING_PACKAGE), new SpeculativeExecutionInfo("SpeculativeExecutionImpl", ImmutableMap.of("maxSpeculativeExecutions", 100, "delay", 20), DEFAULT_SPECULATIVE_EXECUTION_PACKAGE), "LOCAL_ONE", "SERIAL", ImmutableMap.of("source", "src-graph")), "non-default", new SpecificExecutionProfile(50, null, null, null, null, null)));
    assertThat(insightData.getPoolSizeByHostDistance()).isEqualTo(new PoolSizeByHostDistance(2, 1, 0));
    assertThat(insightData.getHeartbeatInterval()).isEqualTo(100);
    assertThat(insightData.getCompression()).isEqualTo("none");
    assertThat(insightData.getReconnectionPolicy()).isEqualTo(new ReconnectionPolicyInfo("reconnection-policy-a", ImmutableMap.of("opt-a", 1), "com.datastax.dse"));
    assertThat(insightData.getSsl()).isEqualTo(new SSL(true, false));
    assertThat(insightData.getAuthProvider()).isEqualTo(new AuthProviderType("AuthProviderImpl", DEFAULT_AUTH_PROVIDER_PACKAGE));
    assertThat(insightData.getOtherOptions()).isEqualTo(EMPTY_OBJECT_MAP);
    assertThat(insightData.getPlatformInfo()).isEqualTo(insightsPlatformInfo);
    assertThat(insightData.getConfigAntiPatterns()).isEqualTo(ImmutableMap.of("contactPointsMultipleDCs", "Contact points contain hosts from multiple data centers"));
    assertThat(insightData.getPeriodicStatusInterval()).isEqualTo(300);
    assertThat(insightData.getDataCenters()).isEqualTo(Sets.newHashSet("dc1", "dc2"));
}
Also used : LoadBalancingInfo(com.datastax.dse.driver.internal.core.insights.schema.LoadBalancingInfo) SpecificExecutionProfile(com.datastax.dse.driver.internal.core.insights.schema.SpecificExecutionProfile) PoolSizeByHostDistance(com.datastax.dse.driver.internal.core.insights.schema.PoolSizeByHostDistance) CPUS(com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo.CPUS) InsightsPlatformInfo(com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo) InsightsStartupData(com.datastax.dse.driver.internal.core.insights.schema.InsightsStartupData) ReconnectionPolicyInfo(com.datastax.dse.driver.internal.core.insights.schema.ReconnectionPolicyInfo) Insight(com.datastax.dse.driver.internal.core.insights.schema.Insight) RuntimeAndCompileTimeVersions(com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo.RuntimeAndCompileTimeVersions) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) OS(com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo.OS) AuthProviderType(com.datastax.dse.driver.internal.core.insights.schema.AuthProviderType) SSL(com.datastax.dse.driver.internal.core.insights.schema.SSL) SpeculativeExecutionInfo(com.datastax.dse.driver.internal.core.insights.schema.SpeculativeExecutionInfo) DefaultDriverContext(com.datastax.oss.driver.internal.core.context.DefaultDriverContext) Map(java.util.Map) HashMap(java.util.HashMap) ImmutableMap(com.datastax.oss.driver.shaded.guava.common.collect.ImmutableMap) InsightMetadata(com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata) Test(org.junit.Test)

Example 3 with InsightMetadata

use of com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata in project java-driver by datastax.

the class InsightsClient method createStartupMessage.

@VisibleForTesting
String createStartupMessage() {
    InsightMetadata insightMetadata = createMetadata(STARTUP_MESSAGE_NAME, STARTUP_VERSION_1_ID);
    InsightsStartupData data = createStartupData();
    try {
        return OBJECT_MAPPER.writeValueAsString(new Insight<>(insightMetadata, data));
    } catch (JsonProcessingException e) {
        throw new InsightEventFormatException("Problem when creating: " + STARTUP_MESSAGE_NAME, e);
    }
}
Also used : InsightEventFormatException(com.datastax.dse.driver.internal.core.insights.exceptions.InsightEventFormatException) InsightsStartupData(com.datastax.dse.driver.internal.core.insights.schema.InsightsStartupData) InsightMetadata(com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata) JsonProcessingException(com.fasterxml.jackson.core.JsonProcessingException) VisibleForTesting(com.datastax.oss.driver.shaded.guava.common.annotations.VisibleForTesting)

Example 4 with InsightMetadata

use of com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata in project java-driver by datastax.

the class InsightsClient method createStatusMessage.

@VisibleForTesting
String createStatusMessage() {
    InsightMetadata insightMetadata = createMetadata(STATUS_MESSAGE_NAME, STATUS_VERSION_1_ID);
    InsightsStatusData data = createStatusData();
    try {
        return OBJECT_MAPPER.writeValueAsString(new Insight<>(insightMetadata, data));
    } catch (JsonProcessingException e) {
        throw new InsightEventFormatException("Problem when creating: " + STATUS_MESSAGE_NAME, e);
    }
}
Also used : InsightEventFormatException(com.datastax.dse.driver.internal.core.insights.exceptions.InsightEventFormatException) InsightsStatusData(com.datastax.dse.driver.internal.core.insights.schema.InsightsStatusData) InsightMetadata(com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata) JsonProcessingException(com.fasterxml.jackson.core.JsonProcessingException) VisibleForTesting(com.datastax.oss.driver.shaded.guava.common.annotations.VisibleForTesting)

Aggregations

InsightMetadata (com.datastax.dse.driver.internal.core.insights.schema.InsightMetadata)4 InsightEventFormatException (com.datastax.dse.driver.internal.core.insights.exceptions.InsightEventFormatException)2 Insight (com.datastax.dse.driver.internal.core.insights.schema.Insight)2 InsightsStartupData (com.datastax.dse.driver.internal.core.insights.schema.InsightsStartupData)2 InsightsStatusData (com.datastax.dse.driver.internal.core.insights.schema.InsightsStatusData)2 VisibleForTesting (com.datastax.oss.driver.shaded.guava.common.annotations.VisibleForTesting)2 JsonProcessingException (com.fasterxml.jackson.core.JsonProcessingException)2 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)2 Test (org.junit.Test)2 AuthProviderType (com.datastax.dse.driver.internal.core.insights.schema.AuthProviderType)1 InsightsPlatformInfo (com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo)1 CPUS (com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo.CPUS)1 OS (com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo.OS)1 RuntimeAndCompileTimeVersions (com.datastax.dse.driver.internal.core.insights.schema.InsightsPlatformInfo.RuntimeAndCompileTimeVersions)1 LoadBalancingInfo (com.datastax.dse.driver.internal.core.insights.schema.LoadBalancingInfo)1 PoolSizeByHostDistance (com.datastax.dse.driver.internal.core.insights.schema.PoolSizeByHostDistance)1 ReconnectionPolicyInfo (com.datastax.dse.driver.internal.core.insights.schema.ReconnectionPolicyInfo)1 SSL (com.datastax.dse.driver.internal.core.insights.schema.SSL)1 SessionStateForNode (com.datastax.dse.driver.internal.core.insights.schema.SessionStateForNode)1 SpecificExecutionProfile (com.datastax.dse.driver.internal.core.insights.schema.SpecificExecutionProfile)1