Skip to content
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

fix: add support for Hikari pool metrics [DHIS2-15419] #15623

Merged
merged 5 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dhis-2/dhis-support/dhis-support-system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</dependency>

<!-- application monitoring -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,20 @@

import static org.hisp.dhis.external.conf.ConfigurationKey.MONITORING_DBPOOL_ENABLED;

import com.google.common.collect.Lists;
import com.mchange.v2.c3p0.ComboPooledDataSource;
import com.zaxxer.hikari.HikariDataSource;
import io.micrometer.core.instrument.MeterRegistry;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import javax.sql.DataSource;
import org.apache.commons.lang3.StringUtils;
import org.hisp.dhis.external.conf.ConfigurationKey;
import org.hisp.dhis.monitoring.metrics.jdbc.C3p0MetadataProvider;
import org.hisp.dhis.monitoring.metrics.jdbc.DataSourcePoolMetadataProvider;
import org.hisp.dhis.monitoring.metrics.jdbc.DataSourcePoolMetrics;
import org.hisp.dhis.monitoring.metrics.jdbc.HikariMetadataProvider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Conditional;
Expand Down Expand Up @@ -96,10 +98,17 @@ private String getDataSourceName(String beanName) {

@Bean
public Collection<DataSourcePoolMetadataProvider> dataSourceMetadataProvider() {
DataSourcePoolMetadataProvider provider =
dataSource -> new C3p0MetadataProvider((ComboPooledDataSource) dataSource);

return Lists.newArrayList(provider);
return List.of(
dataSource -> {
if (dataSource instanceof ComboPooledDataSource comboPooledDataSource) {
return new C3p0MetadataProvider(comboPooledDataSource);
} else if (dataSource instanceof HikariDataSource hikariDataSource) {
return new HikariMetadataProvider(hikariDataSource);
} else {
throw new IllegalArgumentException(
"Unsupported DataSource type: " + dataSource.getClass().getName());
}
});
}

static class DataSourcePoolMetricsEnabledCondition extends MetricsEnabler {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/*
* Copyright (c) 2004-2022, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the HISP project nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.hisp.dhis.monitoring.metrics.jdbc;

import com.zaxxer.hikari.HikariDataSource;
import com.zaxxer.hikari.pool.HikariPool;
import org.springframework.beans.DirectFieldAccessor;

/**
* @author Morten Svanæs
*/
public class HikariDataSourcePoolMetadata extends AbstractDataSourcePoolMetadata<HikariDataSource> {

public HikariDataSourcePoolMetadata(HikariDataSource dataSource) {
super(dataSource);
}

@Override
public Integer getActive() {
try {
return getHikariPool().getActiveConnections();
} catch (Exception ex) {
return null;
}
}

@Override
public Integer getIdle() {
try {
return getHikariPool().getIdleConnections();
} catch (Exception ex) {
return null;
}
}

private HikariPool getHikariPool() {
return (HikariPool) new DirectFieldAccessor(getDataSource()).getPropertyValue("pool");
}

@Override
public Integer getMax() {
return getDataSource().getMaximumPoolSize();
}

@Override
public Integer getMin() {
return getDataSource().getMinimumIdle();
}

@Override
public String getValidationQuery() {
return getDataSource().getConnectionTestQuery();
}

@Override
public Boolean getDefaultAutoCommit() {
return getDataSource().isAutoCommit();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/*
* Copyright (c) 2004-2022, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the HISP project nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.hisp.dhis.monitoring.metrics.jdbc;

import com.zaxxer.hikari.HikariDataSource;

/**
* @author Morten Svanæs
*/
public class HikariMetadataProvider extends AbstractDataSourcePoolMetadata<HikariDataSource> {

private HikariDataSourcePoolMetadata hikariDataSourcePoolMetadata;
netroms marked this conversation as resolved.
Show resolved Hide resolved

/**
* Create an instance with the data source to use.
*
* @param dataSource the data source
*/
public HikariMetadataProvider(HikariDataSource dataSource) {
super(dataSource);
this.hikariDataSourcePoolMetadata = new HikariDataSourcePoolMetadata(getDataSource());
}

@Override
public Integer getActive() {
return hikariDataSourcePoolMetadata.getActive();
}

@Override
public Integer getMax() {
return hikariDataSourcePoolMetadata.getMax();
}

@Override
public Integer getMin() {
return hikariDataSourcePoolMetadata.getMin();
}

@Override
public String getValidationQuery() {
return "";
}

@Override
public Boolean getDefaultAutoCommit() {
return hikariDataSourcePoolMetadata.getDefaultAutoCommit();
}

@Override
public Integer getIdle() {
return hikariDataSourcePoolMetadata.getIdle();
}
}
Loading