changes.md 8.1 KB
Newer Older
1
## 9.4.0
2

3
#### Project
4

5
* Bump up Zipkin and Zipkin lens UI dependency to 2.24.0.
wu-sheng's avatar
wu-sheng 已提交
6
* Bump up Apache parent pom version to 29.
7 8
* Bump up Armeria version to 1.21.0.
* Clean up maven `pom.xml`s.
9
* Bump up Java version to 11.
10

11
#### OAP Server
12

13
* Add `ServerStatusService` in the core module to provide a new way to expose booting status to other modules.
14
* Adds Micrometer as a new component.(ID=141)
15
* Refactor session cache in MetricsPersistentWorker.
16
* Cache enhancement - don't read new metrics from database in minute dimensionality.
wu-sheng's avatar
wu-sheng 已提交
17

18 19 20 21 22
```
    // When
    // (1) the time bucket of the server's latest stability status is provided
    //     1.1 the OAP has booted successfully
    //     1.2 the current dimensionality is in minute.
23
    //     1.3 the OAP cluster is rebalanced due to scaling
24 25 26 27 28 29 30 31
    // (2) the metrics are from the time after the timeOfLatestStabilitySts
    // (3) the metrics don't exist in the cache
    // the kernel should NOT try to load it from the database.
    //
    // Notice, about condition (2),
    // for the specific minute of booted successfully, the metrics are expected to load from database when
    // it doesn't exist in the cache.
```
wu-sheng's avatar
wu-sheng 已提交
32

33 34 35 36
* Remove the offset of metric session timeout according to worker creation sequence.
* Correct `MetricsExtension` annotations declarations in manual entities.
* Support component IDs' priority in process relation metrics.
* Remove abandon logic in MergableBufferedData, which caused unexpected no-update.
37
* Fix miss set `LastUpdateTimestamp` that caused the metrics session to expire.
wu-sheng's avatar
wu-sheng 已提交
38
* Rename MAL rule `spring-sleuth.yaml` to `spring-micrometer.yaml`.
39
* Fix memory leak in Zipkin API.
40 41
* Remove the dependency of `refresh_interval` of ElasticSearch indices from `elasticsearch/flushInterval` config. Now,
  it uses `core/persistentPeriod` + 5s as `refresh_interval` for all indices instead.
42
* Change `elasticsearch/flushInterval` to 5s(was 15s).
K
kezhenxu94 已提交
43
* Optimize `flushInterval` of ElasticSearch BulkProcessor to avoid extra periodical flush in the continuous bulk streams.
wu-sheng's avatar
wu-sheng 已提交
44
* An unexpected dot is added when exp is a pure metric name and expPrefix != null.
45
* Support monitoring MariaDB.
46 47 48 49
* Remove measure/stream specific interval settings in BanyanDB.
* Add global-specific settings used to override global configurations (e.g `segmentIntervalDays`, `blockIntervalHours`) in BanyanDB.
* Use TTL-driven interval settings for the `measure-default` group in BanyanDB.
* Fix wrong group of non time-relative metadata in BanyanDB.
50
* Refactor `StorageData#id` to the new StorageID object from a String type.
51 52 53
* Support multiple component IDs in the service topology level.
* Add `ElasticSearch.Keyword` annotation to declare the target field type as `keyword`.
* [Breaking Change] Column `component_id` of `service_relation_client_side` and `service_relation_server_side` have been replaced by `component_ids`.
54
* Support `priority` definition in the `component-libraries.yml`.
55 56
* Enhance service topology query. When there are multiple components detected from the server side,
  the component type of the node would be determined by the priority, which was random in the previous release.
