1. 09 4月, 2021 1 次提交
  2. 27 2月, 2021 1 次提交
  3. 20 2月, 2021 1 次提交
  4. 05 2月, 2021 1 次提交
  5. 02 2月, 2021 1 次提交
    • wu-sheng's avatar
      Begin the 8.5.0 iteration (#6302) · cdfe6ab3
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v8.4.0
      
      * [maven-release-plugin] prepare for next development iteration
      cdfe6ab3
  6. 29 11月, 2020 1 次提交
  7. 09 11月, 2020 1 次提交
  8. 29 10月, 2020 1 次提交
    • K
      Improve Kubernetes service registry for ALS analysis (#5722) · 92bb474c
      kezhenxu94 提交于
      The current implementation of envoy ALS K8S analysis is based on the hierarchy, pod -> StatefulSet -> deployment, StatefulSet, or others. It's freaky and different from the Istio Kubernetes registry.
      
      The new path is pod -> endpoint -> service, and we should leverage Informer API instead of raw Kubernetes API.
      92bb474c
  9. 24 10月, 2020 1 次提交
  10. 03 10月, 2020 1 次提交
  11. 29 9月, 2020 1 次提交
  12. 31 7月, 2020 1 次提交
    • wu-sheng's avatar
      Begin 8.2.0 iteration. (#5211) · 2f2840cb
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v8.1.0
      
      * [maven-release-plugin] prepare for next development iteration
      2f2840cb
  13. 30 7月, 2020 1 次提交
  14. 25 7月, 2020 1 次提交
  15. 21 7月, 2020 1 次提交
  16. 10 7月, 2020 1 次提交
  17. 22 6月, 2020 1 次提交
  18. 12 6月, 2020 1 次提交
  19. 08 6月, 2020 1 次提交
  20. 06 6月, 2020 1 次提交
    • S
      Remove nacos (#4867) · f3d907bf
      songzhendong 提交于
      * Add annotation(AlarmCore.start)
      
      * Upgrade nacos version to 1.2.0
      
      * Revert "Upgrade nacos version to 1.2.0"
      
      This reverts commit 4d7b06f6d20ee09ad377ad6ef736aeab429314e0.
      
      * Update nacos version to 1.2.0(Solve the security problem of the old version of fastsjon)
      
      * Recovery annotation
      
      * Recovery annotation
      
      * Update nacos version to 1.2.0
      
      * Update tls_key_generate.sh path
      
      Update tls_key_generate.sh path
      
      * Add annotation(AlarmCore.start)
      
      * Revert "Upgrade nacos version to 1.2.0"
      
      This reverts commit 4d7b06f6d20ee09ad377ad6ef736aeab429314e0.
      
      * Update nacos version to 1.2.0(Solve the security problem of the old version of fastsjon)
      
      * Recovery annotation
      
      * Recovery annotation
      
      * Update tls_key_generate.sh path
      
      * Execution Authority
      
      * Remove nacos
      
      * remove nacos code
      
      * remove nacos
      
      remove nacos
      
      * remove nacos
      
      remove nacos
      
      * remove nacos
      
      * remove nacos
      Co-authored-by: Nsongzhendong <289505773@qq.com>
      Co-authored-by: Nsongzhendong <songzhendong@xiaomi.com>
      Co-authored-by: wu-sheng's avatar吴晟 Wu Sheng <wu.sheng@foxmail.com>
      f3d907bf
  21. 07 5月, 2020 1 次提交
  22. 24 4月, 2020 1 次提交
    • wu-sheng's avatar
      Provide Meter(metrics) system (#4694) · b635e254
      wu-sheng 提交于
      Here are the basic and simple usages of the MeterSystem APIs.
      
      ## Meter Creation
      New meter could be created based on metrics name, function, scope and data type. 
      1. Metrics name is still the storage entity name.
      2. Functions are every similar with the OAL function, just accepting different input.
      ```java
      final MeterSystem meterSystem = MeterSystem.meterSystem(getManager());
      meterSystem.create("test_long_metrics", "avg", ScopeType.SERVICE, Long.class);
      ```
      NOTICE, this creation should only be called in the `module#prepare` stage, otherwise, `Can't create new metrics anymore` exception will be raised after the **CORE** module `start` stage finished. You may find out, there is a chance `create` could be executed successfully in your own `module#start` stage, but it it just because of the sequence of provider loaded by the class loader, **no guarantee, so please don't do that**.
      
      ## Runtime Calculation
      `AcceptableValue` is the object created at the runtime to accept new metrics value.
      ```java
               final MeterSystem service = getManager().find(CoreModule.NAME).provider().getService(MeterSystem.class);
              Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(new Runnable() {
                  @Override
                  public void run() {
                      final AcceptableValue<Long> value = service.buildMetrics("test_long_metrics", Long.class);
                      value.accept(MeterEntity.newService("abc"), 5L);
                      value.setTimeBucket(TimeBucket.getMinuteTimeBucket(System.currentTimeMillis()));
                      service.doStreamingCalculation(value);
                  }
              }, 2, 2, TimeUnit.SECONDS);
      ```
      
      ## Meter Functions
      Right now, only `avg` function has been implemented. I submit this PR as soon as possible to get your feedback. I will add more functions.
      
      ## Notice
      1. Make slow trace query available in the sampled record. Logically, they are the same thing. The UI doesn't need to concern about the trace as a special case.
      2. Endpoint dependency will be removed from the dashboard. Because no query available for it. We will provide a new page for that in 8.1
      3. Comparison page will be removed due to dashboard is powerful enough to replace it.
      b635e254
  23. 13 4月, 2020 1 次提交
  24. 31 3月, 2020 1 次提交
  25. 19 3月, 2020 1 次提交
  26. 15 3月, 2020 1 次提交
  27. 06 3月, 2020 1 次提交
  28. 04 3月, 2020 1 次提交
  29. 11 2月, 2020 1 次提交
    • K
      Set up more strict code styles and fix existing issues (#4337) · 5b255ba3
      kezhenxu94 提交于
      Motivation:
      
      Review code styles with some bots automatically.
      
      Modifications:
      
      Set up ReviewDog in GitHub Action to review code style.
      
      Add more check rules to checkstyle plugin.
      
      Result:
      
      Obvious code styles can be reviewed and commented automatically.
      5b255ba3
  30. 03 2月, 2020 1 次提交
  31. 25 12月, 2019 1 次提交
    • wu-sheng's avatar
      Update JDK compiling level to 8, and remove zip dist. (#4119) · b5709960
      wu-sheng 提交于
      * Update JDK compiling level to 8, and remove zip dist.
      
      * Exclude annotation and shade API.
      
      * Fix more exclusion.
      
      * 1. Update grava and gson 2. Fix compile issue. 3. Keep protoc and maven plugin in old version. Some incompatible of 3rd party grpc proto.
      
      * Fix dependency conflicts, license and notice issue, and dependency check script issue
      Co-authored-by: Nkezhenxu94 <kezhenxu94@163.com>
      b5709960
  32. 24 12月, 2019 1 次提交
  33. 21 11月, 2019 1 次提交
    • K
      [Feature] Support ElasticSearch 7 as backend storage (#3870) · 9b408e82
      kezhenxu94 提交于
      * [Feature] Officially support ElasticSearch 7 as backend storage
      
      * Extract bootstrap module to be shared by multiple starters
      
      * Add missing configuration file and distinguish different version in test
      
      * Update known-oap-backend-dependencies-es7.txt
      
      Update the dependency lib
      
      * Fix missing adaptation to ElasticSearch 7
      
      * Rename ElasticSearch 7 specific class with Es7 infix
      
      * Fix miss-adapted ElasticSearch DAO API
      
      * Add ES7 specific configuration and polish documentations
      
      * Polish documentations
      
      * Polish documentations
      9b408e82
  34. 17 11月, 2019 1 次提交
  35. 12 11月, 2019 1 次提交
    • wu-sheng's avatar
      Move to 6.6.0 SNAPSHOT (#3839) · 3fbaec42
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v6.5.0
      
      * [maven-release-plugin] prepare for next development iteration
      3fbaec42
  36. 30 9月, 2019 1 次提交
  37. 09 9月, 2019 1 次提交
    • wu-sheng's avatar
      Move to 6.5.0 (#3439) · ce20fe10
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v6.4.0
      
      * [maven-release-plugin] prepare for next development iteration
      ce20fe10
  38. 07 8月, 2019 1 次提交
  39. 05 8月, 2019 1 次提交
  40. 27 7月, 2019 1 次提交