diff --git a/apm-dist/pom.xml b/apm-dist/pom.xml index e980091e16..e7d4c611b5 100644 --- a/apm-dist/pom.xml +++ b/apm-dist/pom.xml @@ -21,7 +21,7 @@ apm org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/apm-protocol/apm-network/pom.xml b/apm-protocol/apm-network/pom.xml index f38ef72cbf..d4f41c1d7d 100644 --- a/apm-protocol/apm-network/pom.xml +++ b/apm-protocol/apm-network/pom.xml @@ -21,7 +21,7 @@ oap-protocol org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/apm-protocol/pom.xml b/apm-protocol/pom.xml index a508024039..387e761264 100644 --- a/apm-protocol/pom.xml +++ b/apm-protocol/pom.xml @@ -21,7 +21,7 @@ apm org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/apm-webapp/pom.xml b/apm-webapp/pom.xml index 1bf6dbe219..698a93f046 100644 --- a/apm-webapp/pom.xml +++ b/apm-webapp/pom.xml @@ -21,7 +21,7 @@ apm org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/docs/en/changes/changes-10.0.0.md b/docs/en/changes/changes-10.0.0.md new file mode 100644 index 0000000000..4e7950bf66 --- /dev/null +++ b/docs/en/changes/changes-10.0.0.md @@ -0,0 +1,187 @@ +## 10.0.0 + +#### Project +* Support Java 21 runtime. +* Support oap-java21 image for Java 21 runtime. +* Upgrade `OTEL collector` version to `0.92.0` in all e2e tests. +* Switch CI macOS runner to m1. +* Upgrade PostgreSQL driver to `42.4.4` to fix CVE-2024-1597. +* Remove CLI(`swctl`) from the image. +* Remove CLI_VERSION variable from Makefile build. +* Add BanyanDB to docker-compose quickstart. +* Bump up Armeria, jackson, netty, jetcd and grpc to fix CVEs. +* Bump up BanyanDB Java Client to 0.6.0. + +#### OAP Server + +* Add `layer` parameter to the global topology graphQL query. +* Add `is_present` function in MQE for check if the list metrics has a value or not. +* Remove unreasonable default configurations for gRPC thread executor. +* Remove `gRPCThreadPoolQueueSize (SW_RECEIVER_GRPC_POOL_QUEUE_SIZE)` configuration. +* Allow excluding ServiceEntries in some namespaces when looking up ServiceEntries as a final resolution method of + service metadata. +* Set up the length of source and dest IDs in relation entities of service, instance, endpoint, and process to 250(was + 200). +* Support build Service/Instance Hierarchy and query. +* Change the string field in Elasticsearch storage from **keyword** type to **text** type if it set more than `32766` length. +* [Break Change] Change the configuration field of `ui_template` and `ui_menu` in Elasticsearch storage from **keyword** type to **text**. +* Support Service Hierarchy auto matching, add auto matching layer relationships (upper -> lower) as following: + - MESH -> MESH_DP + - MESH -> K8S_SERVICE + - MESH_DP -> K8S_SERVICE + - GENERAL -> K8S_SERVICE +* Add `namespace` suffix for `K8S_SERVICE_NAME_RULE/ISTIO_SERVICE_NAME_RULE` and `metadata-service-mapping.yaml` as default. +* Allow using a dedicated port for ALS receiver. +* Fix log query by traceId in `JDBCLogQueryDAO`. +* Support handler eBPF access log protocol. +* Fix SumPerMinFunctionTest error function. +* Remove unnecessary annotations and functions from Meter Functions. +* Add `max` and `min` functions for MAL down sampling. +* Fix critical bug of uncontrolled memory cost of TopN statistics. Change topN group key from `StorageId` to `entityId + timeBucket`. +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - MYSQL -> K8S_SERVICE + - POSTGRESQL -> K8S_SERVICE + - SO11Y_OAP -> K8S_SERVICE + - VIRTUAL_DATABASE -> MYSQL + - VIRTUAL_DATABASE -> POSTGRESQL +* Add Golang as a supported language for AMQP. +* Support available layers of service in the topology. +* Add `count` aggregation function for MAL +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - NGINX -> K8S_SERVICE + - APISIX -> K8S_SERVICE + - GENERAL -> APISIX +* Add Golang as a supported language for RocketMQ. +* Support Apache RocketMQ server monitoring. +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - ROCKETMQ -> K8S_SERVICE + - VIRTUAL_MQ -> ROCKETMQ +* Fix ServiceInstance `in` query. +* Mock `/api/v1/status/buildinfo` for PromQL API. +* Fix table exists check in the JDBC Storage Plugin. +* Fix day-based table rolling time range strategy in JDBC storage. +* Add `maxInboundMessageSize (SW_DCS_MAX_INBOUND_MESSAGE_SIZE)` configuration to change the max inbound message size of DCS. +* Fix Service Layer when building Events in the EventHookCallback. +* Add Golang as a supported language for Pulsar. +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - RABBITMQ -> K8S_SERVICE + - VIRTUAL_MQ -> RABBITMQ +* Remove Column#function mechanism in the kernel. +* Make query `readMetricValue` always return the average value of the duration. +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - KAFKA -> K8S_SERVICE + - VIRTUAL_MQ -> KAFKA +* Support ClickHouse server monitoring. +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - CLICKHOUSE -> K8S_SERVICE + - VIRTUAL_DATABASE -> CLICKHOUSE +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - PULSAR -> K8S_SERVICE + - VIRTUAL_MQ -> PULSAR +* Add Golang as a supported language for Kafka. +* Support displaying the port services listen to from OAP and UI during server start. +* Refactor data-generator to support generating metrics. +* Fix `AvgHistogramPercentileFunction` legacy name. +* [Break Change] Labeled Metrics support multiple labels. + - Storage: store all label names and values instead of only the values. + - MQE: + - Support querying by multiple labels(name and value) instead using `_` as the anonymous label name. + - `aggregate_labels` function support aggregate by specific labels. + - `relabels` function require target label and rename label name and value. + - PromQL: + - Support querying by multiple labels(name and value) instead using `lables` as the anonymous label name. + - Remove general labels `labels/relabels/label` function. + - API `/api/v1/labels` and `/api/v1/label//values` support return matched metrics labels. + - OAL: + - Deprecate `percentile` function and introduce `percentile2` function instead. +* Bump up Kafka to fix CVE. +* Fix `NullPointerException` in Istio ServiceEntry registry. +* Remove unnecessary `componentIds` as series ID in the `ServiceRelationClientSideMetrics` and `ServiceRelationServerSideMetrics` entities. +* Fix not throw error when part of expression not matched any expression node in the `MQE` and `PromQL. +* Remove `kafka-fetcher/default/createTopicIfNotExist` as the creation is automatically since [#7326](https://github.com/apache/skywalking/issues/7326) (v8.7.0). +* Fix inaccuracy nginx service metrics. +* Fix/Change Windows metrics name(Swap -> Virtual Memory) + - `memory_swap_free` -> `memory_virtual_memory_free` + - `memory_swap_total` -> `memory_virtual_memory_total` + - `memory_swap_percentage` -> `memory_virtual_memory_percentage` +* Fix/Change UI init setting for Windows Swap -> Virtual Memory +* Fix `Memory Swap Usage`/`Virtual Memory Usage` display with UI init.(Linux/Windows) +* Fix inaccurate APISIX metrics. +* Fix inaccurate MongoDB Metrics. +* Support Apache ActiveMQ server monitoring. +* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: + - ACTIVEMQ -> K8S_SERVICE +* Calculate Nginx service HTTP Latency by MQE. +* MQE query: make metadata not return `null`. +* MQE labeled metrics Binary Operation: return empty value if the labels not match rather than report error. +* Fix inaccurate Hierarchy of RabbitMQ Server monitoring metrics. +* Fix inaccurate MySQL/MariaDB, Redis, PostgreSQL metrics. +* Support DoubleValue,IntValue,BoolValue in OTEL metrics attributes. +* [Break Change] gGRPC metrics exporter unified the metric value type and support labeled metrics. +* Add component definition(ID=152) for `c3p0`(JDBC3 Connection and Statement Pooling). +* Fix MQE `top_n` global query. +* Fix inaccurate Pulsar and Bookkeeper metrics. +* MQE support `sort_values` and `sort_label_values` functions. + +#### UI + +* Fix the mismatch between the unit and calculation of the "Network Bandwidth Usage" widget in Linux-Service Dashboard. +* Add theme change animation. +* Implement the Service and Instance hierarchy topology. +* Support Tabs in the widget visible when MQE expressions. +* Support search on Marketplace. +* Fix default route. +* Fix layout on the Log widget. +* Fix Trace associates with Log widget. +* Add isDefault to the dashboard configuration. +* Add expressions to dashboard configurations on the dashboard list page. +* Update Kubernetes related UI templates for adapt data from eBPF access log. +* Fix dashboard `K8S-Service-Root` metrics expression. +* Add dashboards for Service/Instance Hierarchy. +* Fix MQE in dashboards when using `Card widget`. +* Optimize tooltips style. +* Fix resizing window causes the trace graph to display incorrectly. +* Add the not found page(404). +* Enhance VNode logic and support multiple Trace IDs in span's ref. +* Add the layers filed and associate layers dashboards for the service topology nodes. +* Fix `Nginx-Instance` metrics to instance level. +* Update tabs of the Kubernetes service page. +* Add Airflow menu i18n. +* Add Support for dragging in the trace panel. +* Add workflow icon. +* Metrics support multiple labels. +* Support the `SINGLE_VALUE` for table widgets. +* Remove the General metric mode and related logical code. +* Remove metrics for unreal nodes in the topology. +* Enhance the Trace widget for batch consuming spans. +* Clean the unused elements in the UI-templates. + +#### Documentation + +* Update the release doc to remove the announcement as the tests are through e2e rather than manually. +* Update the release notification mail a little. +* Polish docs structure. Move customization docs separately from the introduction docs. +* Add webhook/gRPC hooks settings example for `backend-alarm.md`. +* Begin the process of `SWIP - SkyWalking Improvement Proposal`. +* Add `SWIP-1 Create and detect Service Hierarchy Relationship`. +* Add `SWIP-2 Collecting and Gathering Kubernetes Monitoring Data`. +* Update the `Overview` docs to add the `Service Hierarchy Relationship` section. +* Fix incorrect words for `backend-bookkeeper-monitoring.md` and `backend-pulsar-monitoring.md` +* Document a new way to load balance OAP. +* Add `SWIP-3 Support RocketMQ monitoring`. +* Add `OpenTelemetry SkyWalking Exporter` deprecated warning doc. +* Update i18n for rocketmq monitoring. +* Fix: remove click event after unmounted. +* Fix: end loading without query results. +* Update nanoid version to 3.3.7. +* Update postcss version to 8.4.33. +* Fix kafka topic name in exporter doc. +* Fix query-protocol.md, make it consistent with the GraphQL query protocol. +* Add `SWIP-5 Support ClickHouse Monitoring`. +* Remove `OpenTelemetry Exporter` support from meter doc, as this has been flagged as unmaintained on OTEL upstream. +* Add doc of one-line quick start script for different storage types. +* Add FAQ for `Why is Clickhouse or Loki or xxx not supported as a storage option?`. +* Add `SWIP-8 Support ActiveMQ Monitoring`. +* Move BanyanDB storage to the recommended storage. + +All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/202?closed=1) diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md index 4e7950bf66..eaf520c883 100644 --- a/docs/en/changes/changes.md +++ b/docs/en/changes/changes.md @@ -1,187 +1,16 @@ -## 10.0.0 +## 10.1.0 #### Project -* Support Java 21 runtime. -* Support oap-java21 image for Java 21 runtime. -* Upgrade `OTEL collector` version to `0.92.0` in all e2e tests. -* Switch CI macOS runner to m1. -* Upgrade PostgreSQL driver to `42.4.4` to fix CVE-2024-1597. -* Remove CLI(`swctl`) from the image. -* Remove CLI_VERSION variable from Makefile build. -* Add BanyanDB to docker-compose quickstart. -* Bump up Armeria, jackson, netty, jetcd and grpc to fix CVEs. -* Bump up BanyanDB Java Client to 0.6.0. + #### OAP Server -* Add `layer` parameter to the global topology graphQL query. -* Add `is_present` function in MQE for check if the list metrics has a value or not. -* Remove unreasonable default configurations for gRPC thread executor. -* Remove `gRPCThreadPoolQueueSize (SW_RECEIVER_GRPC_POOL_QUEUE_SIZE)` configuration. -* Allow excluding ServiceEntries in some namespaces when looking up ServiceEntries as a final resolution method of - service metadata. -* Set up the length of source and dest IDs in relation entities of service, instance, endpoint, and process to 250(was - 200). -* Support build Service/Instance Hierarchy and query. -* Change the string field in Elasticsearch storage from **keyword** type to **text** type if it set more than `32766` length. -* [Break Change] Change the configuration field of `ui_template` and `ui_menu` in Elasticsearch storage from **keyword** type to **text**. -* Support Service Hierarchy auto matching, add auto matching layer relationships (upper -> lower) as following: - - MESH -> MESH_DP - - MESH -> K8S_SERVICE - - MESH_DP -> K8S_SERVICE - - GENERAL -> K8S_SERVICE -* Add `namespace` suffix for `K8S_SERVICE_NAME_RULE/ISTIO_SERVICE_NAME_RULE` and `metadata-service-mapping.yaml` as default. -* Allow using a dedicated port for ALS receiver. -* Fix log query by traceId in `JDBCLogQueryDAO`. -* Support handler eBPF access log protocol. -* Fix SumPerMinFunctionTest error function. -* Remove unnecessary annotations and functions from Meter Functions. -* Add `max` and `min` functions for MAL down sampling. -* Fix critical bug of uncontrolled memory cost of TopN statistics. Change topN group key from `StorageId` to `entityId + timeBucket`. -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - MYSQL -> K8S_SERVICE - - POSTGRESQL -> K8S_SERVICE - - SO11Y_OAP -> K8S_SERVICE - - VIRTUAL_DATABASE -> MYSQL - - VIRTUAL_DATABASE -> POSTGRESQL -* Add Golang as a supported language for AMQP. -* Support available layers of service in the topology. -* Add `count` aggregation function for MAL -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - NGINX -> K8S_SERVICE - - APISIX -> K8S_SERVICE - - GENERAL -> APISIX -* Add Golang as a supported language for RocketMQ. -* Support Apache RocketMQ server monitoring. -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - ROCKETMQ -> K8S_SERVICE - - VIRTUAL_MQ -> ROCKETMQ -* Fix ServiceInstance `in` query. -* Mock `/api/v1/status/buildinfo` for PromQL API. -* Fix table exists check in the JDBC Storage Plugin. -* Fix day-based table rolling time range strategy in JDBC storage. -* Add `maxInboundMessageSize (SW_DCS_MAX_INBOUND_MESSAGE_SIZE)` configuration to change the max inbound message size of DCS. -* Fix Service Layer when building Events in the EventHookCallback. -* Add Golang as a supported language for Pulsar. -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - RABBITMQ -> K8S_SERVICE - - VIRTUAL_MQ -> RABBITMQ -* Remove Column#function mechanism in the kernel. -* Make query `readMetricValue` always return the average value of the duration. -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - KAFKA -> K8S_SERVICE - - VIRTUAL_MQ -> KAFKA -* Support ClickHouse server monitoring. -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - CLICKHOUSE -> K8S_SERVICE - - VIRTUAL_DATABASE -> CLICKHOUSE -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - PULSAR -> K8S_SERVICE - - VIRTUAL_MQ -> PULSAR -* Add Golang as a supported language for Kafka. -* Support displaying the port services listen to from OAP and UI during server start. -* Refactor data-generator to support generating metrics. -* Fix `AvgHistogramPercentileFunction` legacy name. -* [Break Change] Labeled Metrics support multiple labels. - - Storage: store all label names and values instead of only the values. - - MQE: - - Support querying by multiple labels(name and value) instead using `_` as the anonymous label name. - - `aggregate_labels` function support aggregate by specific labels. - - `relabels` function require target label and rename label name and value. - - PromQL: - - Support querying by multiple labels(name and value) instead using `lables` as the anonymous label name. - - Remove general labels `labels/relabels/label` function. - - API `/api/v1/labels` and `/api/v1/label//values` support return matched metrics labels. - - OAL: - - Deprecate `percentile` function and introduce `percentile2` function instead. -* Bump up Kafka to fix CVE. -* Fix `NullPointerException` in Istio ServiceEntry registry. -* Remove unnecessary `componentIds` as series ID in the `ServiceRelationClientSideMetrics` and `ServiceRelationServerSideMetrics` entities. -* Fix not throw error when part of expression not matched any expression node in the `MQE` and `PromQL. -* Remove `kafka-fetcher/default/createTopicIfNotExist` as the creation is automatically since [#7326](https://github.com/apache/skywalking/issues/7326) (v8.7.0). -* Fix inaccuracy nginx service metrics. -* Fix/Change Windows metrics name(Swap -> Virtual Memory) - - `memory_swap_free` -> `memory_virtual_memory_free` - - `memory_swap_total` -> `memory_virtual_memory_total` - - `memory_swap_percentage` -> `memory_virtual_memory_percentage` -* Fix/Change UI init setting for Windows Swap -> Virtual Memory -* Fix `Memory Swap Usage`/`Virtual Memory Usage` display with UI init.(Linux/Windows) -* Fix inaccurate APISIX metrics. -* Fix inaccurate MongoDB Metrics. -* Support Apache ActiveMQ server monitoring. -* Add Service Hierarchy auto matching layer relationships (upper -> lower) as following: - - ACTIVEMQ -> K8S_SERVICE -* Calculate Nginx service HTTP Latency by MQE. -* MQE query: make metadata not return `null`. -* MQE labeled metrics Binary Operation: return empty value if the labels not match rather than report error. -* Fix inaccurate Hierarchy of RabbitMQ Server monitoring metrics. -* Fix inaccurate MySQL/MariaDB, Redis, PostgreSQL metrics. -* Support DoubleValue,IntValue,BoolValue in OTEL metrics attributes. -* [Break Change] gGRPC metrics exporter unified the metric value type and support labeled metrics. -* Add component definition(ID=152) for `c3p0`(JDBC3 Connection and Statement Pooling). -* Fix MQE `top_n` global query. -* Fix inaccurate Pulsar and Bookkeeper metrics. -* MQE support `sort_values` and `sort_label_values` functions. #### UI -* Fix the mismatch between the unit and calculation of the "Network Bandwidth Usage" widget in Linux-Service Dashboard. -* Add theme change animation. -* Implement the Service and Instance hierarchy topology. -* Support Tabs in the widget visible when MQE expressions. -* Support search on Marketplace. -* Fix default route. -* Fix layout on the Log widget. -* Fix Trace associates with Log widget. -* Add isDefault to the dashboard configuration. -* Add expressions to dashboard configurations on the dashboard list page. -* Update Kubernetes related UI templates for adapt data from eBPF access log. -* Fix dashboard `K8S-Service-Root` metrics expression. -* Add dashboards for Service/Instance Hierarchy. -* Fix MQE in dashboards when using `Card widget`. -* Optimize tooltips style. -* Fix resizing window causes the trace graph to display incorrectly. -* Add the not found page(404). -* Enhance VNode logic and support multiple Trace IDs in span's ref. -* Add the layers filed and associate layers dashboards for the service topology nodes. -* Fix `Nginx-Instance` metrics to instance level. -* Update tabs of the Kubernetes service page. -* Add Airflow menu i18n. -* Add Support for dragging in the trace panel. -* Add workflow icon. -* Metrics support multiple labels. -* Support the `SINGLE_VALUE` for table widgets. -* Remove the General metric mode and related logical code. -* Remove metrics for unreal nodes in the topology. -* Enhance the Trace widget for batch consuming spans. -* Clean the unused elements in the UI-templates. #### Documentation -* Update the release doc to remove the announcement as the tests are through e2e rather than manually. -* Update the release notification mail a little. -* Polish docs structure. Move customization docs separately from the introduction docs. -* Add webhook/gRPC hooks settings example for `backend-alarm.md`. -* Begin the process of `SWIP - SkyWalking Improvement Proposal`. -* Add `SWIP-1 Create and detect Service Hierarchy Relationship`. -* Add `SWIP-2 Collecting and Gathering Kubernetes Monitoring Data`. -* Update the `Overview` docs to add the `Service Hierarchy Relationship` section. -* Fix incorrect words for `backend-bookkeeper-monitoring.md` and `backend-pulsar-monitoring.md` -* Document a new way to load balance OAP. -* Add `SWIP-3 Support RocketMQ monitoring`. -* Add `OpenTelemetry SkyWalking Exporter` deprecated warning doc. -* Update i18n for rocketmq monitoring. -* Fix: remove click event after unmounted. -* Fix: end loading without query results. -* Update nanoid version to 3.3.7. -* Update postcss version to 8.4.33. -* Fix kafka topic name in exporter doc. -* Fix query-protocol.md, make it consistent with the GraphQL query protocol. -* Add `SWIP-5 Support ClickHouse Monitoring`. -* Remove `OpenTelemetry Exporter` support from meter doc, as this has been flagged as unmaintained on OTEL upstream. -* Add doc of one-line quick start script for different storage types. -* Add FAQ for `Why is Clickhouse or Loki or xxx not supported as a storage option?`. -* Add `SWIP-8 Support ActiveMQ Monitoring`. -* Move BanyanDB storage to the recommended storage. -All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/202?closed=1) + +All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/205?closed=1) diff --git a/docs/menu.yml b/docs/menu.yml index d2e92aad78..266165f597 100644 --- a/docs/menu.yml +++ b/docs/menu.yml @@ -390,8 +390,14 @@ catalog: catalog: - name: "Current Version" path: "/en/changes/changes" + - name: "10.x Releases" + catalog: + - name: "10.0.0" + path: "/en/changes/changes-10.0.0" - name: "9.x Releases" catalog: + - name: "9.7.0" + path: "/en/changes/changes-9.7.0" - name: "9.6.0" path: "/en/changes/changes-9.6.0" - name: "9.5.0" diff --git a/oap-server-bom/pom.xml b/oap-server-bom/pom.xml index c6c53049e0..f68c18a0dd 100644 --- a/oap-server-bom/pom.xml +++ b/oap-server-bom/pom.xml @@ -21,7 +21,7 @@ apm org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT pom 4.0.0 diff --git a/oap-server/ai-pipeline/pom.xml b/oap-server/ai-pipeline/pom.xml index 58d1ceae9a..fe659bc697 100644 --- a/oap-server/ai-pipeline/pom.xml +++ b/oap-server/ai-pipeline/pom.xml @@ -23,7 +23,7 @@ org.apache.skywalking oap-server - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT org.apache.skywalking diff --git a/oap-server/analyzer/agent-analyzer/pom.xml b/oap-server/analyzer/agent-analyzer/pom.xml index 5c3cf9f5a9..352be8c32b 100644 --- a/oap-server/analyzer/agent-analyzer/pom.xml +++ b/oap-server/analyzer/agent-analyzer/pom.xml @@ -21,7 +21,7 @@ analyzer org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/analyzer/event-analyzer/pom.xml b/oap-server/analyzer/event-analyzer/pom.xml index 6adff6472a..4540cc515f 100644 --- a/oap-server/analyzer/event-analyzer/pom.xml +++ b/oap-server/analyzer/event-analyzer/pom.xml @@ -21,7 +21,7 @@ analyzer org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/analyzer/log-analyzer/pom.xml b/oap-server/analyzer/log-analyzer/pom.xml index 99d523ff0b..175e270350 100644 --- a/oap-server/analyzer/log-analyzer/pom.xml +++ b/oap-server/analyzer/log-analyzer/pom.xml @@ -20,7 +20,7 @@ analyzer org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/analyzer/meter-analyzer/pom.xml b/oap-server/analyzer/meter-analyzer/pom.xml index 250ba4b856..cceb185e90 100644 --- a/oap-server/analyzer/meter-analyzer/pom.xml +++ b/oap-server/analyzer/meter-analyzer/pom.xml @@ -21,7 +21,7 @@ analyzer org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/analyzer/pom.xml b/oap-server/analyzer/pom.xml index d44d1700fc..5dccda7899 100644 --- a/oap-server/analyzer/pom.xml +++ b/oap-server/analyzer/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/exporter/pom.xml b/oap-server/exporter/pom.xml index 492c4f7e43..b8a50b7d92 100644 --- a/oap-server/exporter/pom.xml +++ b/oap-server/exporter/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/mqe-grammar/pom.xml b/oap-server/mqe-grammar/pom.xml index 711bfc3430..35767af1df 100644 --- a/oap-server/mqe-grammar/pom.xml +++ b/oap-server/mqe-grammar/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/mqe-rt/pom.xml b/oap-server/mqe-rt/pom.xml index 2b19f2306e..f7181ff3e5 100644 --- a/oap-server/mqe-rt/pom.xml +++ b/oap-server/mqe-rt/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/oal-grammar/pom.xml b/oap-server/oal-grammar/pom.xml index 5d0bae2849..438aced7c9 100755 --- a/oap-server/oal-grammar/pom.xml +++ b/oap-server/oal-grammar/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/oal-rt/pom.xml b/oap-server/oal-rt/pom.xml index 4b2ec2d641..3076823860 100755 --- a/oap-server/oal-rt/pom.xml +++ b/oap-server/oal-rt/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/pom.xml b/oap-server/pom.xml index d8c2942259..8f4980a15f 100755 --- a/oap-server/pom.xml +++ b/oap-server/pom.xml @@ -21,7 +21,7 @@ apm org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-alarm-plugin/pom.xml b/oap-server/server-alarm-plugin/pom.xml index 4afc6e0e8c..b672516d30 100644 --- a/oap-server/server-alarm-plugin/pom.xml +++ b/oap-server/server-alarm-plugin/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/cluster-consul-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-consul-plugin/pom.xml index 5ac27d7e13..87b4cc232a 100644 --- a/oap-server/server-cluster-plugin/cluster-consul-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/cluster-consul-plugin/pom.xml @@ -21,7 +21,7 @@ server-cluster-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/cluster-etcd-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-etcd-plugin/pom.xml index 2dcf80ebc5..71f381fc42 100644 --- a/oap-server/server-cluster-plugin/cluster-etcd-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/cluster-etcd-plugin/pom.xml @@ -21,7 +21,7 @@ server-cluster-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml index 6fff7fe388..0971adb5ea 100644 --- a/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/cluster-kubernetes-plugin/pom.xml @@ -21,7 +21,7 @@ server-cluster-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/cluster-nacos-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-nacos-plugin/pom.xml index e71874d1bb..1f56610049 100644 --- a/oap-server/server-cluster-plugin/cluster-nacos-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/cluster-nacos-plugin/pom.xml @@ -20,7 +20,7 @@ server-cluster-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/cluster-standalone-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-standalone-plugin/pom.xml index 4c78033236..4ed43d6363 100644 --- a/oap-server/server-cluster-plugin/cluster-standalone-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/cluster-standalone-plugin/pom.xml @@ -21,7 +21,7 @@ server-cluster-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/cluster-zookeeper-plugin/pom.xml b/oap-server/server-cluster-plugin/cluster-zookeeper-plugin/pom.xml index 48b90aa0ce..acbee5a38c 100644 --- a/oap-server/server-cluster-plugin/cluster-zookeeper-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/cluster-zookeeper-plugin/pom.xml @@ -21,7 +21,7 @@ org.apache.skywalking server-cluster-plugin - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-cluster-plugin/pom.xml b/oap-server/server-cluster-plugin/pom.xml index 0ea9c3fcc2..f1ba8c0450 100644 --- a/oap-server/server-cluster-plugin/pom.xml +++ b/oap-server/server-cluster-plugin/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/configuration-api/pom.xml b/oap-server/server-configuration/configuration-api/pom.xml index e32b032a4a..f550623953 100644 --- a/oap-server/server-configuration/configuration-api/pom.xml +++ b/oap-server/server-configuration/configuration-api/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/configuration-apollo/pom.xml b/oap-server/server-configuration/configuration-apollo/pom.xml index 785a957382..7f656ce54a 100644 --- a/oap-server/server-configuration/configuration-apollo/pom.xml +++ b/oap-server/server-configuration/configuration-apollo/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/configuration-consul/pom.xml b/oap-server/server-configuration/configuration-consul/pom.xml index d5faa07931..e9c49b5687 100644 --- a/oap-server/server-configuration/configuration-consul/pom.xml +++ b/oap-server/server-configuration/configuration-consul/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/configuration-etcd/pom.xml b/oap-server/server-configuration/configuration-etcd/pom.xml index 9892d5819b..daee3ac062 100644 --- a/oap-server/server-configuration/configuration-etcd/pom.xml +++ b/oap-server/server-configuration/configuration-etcd/pom.xml @@ -20,7 +20,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/configuration-k8s-configmap/pom.xml b/oap-server/server-configuration/configuration-k8s-configmap/pom.xml index f591965531..587c1d772f 100644 --- a/oap-server/server-configuration/configuration-k8s-configmap/pom.xml +++ b/oap-server/server-configuration/configuration-k8s-configmap/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 configuration-k8s-configmap diff --git a/oap-server/server-configuration/configuration-nacos/pom.xml b/oap-server/server-configuration/configuration-nacos/pom.xml index 31e2044b4e..166ad0d3f5 100644 --- a/oap-server/server-configuration/configuration-nacos/pom.xml +++ b/oap-server/server-configuration/configuration-nacos/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/configuration-zookeeper/pom.xml b/oap-server/server-configuration/configuration-zookeeper/pom.xml index 0b089f7797..4e53acb761 100644 --- a/oap-server/server-configuration/configuration-zookeeper/pom.xml +++ b/oap-server/server-configuration/configuration-zookeeper/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/grpc-configuration-sync/pom.xml b/oap-server/server-configuration/grpc-configuration-sync/pom.xml index e82d2fadc2..25d5467f82 100644 --- a/oap-server/server-configuration/grpc-configuration-sync/pom.xml +++ b/oap-server/server-configuration/grpc-configuration-sync/pom.xml @@ -21,7 +21,7 @@ server-configuration org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-configuration/pom.xml b/oap-server/server-configuration/pom.xml index cfa6849aff..781afda8b6 100644 --- a/oap-server/server-configuration/pom.xml +++ b/oap-server/server-configuration/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-core/pom.xml b/oap-server/server-core/pom.xml index 09e7ef8ca7..a8da563361 100644 --- a/oap-server/server-core/pom.xml +++ b/oap-server/server-core/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-fetcher-plugin/kafka-fetcher-plugin/pom.xml b/oap-server/server-fetcher-plugin/kafka-fetcher-plugin/pom.xml index 658d575470..ad14bbd37b 100644 --- a/oap-server/server-fetcher-plugin/kafka-fetcher-plugin/pom.xml +++ b/oap-server/server-fetcher-plugin/kafka-fetcher-plugin/pom.xml @@ -21,7 +21,7 @@ server-fetcher-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-fetcher-plugin/pom.xml b/oap-server/server-fetcher-plugin/pom.xml index e5d8832991..7feda655d1 100644 --- a/oap-server/server-fetcher-plugin/pom.xml +++ b/oap-server/server-fetcher-plugin/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-health-checker/pom.xml b/oap-server/server-health-checker/pom.xml index 10b604a918..8a2eaedd64 100644 --- a/oap-server/server-health-checker/pom.xml +++ b/oap-server/server-health-checker/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-client/pom.xml b/oap-server/server-library/library-client/pom.xml index c3e2761986..729bc436b3 100755 --- a/oap-server/server-library/library-client/pom.xml +++ b/oap-server/server-library/library-client/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-datacarrier-queue/pom.xml b/oap-server/server-library/library-datacarrier-queue/pom.xml index 40b04758a2..ef86c63267 100644 --- a/oap-server/server-library/library-datacarrier-queue/pom.xml +++ b/oap-server/server-library/library-datacarrier-queue/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-elasticsearch-client/pom.xml b/oap-server/server-library/library-elasticsearch-client/pom.xml index 15ce1a3554..4a3789139a 100644 --- a/oap-server/server-library/library-elasticsearch-client/pom.xml +++ b/oap-server/server-library/library-elasticsearch-client/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-kubernetes-support/pom.xml b/oap-server/server-library/library-kubernetes-support/pom.xml index f308ffbde2..a164900b50 100644 --- a/oap-server/server-library/library-kubernetes-support/pom.xml +++ b/oap-server/server-library/library-kubernetes-support/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-module/pom.xml b/oap-server/server-library/library-module/pom.xml index ac28d2a746..a4d332a9b5 100644 --- a/oap-server/server-library/library-module/pom.xml +++ b/oap-server/server-library/library-module/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-server/pom.xml b/oap-server/server-library/library-server/pom.xml index 2d082b7eb6..ce922ede16 100644 --- a/oap-server/server-library/library-server/pom.xml +++ b/oap-server/server-library/library-server/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/library-util/pom.xml b/oap-server/server-library/library-util/pom.xml index 30ec584397..5f3514cb39 100644 --- a/oap-server/server-library/library-util/pom.xml +++ b/oap-server/server-library/library-util/pom.xml @@ -21,7 +21,7 @@ server-library org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-library/pom.xml b/oap-server/server-library/pom.xml index ecd3fa3368..52db32e024 100644 --- a/oap-server/server-library/pom.xml +++ b/oap-server/server-library/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-query-plugin/debugging-query-plugin/pom.xml b/oap-server/server-query-plugin/debugging-query-plugin/pom.xml index 05df5bea50..b67b392902 100644 --- a/oap-server/server-query-plugin/debugging-query-plugin/pom.xml +++ b/oap-server/server-query-plugin/debugging-query-plugin/pom.xml @@ -21,7 +21,7 @@ server-query-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-query-plugin/logql-plugin/pom.xml b/oap-server/server-query-plugin/logql-plugin/pom.xml index f3d53d8c3f..0eb9bd4538 100644 --- a/oap-server/server-query-plugin/logql-plugin/pom.xml +++ b/oap-server/server-query-plugin/logql-plugin/pom.xml @@ -21,7 +21,7 @@ server-query-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-query-plugin/pom.xml b/oap-server/server-query-plugin/pom.xml index fea74a0946..5869327024 100644 --- a/oap-server/server-query-plugin/pom.xml +++ b/oap-server/server-query-plugin/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT diff --git a/oap-server/server-query-plugin/promql-plugin/pom.xml b/oap-server/server-query-plugin/promql-plugin/pom.xml index 6db4c69a8b..45675b2edd 100644 --- a/oap-server/server-query-plugin/promql-plugin/pom.xml +++ b/oap-server/server-query-plugin/promql-plugin/pom.xml @@ -21,7 +21,7 @@ server-query-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-query-plugin/query-graphql-plugin/pom.xml b/oap-server/server-query-plugin/query-graphql-plugin/pom.xml index fbd3ea2867..8bb19bc0b7 100644 --- a/oap-server/server-query-plugin/query-graphql-plugin/pom.xml +++ b/oap-server/server-query-plugin/query-graphql-plugin/pom.xml @@ -21,7 +21,7 @@ server-query-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-query-plugin/query-graphql-plugin/src/main/resources/query-protocol b/oap-server/server-query-plugin/query-graphql-plugin/src/main/resources/query-protocol index 9c0ffe1a4b..f74557b29d 160000 --- a/oap-server/server-query-plugin/query-graphql-plugin/src/main/resources/query-protocol +++ b/oap-server/server-query-plugin/query-graphql-plugin/src/main/resources/query-protocol @@ -1 +1 @@ -Subproject commit 9c0ffe1a4be6c90d13bc03d6e9c8323415fe4534 +Subproject commit f74557b29dc7bef2830786c4fe3e39e4a0919c98 diff --git a/oap-server/server-query-plugin/zipkin-query-plugin/pom.xml b/oap-server/server-query-plugin/zipkin-query-plugin/pom.xml index d758804e76..6433a1febf 100644 --- a/oap-server/server-query-plugin/zipkin-query-plugin/pom.xml +++ b/oap-server/server-query-plugin/zipkin-query-plugin/pom.xml @@ -21,7 +21,7 @@ server-query-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/aws-firehose-receiver/pom.xml b/oap-server/server-receiver-plugin/aws-firehose-receiver/pom.xml index 596f576e37..41356c6d77 100644 --- a/oap-server/server-receiver-plugin/aws-firehose-receiver/pom.xml +++ b/oap-server/server-receiver-plugin/aws-firehose-receiver/pom.xml @@ -23,7 +23,7 @@ org.apache.skywalking server-receiver-plugin - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT aws-firehose-receiver diff --git a/oap-server/server-receiver-plugin/configuration-discovery-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/configuration-discovery-receiver-plugin/pom.xml index df491fbb8d..9fc2b6cbd9 100644 --- a/oap-server/server-receiver-plugin/configuration-discovery-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/configuration-discovery-receiver-plugin/pom.xml @@ -20,7 +20,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/envoy-metrics-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/envoy-metrics-receiver-plugin/pom.xml index d944f5e34a..d51a9b4e5a 100644 --- a/oap-server/server-receiver-plugin/envoy-metrics-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/envoy-metrics-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/otel-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/otel-receiver-plugin/pom.xml index 3083a9bb8d..a194348e9d 100644 --- a/oap-server/server-receiver-plugin/otel-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/otel-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/pom.xml index 5b9df10ed5..2565bd9d2d 100644 --- a/oap-server/server-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/receiver-proto/pom.xml b/oap-server/server-receiver-plugin/receiver-proto/pom.xml index 5d7d33f399..642cf6fd67 100644 --- a/oap-server/server-receiver-plugin/receiver-proto/pom.xml +++ b/oap-server/server-receiver-plugin/receiver-proto/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-browser-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-browser-receiver-plugin/pom.xml index a58e261982..58a75106a6 100644 --- a/oap-server/server-receiver-plugin/skywalking-browser-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-browser-receiver-plugin/pom.xml @@ -20,7 +20,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-clr-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-clr-receiver-plugin/pom.xml index 222de13851..e998265803 100644 --- a/oap-server/server-receiver-plugin/skywalking-clr-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-clr-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-ebpf-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-ebpf-receiver-plugin/pom.xml index a794de586d..487cecc84a 100644 --- a/oap-server/server-receiver-plugin/skywalking-ebpf-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-ebpf-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-event-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-event-receiver-plugin/pom.xml index c4e8d5b2e2..2c3b81b492 100644 --- a/oap-server/server-receiver-plugin/skywalking-event-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-event-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-jvm-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-jvm-receiver-plugin/pom.xml index d09eaf5fc5..c388ebaa15 100644 --- a/oap-server/server-receiver-plugin/skywalking-jvm-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-jvm-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-log-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-log-receiver-plugin/pom.xml index 8b599e0dd2..1d246262d3 100644 --- a/oap-server/server-receiver-plugin/skywalking-log-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-log-receiver-plugin/pom.xml @@ -20,7 +20,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-management-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-management-receiver-plugin/pom.xml index a7046c94d3..e6a8d10c50 100644 --- a/oap-server/server-receiver-plugin/skywalking-management-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-management-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-mesh-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-mesh-receiver-plugin/pom.xml index e33d67ff4a..94b2c3c7bb 100644 --- a/oap-server/server-receiver-plugin/skywalking-mesh-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-mesh-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-meter-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-meter-receiver-plugin/pom.xml index 2762b552cc..2357e1599f 100644 --- a/oap-server/server-receiver-plugin/skywalking-meter-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-meter-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-profile-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-profile-receiver-plugin/pom.xml index fddd867fc1..a6089eb5ff 100644 --- a/oap-server/server-receiver-plugin/skywalking-profile-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-profile-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-sharing-server-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-sharing-server-plugin/pom.xml index 66f746939f..8ecdadf383 100644 --- a/oap-server/server-receiver-plugin/skywalking-sharing-server-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-sharing-server-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-telegraf-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-telegraf-receiver-plugin/pom.xml index 1741cd6997..385b4c1bcb 100644 --- a/oap-server/server-receiver-plugin/skywalking-telegraf-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-telegraf-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-trace-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-trace-receiver-plugin/pom.xml index 69d3d242f3..a5dcb7789c 100644 --- a/oap-server/server-receiver-plugin/skywalking-trace-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-trace-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/skywalking-zabbix-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/skywalking-zabbix-receiver-plugin/pom.xml index 545ade4234..75ea997802 100644 --- a/oap-server/server-receiver-plugin/skywalking-zabbix-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/skywalking-zabbix-receiver-plugin/pom.xml @@ -20,7 +20,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-receiver-plugin/zipkin-receiver-plugin/pom.xml b/oap-server/server-receiver-plugin/zipkin-receiver-plugin/pom.xml index 25e728cc45..0dffb77506 100644 --- a/oap-server/server-receiver-plugin/zipkin-receiver-plugin/pom.xml +++ b/oap-server/server-receiver-plugin/zipkin-receiver-plugin/pom.xml @@ -21,7 +21,7 @@ server-receiver-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-starter/pom.xml b/oap-server/server-starter/pom.xml index cc7c530d9e..6232298816 100644 --- a/oap-server/server-starter/pom.xml +++ b/oap-server/server-starter/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-storage-plugin/pom.xml b/oap-server/server-storage-plugin/pom.xml index f4e4f6a551..f9edf15a14 100644 --- a/oap-server/server-storage-plugin/pom.xml +++ b/oap-server/server-storage-plugin/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-storage-plugin/storage-banyandb-plugin/pom.xml b/oap-server/server-storage-plugin/storage-banyandb-plugin/pom.xml index 239609234d..b0989531d0 100644 --- a/oap-server/server-storage-plugin/storage-banyandb-plugin/pom.xml +++ b/oap-server/server-storage-plugin/storage-banyandb-plugin/pom.xml @@ -21,7 +21,7 @@ server-storage-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-storage-plugin/storage-elasticsearch-plugin/pom.xml b/oap-server/server-storage-plugin/storage-elasticsearch-plugin/pom.xml index b2c30a56be..46c678c329 100644 --- a/oap-server/server-storage-plugin/storage-elasticsearch-plugin/pom.xml +++ b/oap-server/server-storage-plugin/storage-elasticsearch-plugin/pom.xml @@ -21,7 +21,7 @@ server-storage-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/pom.xml b/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/pom.xml index 4dfaaa0de5..822b373e2c 100644 --- a/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/pom.xml +++ b/oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/pom.xml @@ -21,7 +21,7 @@ server-storage-plugin org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-telemetry/pom.xml b/oap-server/server-telemetry/pom.xml index 6660ebc53d..e878021cd8 100644 --- a/oap-server/server-telemetry/pom.xml +++ b/oap-server/server-telemetry/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-telemetry/telemetry-api/pom.xml b/oap-server/server-telemetry/telemetry-api/pom.xml index a378419a12..ed530e7fdd 100644 --- a/oap-server/server-telemetry/telemetry-api/pom.xml +++ b/oap-server/server-telemetry/telemetry-api/pom.xml @@ -21,7 +21,7 @@ server-telemetry org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-telemetry/telemetry-prometheus/pom.xml b/oap-server/server-telemetry/telemetry-prometheus/pom.xml index f2b2686844..5ac93eb182 100644 --- a/oap-server/server-telemetry/telemetry-prometheus/pom.xml +++ b/oap-server/server-telemetry/telemetry-prometheus/pom.xml @@ -21,7 +21,7 @@ server-telemetry org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-testing/pom.xml b/oap-server/server-testing/pom.xml index 83debdb377..ed3e0a24d3 100644 --- a/oap-server/server-testing/pom.xml +++ b/oap-server/server-testing/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-tools/data-generator/pom.xml b/oap-server/server-tools/data-generator/pom.xml index 5f4d5a1f57..7334cb60fc 100644 --- a/oap-server/server-tools/data-generator/pom.xml +++ b/oap-server/server-tools/data-generator/pom.xml @@ -23,7 +23,7 @@ server-tools org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT data-generator data-generator diff --git a/oap-server/server-tools/pom.xml b/oap-server/server-tools/pom.xml index aa62aa3689..a68bf15944 100644 --- a/oap-server/server-tools/pom.xml +++ b/oap-server/server-tools/pom.xml @@ -21,7 +21,7 @@ oap-server org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 diff --git a/oap-server/server-tools/profile-exporter/pom.xml b/oap-server/server-tools/profile-exporter/pom.xml index 282025cb6d..12bdb3cf6b 100644 --- a/oap-server/server-tools/profile-exporter/pom.xml +++ b/oap-server/server-tools/profile-exporter/pom.xml @@ -21,12 +21,12 @@ server-tools org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 profile-exporter - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT pom diff --git a/oap-server/server-tools/profile-exporter/tool-profile-snapshot-bootstrap/pom.xml b/oap-server/server-tools/profile-exporter/tool-profile-snapshot-bootstrap/pom.xml index bda23a71ca..7043d7bbb2 100644 --- a/oap-server/server-tools/profile-exporter/tool-profile-snapshot-bootstrap/pom.xml +++ b/oap-server/server-tools/profile-exporter/tool-profile-snapshot-bootstrap/pom.xml @@ -21,12 +21,12 @@ profile-exporter org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 tool-profile-snapshot-bootstrap - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT diff --git a/oap-server/server-tools/profile-exporter/tool-profile-snapshot-exporter/pom.xml b/oap-server/server-tools/profile-exporter/tool-profile-snapshot-exporter/pom.xml index 8744a3fbcb..478288bd46 100644 --- a/oap-server/server-tools/profile-exporter/tool-profile-snapshot-exporter/pom.xml +++ b/oap-server/server-tools/profile-exporter/tool-profile-snapshot-exporter/pom.xml @@ -21,12 +21,12 @@ profile-exporter org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 tool-profile-snapshot-exporter - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT diff --git a/oap-server/server-tools/profile-exporter/tool-profile-snapshot-server-mock/pom.xml b/oap-server/server-tools/profile-exporter/tool-profile-snapshot-server-mock/pom.xml index aeccfb028b..8b397d00d6 100644 --- a/oap-server/server-tools/profile-exporter/tool-profile-snapshot-server-mock/pom.xml +++ b/oap-server/server-tools/profile-exporter/tool-profile-snapshot-server-mock/pom.xml @@ -21,12 +21,12 @@ profile-exporter org.apache.skywalking - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT 4.0.0 tool-profile-snapshot-server-mock - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT diff --git a/pom.xml b/pom.xml index a332f69268..133d4984f9 100755 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.apache.skywalking apm - 10.0.0-SNAPSHOT + 10.1.0-SNAPSHOT org.apache @@ -151,7 +151,7 @@ 11 UTF-8 - 1701205589 + 1715298980 2.0.9