This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch feature/elasticsearch-client
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


 discard 8ae3b2b  Rebuilt ElasticSearch client on top of their REST API Remove 
page path from browser log query condition Add Python Falcon Plugin Logo (#528)
     new e12f52b  Rebuilt ElasticSearch client on top of their REST API

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   (8ae3b2b)
            \
             N -- N -- N   refs/heads/feature/elasticsearch-client (e12f52b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                                           |   9 +-
 apm-dist-es7/pom.xml                               | 105 ------
 apm-dist-es7/src/main/assembly/binary-es7.xml      | 102 ------
 docker/oap/log4j2.xml                              |   1 -
 docs/en/setup/envoy/examples/metrics/log4j2.xml    |   1 -
 oap-server-bom-es7/pom.xml                         |  56 ---
 oap-server-bom/pom.xml                             |  19 +-
 .../skywalking/oap/meter/analyzer/Analyzer.java    |  13 +-
 .../oap/meter/analyzer/MetricConvert.java          |   4 +-
 oap-server/pom.xml                                 |   1 -
 oap-server/server-alarm-plugin/pom.xml             |   9 +-
 .../src/test/resources/log4j2-test.xml             |   1 -
 .../server-bootstrap/src/main/resources/log4j2.xml |   2 -
 .../oap/server/core/remote/JettyServerTest.java    | 145 +++-----
 oap-server/server-library/library-client/pom.xml   |   4 -
 .../client/elasticsearch/ElasticSearchClient.java  |  15 +-
 .../client/elasticsearch/UpdateRequestWrapper.java |   1 -
 .../elasticsearch/ITElasticSearchClient.java       |  19 +-
 .../library/elasticsearch/bulk/BulkProcessor.java  |  21 +-
 .../elasticsearch/client/DocumentClient.java       |   4 +-
 .../elasticsearch/requests/factory/Codec.java      |   3 +-
 .../requests/factory/DocumentFactory.java          |   3 +-
 .../requests/factory/v6/V6DocumentFactory.java     |   9 +-
 .../requests/factory/v6/codec/V6Codec.java         |   6 +-
 .../search/aggregation/AvgAggregation.java         |   4 +-
 .../search/aggregation/MaxAggregation.java         |  27 ++
 .../search/aggregation/MinAggregation.java         |  27 ++
 .../search/aggregation/SumAggregation.java         |  27 ++
 .../search/aggregation/TermsAggregation.java       |   4 +-
 .../pom.xml                                        |   2 +-
 .../discovery/AgentConfigurationsReader.java       |  12 +-
 .../discovery/AgentConfigurationsWatcher.java      |  12 +-
 oap-server/server-starter-es7/pom.xml              |  92 -----
 .../src/main/assembly/assembly.xml                 |  33 --
 .../oap/server/starter/OAPServerStartUp.java       |  29 --
 oap-server/server-storage-plugin/pom.xml           |   3 +-
 .../storage-elasticsearch-plugin/pom.xml           |   8 +-
 .../storage/plugin/elasticsearch/base/EsDAO.java   |  23 --
 .../elasticsearch/base/StorageEsInstaller.java     |   3 +-
 .../elasticsearch/base/TimeSeriesUtilsTest.java    |   2 +-
 .../storage-elasticsearch7-plugin/pom.xml          |  53 ---
 .../StorageModuleElasticsearch7Config.java         |  24 --
 .../StorageModuleElasticsearch7Provider.java       | 240 -------------
 .../elasticsearch7/base/IndexEs7Structures.java    |  40 ---
 .../elasticsearch7/base/StorageEs7Installer.java   |  40 ---
 .../client/ElasticSearch7Client.java               | 397 ---------------------
 .../client/ElasticSearch7InsertRequest.java        |  36 --
 .../client/ElasticSearch7UpdateRequest.java        |  34 --
 .../plugin/elasticsearch7/dao/MetricsEs7DAO.java   |  31 --
 .../plugin/elasticsearch7/dao/StorageEs7DAO.java   |  63 ----
 .../query/AggregationQueryEs7DAO.java              | 120 -------
 .../elasticsearch7/query/AlarmQueryEs7DAO.java     | 107 ------
 .../query/BrowserLogQueryEs7DAO.java               |  96 -----
 .../elasticsearch7/query/ES7EventQueryDAO.java     |  62 ----
 .../elasticsearch7/query/LogQueryEs7DAO.java       | 165 ---------
 .../elasticsearch7/query/MetadataQueryEs7DAO.java  |  29 --
 .../elasticsearch7/query/MetricsQueryEs7DAO.java   | 102 ------
 .../query/ProfileThreadSnapshotQueryEs7DAO.java    |  48 ---
 .../elasticsearch7/query/TraceQueryEs7DAO.java     | 151 --------
 ...alking.oap.server.library.module.ModuleProvider |  19 -
 .../storage/plugin/influxdb/query/AlarmQuery.java  |   5 +-
 .../storage/plugin/influxdb/query/LogQuery.java    |   2 +-
 .../influxdb/query/ProfileThreadSnapshotQuery.java |   2 +-
 .../storage/plugin/influxdb/query/TraceQuery.java  |   2 +-
 .../plugin/jdbc/h2/dao/H2AlarmQueryDAO.java        |  21 +-
 .../storage/plugin/jdbc/h2/dao/H2LogQueryDAO.java  |   3 +-
 .../h2/dao/H2ProfileThreadSnapshotQueryDAO.java    |   6 +-
 .../plugin/jdbc/h2/dao/H2TraceQueryDAO.java        |   5 +-
 .../storage-zipkin-elasticsearch7-plugin/pom.xml   |  13 +-
 .../elasticsearch/ZipkinTraceQueryEs7DAO.java      |  79 ++--
 .../tool-profile-snapshot-exporter-es7/pom.xml     |   9 +-
 pom.xml                                            |   4 -
 72 files changed, 280 insertions(+), 2589 deletions(-)
 delete mode 100644 apm-dist-es7/pom.xml
 delete mode 100644 apm-dist-es7/src/main/assembly/binary-es7.xml
 delete mode 100644 oap-server-bom-es7/pom.xml
 delete mode 100644 oap-server/server-starter-es7/pom.xml
 delete mode 100644 oap-server/server-starter-es7/src/main/assembly/assembly.xml
 delete mode 100644 
oap-server/server-starter-es7/src/main/java/org/apache/skywalking/oap/server/starter/OAPServerStartUp.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/pom.xml
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/StorageModuleElasticsearch7Config.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/StorageModuleElasticsearch7Provider.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/base/IndexEs7Structures.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/base/StorageEs7Installer.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/client/ElasticSearch7Client.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/client/ElasticSearch7InsertRequest.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/client/ElasticSearch7UpdateRequest.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/dao/MetricsEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/dao/StorageEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/AggregationQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/AlarmQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/BrowserLogQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/ES7EventQueryDAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/LogQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/MetadataQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/MetricsQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/ProfileThreadSnapshotQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch7/query/TraceQueryEs7DAO.java
 delete mode 100644 
oap-server/server-storage-plugin/storage-elasticsearch7-plugin/src/main/resources/META-INF/services/org.apache.skywalking.oap.server.library.module.ModuleProvider

Reply via email to