This is an automated email from the ASF dual-hosted git repository.
udo pushed a change to branch feature/Micrometer
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard 14bba71 Refactored stats to have public interfaces in own package
Refactored DistributedSystem.java and InternalDistributedSystem.java to now
contain a InternalDistributedSystemStats.java instead of being one Added
Micrometer stats implementations Added StatsFactory, which currently only
provides Micrometer implementations Moving geode-stats-common packages to base
package of org.apache.geode.stats.common Adding
`geode.metrics.prometheus.address` and `geode.experimental.stats.mi [...]
add aa15c2c GEODE-3: more memory usage beans are available in java9.
GemFireStatS… (#2479)
add b99cfda Adding TESTING.md (#2490)
add 94ec93d GEODE-5757: Remove Nexus publication plugin
add 5e44313 GEODE-5757: Fixes signing on unpublished projects.
add 68d8cee GEODE-5757: Reinstate 'install' gradle task
add f26b922 GEODE-5600: Unify SCM property caching. (#2474)
add 4da7c59 GEODE-5428: Refactored DurableClientTests due to massive
duplication
add da5bd9c GEODE-3720: Fix ConnectCommandWithSSLTest by handling more
SSL error conditions
add 9f149c3 Add concourse-team variable to deploy_meta.sh to temp fix an
issue.
add b58a3b5 GEODE-5762 Fix transactions docs code snippets (#2498)
add 42253f2 GEODE-5757: Fix publication of extension zip artifacts
add 4bef3e9 Merge pull request #2499 from rhoughton-pivot/GEODE-5757
add 1998a21 GEODE-5761: Exclude android-json transitive dependency (#2494)
add be52507 GEODE-5314: Cleanup and document MBeanStatsMonitor child
classes
add cc36c91 GEODE-5600: Fix extension developer issues with buildinfo
add 6112860 Merge pull request #2497 from
rhoughton-pivot/GEODE-5600-extension-conflicts
add 3e6c0a6 GEODE-5501: add logging in test base for debug
add 6984baa GEODE-5761: Fix checkPom for exclusion of android-json
add efb2e29 GEODE-5765: Clean up soft references faster in dunit tests
add 6006ec3 GEODE-5747: Handling SocketException in
InternalDataSerializer (#2484)
add cd17350 GEODE-5551: Replace thread interleaving mechanism in
LoginHandler...Test
add 23c27c7 GEODE-5679: test waits for all stats changes to be written
(#2502)
add dee93f4 Fixing typo in TESTING.md
new c68f02b Refactored stats to have public interfaces in own package
Refactored DistributedSystem.java and InternalDistributedSystem.java to now
contain a InternalDistributedSystemStats.java instead of being one Added
Micrometer stats implementations Added StatsFactory, which currently only
provides Micrometer implementations Moving geode-stats-common packages to base
package of org.apache.geode.stats.common Adding
`geode.metrics.prometheus.address` and `geode.experimental.stats.mi [...]
new 15c066a Made some changes to handle Tenured memory. need to revert
those.
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (14bba71)
\
N -- N -- N refs/heads/feature/Micrometer (15c066a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README.md | 4 +
TESTING.md | 38 +
build.gradle | 51 +-
ci/pipelines/meta/deploy_meta.sh | 1 +
extensions/geode-modules-assembly/build.gradle | 41 +-
geode-assembly/build.gradle | 19 +-
geode-core/build.gradle | 23 +-
.../management/MemoryThresholdsDUnitTest.java | 27 +-
.../cache/NetSearchMessagingDUnitTest.java | 241 +-
.../cache/PartitionedRegionMultipleDUnitTest.java | 10 +-
.../sockets/DurableClientQueueSizeDUnitTest.java | 2 +-
.../sockets/DurableClientReconnectDUnitTest.java | 25 +-
.../cache/versions/TombstoneDUnitTest.java | 20 +-
.../GemFireStatSamplerIntegrationTest.java | 22 +-
.../statistics/StatSamplerIntegrationTest.java | 58 +-
.../geode/internal/InternalDataSerializer.java | 3 +-
.../internal/cache/control/HeapMemoryMonitor.java | 92 +-
.../statistics/InternalDistributedSystemStats.java | 2 +-
.../beans/stats/AggregateRegionStatsMonitor.java | 317 ++-
.../internal/beans/stats/GCStatsMonitor.java | 72 +-
.../beans/stats/GatewaySenderOverflowMonitor.java | 167 +-
.../internal/beans/stats/MBeanStatsMonitor.java | 193 +-
.../beans/stats/MemberLevelDiskMonitor.java | 369 +--
.../internal/beans/stats/VMStatsMonitor.java | 113 +-
.../internal/InternalDataSerializerJUnitTest.java | 19 +
.../stats/AggregateRegionStatsMonitorTest.java | 244 ++
.../internal/beans/stats/GCStatsMonitorTest.java | 84 +
.../stats/GatewaySenderOverflowMonitorTest.java | 177 ++
.../beans/stats/MemberLevelDiskMonitorTest.java | 230 ++
.../internal/beans/stats/VMStatsMonitorTest.java | 142 +
.../tier/sockets/DurableClientCQDUnitTest.java | 988 +++++++
.../tier/sockets/DurableClientCrashDUnitTest.java | 76 +-
.../sockets/DurableClientHAQueuedDUnitTest.java | 963 +++++++
.../sockets/DurableClientNetDownDUnitTest.java | 83 +-
.../tier/sockets/DurableClientSimpleDUnitTest.java | 2968 ++------------------
.../cache/tier/sockets/DurableClientTestBase.java | 738 +++++
.../cache/tier/sockets/DurableClientTestCase.java | 1573 ++---------
.../transactions/directed_example.html.md.erb | 33 +-
.../cache/tier/sockets/CacheServerTestUtil.java | 70 +-
.../dunit/internal/JUnit4DistributedTestCase.java | 7 +-
.../test/dunit/standalone/ProcessManager.java | 1 +
geode-junit/build.gradle | 4 +-
geode-junit/src/test/resources/expected-pom.xml | 6 +
geode-micrometer-stats/build.gradle.kts | 2 +-
geode-web/build.gradle | 4 +-
.../cli/commands/ConnectCommandWithSSLTest.java | 132 +-
.../support/LoginHandlerInterceptorJUnitTest.java | 332 +--
gradle/publish.gradle | 167 +-
gradle/utilities.gradle | 49 +-
49 files changed, 5419 insertions(+), 5583 deletions(-)
create mode 100644 TESTING.md
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/AggregateRegionStatsMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/GCStatsMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/GatewaySenderOverflowMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/MemberLevelDiskMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/VMStatsMonitorTest.java
create mode 100644
geode-cq/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/DurableClientCQDUnitTest.java
create mode 100644
geode-cq/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/DurableClientHAQueuedDUnitTest.java
create mode 100644
geode-cq/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/DurableClientTestBase.java