57
* Remove `component_id` from `service_instance_relation_client_side` and `service_instance_relation_server_side`.
58
* Make the satellite E2E test more stable.
59
* Add Istio 1.16 to test matrix.
J
Jiajing LU 已提交
60
* Register ValueColumn as Tag for Record in BanyanDB storage plugin.
K
kezhenxu94 已提交
61
* Bump up Netty to 4.1.86.
62
* Remove unnecessary additional columns when storage is in logical sharding mode.
63
* The cluster coordinator support watch mechanism for notifying `RemoteClientManager` and `ServerStatusService`.
64
* Fix ServiceMeshServiceDispatcher overwrite ServiceDispatcher debug file when open SW_OAL_ENGINE_DEBUG.
65
* Use `groupBy` and `in` operators to optimize topology query for BanyanDB storage plugin.
66
* Support server status watcher for `MetricsPersistentWorker` to check the metrics whether required initialization.
67
* Fix the meter value are not correct when using `sumPerMinLabeld` or `sumHistogramPercentile` MAL function.
68
* Fix cannot display attached events when using Zipkin Lens UI query traces.
69
* Remove `time_bucket` for both Stream and Measure kinds in BanyanDB plugin.
70
* Merge `TIME_BUCKET` of `Metrics` and `Record` into `StorageData`.
71
* Support no `layer` in the `listServices` query.
72 73 74
* Fix `time_bucket` of `ServiceTraffic` not set correctly in `slowSql` of MAL.
* Correct the TopN record query DAO of BanyanDB.
* Tweak interval settings of BanyanDB.
75
* Support monitoring AWS Cloud EKS.
76 77 78 79
* Bump BanyanDB Java client to 0.3.0-rc1.
* Remove `id` tag from measures.
* Add `Banyandb.MeasureField` to mark a column as a BanyanDB Measure field.
* Add `BanyanDB.StoreIDTag` to store a process's id for searching.
80
* [**Breaking Change**] The supported version of ShardingSphere-Proxy is upgraded from 5.1.2 to 5.3.1. Due to the changes of ShardingSphere's API, versions before 5.3.1 are not compatible.
81
* Add the eBPF network profiling E2E Test in the per storage.
82
* Fix TCP service instances are lack of instance properties like `pod` and `namespace`, which causes Pod log not to work for TCP workloads.
83
* Add Python HBase happybase module component ID(94).
84
* Fix gRPC alarm cannot update settings from dynamic configuration source.
85
* Add `batchOfBytes` configuration to limit the size of bulk flush.
86
* Add Python Websocket module component ID(7018).
wu-sheng's avatar
wu-sheng 已提交
87
* [Optional] Optimize single trace query performance by customizing routing in ElasticSearch. SkyWalking trace segments and Zipkin spans are using trace ID for routing. This is OFF by default, controlled by `storage/elasticsearch/enableCustomRouting`.
88
* Enhance OAP HTTP server to support HTTPS
89
* Remove handler scan in otel receiver, manual initialization instead
90
* Add aws-firehose-receiver to support collecting AWS CloudWatch metric(OpenTelemetry format)
91
* Avoid Antlr dependencies' versions might be different in compile time and runtime.
92
* Now `PrometheusMetricConverter#escapedName` also support converting `/` to `_`.
93
* Add missing TCP throughput metrics.
94
* Refactor `@Column` annotation, swap `Column#name` and `ElasticSearch.Column#columnAlias` and rename `ElasticSearch.Column#columnAlias` to `ElasticSearch.Column#legacyName`.
95
* Add Python HTTPX module component ID(7019).
96
* Migrate tests from junit 4 to junit 5.
97
* Refactor http-based alarm plugins and extract common logic to `HttpAlarmCallback`.
98

F
Fine0830 已提交
99 100
#### UI

K
kezhenxu94 已提交
101
* Add Zipkin Lens UI to webapp, and proxy it to context path `/zipkin`.
102 103
* Migrate the build tool from vue cli to Vite4.
* Fix Instance Relation and Endpoint Relation dashboards show up.
F
Fine0830 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
* Add Micrometer icon.
* Update MySQL UI to support MariaDB.
* Add AWS menu for supporting AWS monitoring.
* Add missing FastAPI logo.
* Update the log details page to support the formatted display of JSON content.
* Fix build config.
* Avoid being unable to drag process nodes for the first time.
* Add node folder into ignore list.
* Add ElPopconfirm to component types.
* Add an iframe widget for zipkin UI.
* Optimize graph tooltips to make them more friendly.
* Bump json5 from 1.0.1 to 1.0.2.
* Add websockets icon.
* Implement independent mode for widgets.
* Bump http-cache-semantics from 4.1.0 to 4.1.1.
* Update menus for OpenFunction.
wu-sheng's avatar
wu-sheng 已提交
120 121 122 123 124 125 126
* Add auto fresh to widgets independent mode.
* Fix: clear trace ID on the Log and Trace widgets after using association.
* Fix: reset duration for query conditions after time range changes.
* Add AWS S3 menu.
* Refactor: optimize side bar component to make it more friendly.
* Fix: remove duplicate popup message for query result.
* Add logo for HTTPX.
127
* Refactor: optimize the attached events visualization in the trace widget.
wu-sheng's avatar
wu-sheng 已提交
128
* Update BanyanDB client to 0.3.0.
K
kezhenxu94 已提交
129

wu-sheng's avatar
wu-sheng 已提交
130
#### Documentation
131

wu-sheng's avatar
wu-sheng 已提交
132 133
* Remove Spring Sleuth docs, and add `Spring MicroMeter Observations Analysis` with the latest Java agent side
  enhancement.
134
* Update `monitoring MySQL document` to add the `MariaDB` part.
wu-sheng's avatar
wu-sheng 已提交
135
* Reorganize the protocols docs to a more clear API docs.
136
* Add documentation about replacing Zipkin server with SkyWalking OAP.
137
* Add Lens UI relative docs in Zipkin trace section.
138
* Add Profiling APIs.
wu-sheng's avatar
wu-sheng 已提交
139
* Fix backend telemetry doc and so11y dashboard doc as the OAP Prometheus fetcher was removed since 9.3.0
wu-sheng's avatar
wu-sheng 已提交
140

141
All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/160?closed=1)