This is an automated email from the ASF dual-hosted git repository. udo pushed a commit to branch feature/Micrometer in repository https://gitbox.apache.org/repos/asf/geode.git
commit cea85be2cae69bd4b1cafe8cc1d6cbd7d14183c1 Author: Udo Kohlmeyer <[email protected]> AuthorDate: Thu Sep 6 17:30:38 2018 -0700 Add Apache Licence header --- .../geode/internal/offheap/OffHeapStorageStatsImpl.java | 15 ++++++++++++++- .../statistics/InternalDistributedSystemStats.java | 14 ++++++++++++++ geode-micrometer-stats/build.gradle.kts | 14 ++++++++++++++ .../geode/statistics/cache/MicrometerCCUStatsImpl.kt | 14 ++++++++++++++ .../statistics/cache/MicrometerCacheClientProxyStats.kt | 14 ++++++++++++++ .../geode/statistics/cache/MicrometerCachePerfStats.kt | 14 ++++++++++++++ .../client/connection/MicrometerClientSendStats.kt | 14 ++++++++++++++ .../statistics/client/connection/MicrometerClientStats.kt | 14 ++++++++++++++ .../client/connection/MicrometerConnectionStats.kt | 14 ++++++++++++++ .../statistics/client/connection/MicrometerPoolStats.kt | 14 ++++++++++++++ .../geode/statistics/disk/MicrometerDiskDirectoryStats.kt | 14 ++++++++++++++ .../geode/statistics/disk/MicrometerDiskRegionStats.kt | 14 ++++++++++++++ .../geode/statistics/disk/MicrometerDiskStoreStats.kt | 14 ++++++++++++++ .../statistics/distributed/MicrometerDistributionStats.kt | 14 ++++++++++++++ .../statistics/eviction/MicrometerEvictionStatsImpl.kt | 14 ++++++++++++++ .../geode/statistics/function/MicrometerFunctionStats.kt | 14 ++++++++++++++ .../statistics/internal/micrometer/StatisticsManager.kt | 14 ++++++++++++++ .../statistics/internal/micrometer/StatisticsMeter.kt | 14 ++++++++++++++ .../internal/micrometer/StatisticsMeterGroup.kt | 14 ++++++++++++++ .../internal/micrometer/impl/MicrometerMeterGroup.kt | 14 ++++++++++++++ .../internal/micrometer/impl/MicrometerStatisticMeter.kt | 14 ++++++++++++++ .../micrometer/impl/MicrometerStatisticsManager.kt | 14 ++++++++++++++ .../geode/statistics/locator/MicrometerLocatorStats.kt | 14 ++++++++++++++ .../micrometer/MicrometerStatisticsFactoryImpl.kt | 14 ++++++++++++++ .../statistics/micrometer/MicrometerStatisticsImpl.kt | 14 ++++++++++++++ .../statistics/micrometer/MicrometerStatisticsType.kt | 14 ++++++++++++++ .../statistics/micrometer/MicrometerStatsImplementer.kt | 14 ++++++++++++++ .../statistics/offheap/MicrometerOffHeapStorageStats.kt | 14 ++++++++++++++ .../geode/statistics/query/MicrometerCqServiceVsdStats.kt | 14 ++++++++++++++ .../statistics/region/MicrometerHARegionQueueStats.kt | 14 ++++++++++++++ .../geode/statistics/region/MicrometerRegionPerfStats.kt | 14 ++++++++++++++ .../org/apache/geode/statistics/util/SimpleTimeUtils.kt | 14 ++++++++++++++ geode-stats-common/build.gradle | 14 ++++++++++++++ .../main/java/org/apache/geode/stats/common/Stats.java | 14 ++++++++++++++ .../common/cache/client/internal/ConnectionStats.java | 14 ++++++++++++++ .../common/cache/query/internal/CqQueryVsdStats.java | 14 ++++++++++++++ .../common/cache/query/internal/cq/CqServiceVsdStats.java | 14 ++++++++++++++ .../common/distributed/internal/DistributionStats.java | 14 ++++++++++++++ .../stats/common/distributed/internal/LocatorStats.java | 14 ++++++++++++++ .../geode/stats/common/internal/cache/CachePerfStats.java | 14 ++++++++++++++ .../stats/common/internal/cache/DiskDirectoryStats.java | 14 ++++++++++++++ .../stats/common/internal/cache/DiskRegionStats.java | 14 ++++++++++++++ .../geode/stats/common/internal/cache/DiskStoreStats.java | 14 ++++++++++++++ .../common/internal/cache/PartitionedRegionStats.java | 14 ++++++++++++++ .../geode/stats/common/internal/cache/PoolStats.java | 14 ++++++++++++++ .../stats/common/internal/cache/RegionPerfStats.java | 14 ++++++++++++++ .../internal/cache/control/ResourceManagerStats.java | 14 ++++++++++++++ .../internal/cache/eviction/CountLRUEvictionStats.java | 14 ++++++++++++++ .../internal/cache/eviction/HeapLRUEvictionStats.java | 14 ++++++++++++++ .../internal/cache/eviction/MemoryLRUEvictionStats.java | 14 ++++++++++++++ .../common/internal/cache/execute/FunctionStats.java | 14 ++++++++++++++ .../common/internal/cache/ha/HARegionQueueStats.java | 14 ++++++++++++++ .../common/internal/cache/tier/sockets/CCUStats.java | 14 ++++++++++++++ .../cache/tier/sockets/CacheClientNotifierStats.java | 14 ++++++++++++++ .../internal/cache/tier/sockets/CacheServerStats.java | 14 ++++++++++++++ .../common/internal/cache/wan/GatewayReceiverStats.java | 14 ++++++++++++++ .../common/internal/cache/wan/GatewaySenderStats.java | 14 ++++++++++++++ .../common/internal/offheap/OffHeapStorageStats.java | 14 ++++++++++++++ .../stats/common/statistics/GFSStatsImplementer.java | 14 ++++++++++++++ .../stats/common/statistics/StatisticDescriptor.java | 1 - .../geode/stats/common/statistics/StatsImplementer.java | 14 ++++++++++++++ .../stats/common/statistics/factory/StatsFactory.java | 14 ++++++++++++++ 62 files changed, 854 insertions(+), 2 deletions(-) diff --git a/geode-core/src/main/java/org/apache/geode/internal/offheap/OffHeapStorageStatsImpl.java b/geode-core/src/main/java/org/apache/geode/internal/offheap/OffHeapStorageStatsImpl.java index 6465c77..f451a46 100644 --- a/geode-core/src/main/java/org/apache/geode/internal/offheap/OffHeapStorageStatsImpl.java +++ b/geode-core/src/main/java/org/apache/geode/internal/offheap/OffHeapStorageStatsImpl.java @@ -1,4 +1,17 @@ -package org.apache.geode.internal.offheap; +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */package org.apache.geode.internal.offheap; import org.apache.geode.distributed.internal.DistributionStatsImpl; import org.apache.geode.stats.common.internal.offheap.OffHeapStorageStats; diff --git a/geode-core/src/main/java/org/apache/geode/internal/statistics/InternalDistributedSystemStats.java b/geode-core/src/main/java/org/apache/geode/internal/statistics/InternalDistributedSystemStats.java index 4f3be0a..a3b578d 100644 --- a/geode-core/src/main/java/org/apache/geode/internal/statistics/InternalDistributedSystemStats.java +++ b/geode-core/src/main/java/org/apache/geode/internal/statistics/InternalDistributedSystemStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.internal.statistics; import java.io.IOException; diff --git a/geode-micrometer-stats/build.gradle.kts b/geode-micrometer-stats/build.gradle.kts index e0a734e..81ac998 100644 --- a/geode-micrometer-stats/build.gradle.kts +++ b/geode-micrometer-stats/build.gradle.kts @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCCUStatsImpl.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCCUStatsImpl.kt index cdf4915..fe291ad 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCCUStatsImpl.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCCUStatsImpl.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.cache import org.apache.geode.stats.common.internal.cache.tier.sockets.CCUStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCacheClientProxyStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCacheClientProxyStats.kt index 52a64d6..d86f4ae 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCacheClientProxyStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCacheClientProxyStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.cache import org.apache.geode.stats.common.internal.cache.tier.sockets.MessageStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCachePerfStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCachePerfStats.kt index cc1589c..86f1f4b 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCachePerfStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/cache/MicrometerCachePerfStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.cache import org.apache.geode.stats.common.distributed.internal.PoolStatHelper diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientSendStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientSendStats.kt index 810b0b2..e7a7889 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientSendStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientSendStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.client.connection import org.apache.geode.stats.common.statistics.StatisticsFactory diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientStats.kt index 665860e..af90c4f 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerClientStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.client.connection import org.apache.geode.stats.common.statistics.StatisticsFactory diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerConnectionStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerConnectionStats.kt index aea591b..59e213d 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerConnectionStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerConnectionStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.client.connection import org.apache.geode.stats.common.cache.client.internal.ConnectionStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerPoolStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerPoolStats.kt index 7f3f71e..dbc9df8 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerPoolStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/client/connection/MicrometerPoolStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.client.connection import org.apache.geode.stats.common.internal.cache.PoolStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskDirectoryStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskDirectoryStats.kt index a4251ba..eddc6db 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskDirectoryStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskDirectoryStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.disk import org.apache.geode.stats.common.internal.cache.DiskDirectoryStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskRegionStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskRegionStats.kt index 5757deb..b65949d 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskRegionStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskRegionStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.disk import org.apache.geode.stats.common.internal.cache.DiskRegionStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskStoreStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskStoreStats.kt index 7d8f6fb..1c048ce 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskStoreStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/disk/MicrometerDiskStoreStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.disk import org.apache.geode.stats.common.internal.cache.DiskStoreStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/distributed/MicrometerDistributionStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/distributed/MicrometerDistributionStats.kt index 5e0233e..85b5f0a 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/distributed/MicrometerDistributionStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/distributed/MicrometerDistributionStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.distributed import org.apache.geode.stats.common.statistics.Statistics diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/eviction/MicrometerEvictionStatsImpl.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/eviction/MicrometerEvictionStatsImpl.kt index 7fef3de..e2f701c 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/eviction/MicrometerEvictionStatsImpl.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/eviction/MicrometerEvictionStatsImpl.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.eviction import org.apache.geode.stats.common.internal.cache.eviction.EvictionStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/function/MicrometerFunctionStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/function/MicrometerFunctionStats.kt index 3b88a76..f5a0bf9 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/function/MicrometerFunctionStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/function/MicrometerFunctionStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.function import org.apache.geode.stats.common.internal.cache.execute.FunctionStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsManager.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsManager.kt index c03eb27..1c460fd 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsManager.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsManager.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.internal.micrometer import io.micrometer.core.instrument.MeterRegistry diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeter.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeter.kt index 6caac88..53fc45e 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeter.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeter.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.internal.micrometer import java.time.Duration diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeterGroup.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeterGroup.kt index 61c42a5..70461e0 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeterGroup.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/StatisticsMeterGroup.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.internal.micrometer interface StatisticsMeterGroup { diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerMeterGroup.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerMeterGroup.kt index 96fddbc..9cf1499 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerMeterGroup.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerMeterGroup.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.internal.micrometer.impl import io.micrometer.core.instrument.MeterRegistry diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticMeter.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticMeter.kt index 91b6aae..8479d13 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticMeter.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticMeter.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.internal.micrometer.impl import io.micrometer.core.instrument.* diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticsManager.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticsManager.kt index 61f9ce3..f023864 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticsManager.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/internal/micrometer/impl/MicrometerStatisticsManager.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.internal.micrometer.impl import com.sun.net.httpserver.HttpServer diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/locator/MicrometerLocatorStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/locator/MicrometerLocatorStats.kt index ac2653c..8872b7f 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/locator/MicrometerLocatorStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/locator/MicrometerLocatorStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.locator import org.apache.geode.stats.common.distributed.internal.LocatorStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsFactoryImpl.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsFactoryImpl.kt index ed9ed7c..5bbfa79 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsFactoryImpl.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsFactoryImpl.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.micrometer import io.micrometer.core.instrument.MeterRegistry diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsImpl.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsImpl.kt index df25b18..686288c 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsImpl.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsImpl.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.micrometer import org.apache.geode.stats.common.statistics.StatisticDescriptor diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsType.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsType.kt index ec6b04c..0aca99d 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsType.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatisticsType.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.micrometer import org.apache.geode.stats.common.statistics.StatisticDescriptor diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatsImplementer.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatsImplementer.kt index 2c1849a..0d3223b 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatsImplementer.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/micrometer/MicrometerStatsImplementer.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.micrometer import org.apache.geode.stats.common.statistics.StatsImplementer diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/offheap/MicrometerOffHeapStorageStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/offheap/MicrometerOffHeapStorageStats.kt index 708bc47..2336346 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/offheap/MicrometerOffHeapStorageStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/offheap/MicrometerOffHeapStorageStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.offheap import org.apache.geode.stats.common.internal.offheap.OffHeapStorageStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/query/MicrometerCqServiceVsdStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/query/MicrometerCqServiceVsdStats.kt index cd0697d..80f7092 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/query/MicrometerCqServiceVsdStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/query/MicrometerCqServiceVsdStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.query import org.apache.geode.stats.common.cache.query.internal.cq.CqServiceVsdStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerHARegionQueueStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerHARegionQueueStats.kt index 3fde317..af2fecd 100755 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerHARegionQueueStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerHARegionQueueStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.region import org.apache.geode.stats.common.internal.cache.ha.HARegionQueueStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerRegionPerfStats.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerRegionPerfStats.kt index adabc9a..051fd95 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerRegionPerfStats.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/region/MicrometerRegionPerfStats.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.region import org.apache.geode.stats.common.internal.cache.CachePerfStats diff --git a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/util/SimpleTimeUtils.kt b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/util/SimpleTimeUtils.kt index 46f05a3..762d166 100644 --- a/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/util/SimpleTimeUtils.kt +++ b/geode-micrometer-stats/src/main/kotlin/org/apache/geode/statistics/util/SimpleTimeUtils.kt @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.statistics.util val NOW_NANOS: Long diff --git a/geode-stats-common/build.gradle b/geode-stats-common/build.gradle index e6e14dd..39e39a9 100644 --- a/geode-stats-common/build.gradle +++ b/geode-stats-common/build.gradle @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ plugins { id 'java' } diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/Stats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/Stats.java index db81114..1f69a3a 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/Stats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/Stats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common; public interface Stats { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/client/internal/ConnectionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/client/internal/ConnectionStats.java index 476fda5..b394aac 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/client/internal/ConnectionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/client/internal/ConnectionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.cache.client.internal; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/CqQueryVsdStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/CqQueryVsdStats.java index e982a45..2a1c49e 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/CqQueryVsdStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/CqQueryVsdStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.cache.query.internal; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/cq/CqServiceVsdStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/cq/CqServiceVsdStats.java index 8b74978..fea760d 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/cq/CqServiceVsdStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/cache/query/internal/cq/CqServiceVsdStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.cache.query.internal.cq; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/DistributionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/DistributionStats.java index cc9e0b5..0f168d9 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/DistributionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/DistributionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.distributed.internal; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/LocatorStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/LocatorStats.java index 355f95f..38ad08d 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/LocatorStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/distributed/internal/LocatorStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.distributed.internal; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/CachePerfStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/CachePerfStats.java index 2ed9ef5..8775517 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/CachePerfStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/CachePerfStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskDirectoryStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskDirectoryStats.java index feef67e..381e63d 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskDirectoryStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskDirectoryStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskRegionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskRegionStats.java index 998f1a7..6fa57f2 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskRegionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskRegionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskStoreStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskStoreStats.java index 8199c44..a461bad 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskStoreStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/DiskStoreStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PartitionedRegionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PartitionedRegionStats.java index 5fdfc4e..9d7a2f0 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PartitionedRegionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PartitionedRegionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PoolStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PoolStats.java index 6e2b9ff..468debf 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PoolStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/PoolStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/RegionPerfStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/RegionPerfStats.java index 0a0755b..6785c35 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/RegionPerfStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/RegionPerfStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache; public interface RegionPerfStats extends CachePerfStats { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/control/ResourceManagerStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/control/ResourceManagerStats.java index 896c9cd..9d83eb7 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/control/ResourceManagerStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/control/ResourceManagerStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.control; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/CountLRUEvictionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/CountLRUEvictionStats.java index 6c3299e..cfd7a18 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/CountLRUEvictionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/CountLRUEvictionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.eviction; public interface CountLRUEvictionStats extends EvictionStats { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/HeapLRUEvictionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/HeapLRUEvictionStats.java index a1d5bac..6d9b2c5 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/HeapLRUEvictionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/HeapLRUEvictionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.eviction; public interface HeapLRUEvictionStats extends EvictionStats { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/MemoryLRUEvictionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/MemoryLRUEvictionStats.java index 3631a39..f1276d8 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/MemoryLRUEvictionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/eviction/MemoryLRUEvictionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.eviction; public interface MemoryLRUEvictionStats extends EvictionStats { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/execute/FunctionStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/execute/FunctionStats.java index 35aab35..f07ed42 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/execute/FunctionStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/execute/FunctionStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.execute; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/ha/HARegionQueueStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/ha/HARegionQueueStats.java index c40fb15..858ddac 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/ha/HARegionQueueStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/ha/HARegionQueueStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.ha; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CCUStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CCUStats.java index 8500466..2fb6678 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CCUStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CCUStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.tier.sockets; public interface CCUStats extends MessageStats { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheClientNotifierStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheClientNotifierStats.java index 1e39e16..f92edd8 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheClientNotifierStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheClientNotifierStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.tier.sockets; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheServerStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheServerStats.java index 5196db3..2232df8 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheServerStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/tier/sockets/CacheServerStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.tier.sockets; import org.apache.geode.stats.common.distributed.internal.PoolStatHelper; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewayReceiverStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewayReceiverStats.java index e8a00bf..1c3b348 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewayReceiverStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewayReceiverStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.wan; import org.apache.geode.stats.common.internal.cache.tier.sockets.CacheServerStats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewaySenderStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewaySenderStats.java index 548ac07..c004258 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewaySenderStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/cache/wan/GatewaySenderStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.cache.wan; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/offheap/OffHeapStorageStats.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/offheap/OffHeapStorageStats.java index 499f13d..f7d441f 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/offheap/OffHeapStorageStats.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/internal/offheap/OffHeapStorageStats.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.internal.offheap; import org.apache.geode.stats.common.Stats; diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/GFSStatsImplementer.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/GFSStatsImplementer.java index f52b6f2..5e3e5ef 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/GFSStatsImplementer.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/GFSStatsImplementer.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.statistics; public interface GFSStatsImplementer extends StatsImplementer { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatisticDescriptor.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatisticDescriptor.java index 71cf6c5..eff483c 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatisticDescriptor.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatisticDescriptor.java @@ -14,7 +14,6 @@ */ package org.apache.geode.stats.common.statistics; - /** * Describes an individual statistic whose value is updated by an application and may be archived by * GemFire. These descriptions are gathered together in a {@link StatisticsType}. diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatsImplementer.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatsImplementer.java index 3f4e347..ce6cf82 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatsImplementer.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/StatsImplementer.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.statistics; public interface StatsImplementer { diff --git a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/factory/StatsFactory.java b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/factory/StatsFactory.java index 28ad5a8..582a720 100644 --- a/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/factory/StatsFactory.java +++ b/geode-stats-common/src/main/java/org/apache/geode/stats/common/statistics/factory/StatsFactory.java @@ -1,3 +1,17 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. You may obtain a + * copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ package org.apache.geode.stats.common.statistics.factory; import java.lang.reflect.InvocationTargetException;
