This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a change to branch events
in repository https://gitbox.apache.org/repos/asf/skywalking.git.
discard e2f8e9e Add change log
discard 1502f38 Complete the storage implementations
discard 221fb0a Add event query plugin
discard 227f961 Add event receiver plugin
discard 12f1a64 Update protocol submodule
discard 95247d8 Draft the doc of event concept
add e138d29 add text analyzer for es (#6249)
add 9268b98 Fix wrong FAQ catalog (#6254)
add 52c438b Fix that the dynamic configuration is deleted on the server
side but does not take effect on the agent. (#6255)
add f597087 Draft the doc of event concept
add aa096ac Update protocol submodule
add 1865381 Add event receiver plugin
add 53d7653 Add event query plugin
add 4963f6c Complete the storage implementations
add 75e8374 Add change log
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e2f8e9e)
\
N -- N -- N refs/heads/events (75e8374)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
CHANGES.md | 3 +-
.../dynamic/ConfigurationDiscoveryService.java | 34 +++-
docs/en/FAQ/README.md | 2 +-
docs/en/setup/backend/backend-storage.md | 2 +
.../src/main/resources/application.yml | 4 +
.../analysis/manual/log/AbstractLogRecord.java | 6 +-
.../oap/server/core/storage/annotation/Column.java | 28 ++++
.../oap/server/core/storage/model/ModelColumn.java | 6 +-
.../server/core/storage/model/StorageModels.java | 3 +-
.../server/core/storage/model/ModelColumnTest.java | 13 +-
.../discovery/AgentConfigurationsWatcher.java | 24 ++-
.../StorageModuleElasticsearchConfig.java | 15 +-
.../plugin/elasticsearch/base/AnalyzerSetting.java | 119 ++++++++++++++
.../elasticsearch/base/StorageEsInstaller.java | 24 ++-
.../elasticsearch/base/AnalyzerSettingTest.java | 179 +++++++++++++++++++++
15 files changed, 442 insertions(+), 20 deletions(-)
create mode 100644
oap-server/server-storage-plugin/storage-elasticsearch-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch/base/AnalyzerSetting.java
create mode 100644
oap-server/server-storage-plugin/storage-elasticsearch-plugin/src/test/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch/base/AnalyzerSettingTest.java