skywalking-java/apm-sniffer
Evgeniy Devyatykh f971bcf0fd
To prevent NPE use pool name for metrics if JDBC URL is not set. (#754)
HikariCP pool can be configured using JDBC URL:
```
HikariConfig config = new HikariConfig();
config.setJdbcUrl("jdbc:mysql://localhost:3306/simpsons");
```
or using data source properties
```
Properties props = new Properties();
props.setProperty("dataSourceClassName", "org.postgresql.ds.PGSimpleDataSource");
props.setProperty("dataSource.serverName", "localhost");
...
HikariConfig config = new HikariConfig(props);
HikariDataSource ds = new HikariDataSource(config)
```
2025-05-07 21:14:51 +08:00
..
apm-agent Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
apm-agent-core Add the virtual thread executor plugin (#751) 2025-03-09 09:39:41 +08:00
apm-sdk-plugin To prevent NPE use pool name for metrics if JDBC URL is not set. (#754) 2025-05-07 21:14:51 +08:00
apm-test-tools Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
apm-toolkit-activation Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
bootstrap-plugins Fix Conflicts apm-jdk-threadpool-plugin conflicts with apm-jdk-forkjoinpool-plugin (#753) 2025-04-29 19:12:22 +08:00
bytebuddy-patch Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
config Add Caffeine plugin as optional (#743) 2024-12-29 08:16:05 +08:00
expired-plugins Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
optional-plugins Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
optional-reporter-plugins Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00
pom.xml Release 9.4.0 and prepare 9.5.0 (#750) 2025-02-19 23:03:01 +08:00