1. 26 4月, 2021 1 次提交
  2. 18 1月, 2021 1 次提交
  3. 05 10月, 2020 1 次提交
  4. 22 8月, 2020 1 次提交
  5. 10 4月, 2020 1 次提交
    • wu-sheng's avatar
      Make 8.0.0 Core available. New protocol and register removed. (#4599) · 6fe2041b
      wu-sheng 提交于
      Here are the list of changes we made in this pull request. Top 3 are the principle changes, others are following these principles.
      1. New agent and mesh report protocol. 
      2. New agent header protocol. 
      3. Service register, instance register and network address register have been removed permanently.
      4. Service traffic, instance traffic and network alias metrics are added to replace the service, instance and network address inventory.
      5. Register process has been removed.
      6. Metrics stream process supports insert only mode, especially for traffic entities.
      7. Metrics stream process supports no-downsampling mode for traffic entities and network alias.
      8. Remove all register mechanism and cache in the java agent.
      9. Remove MONTH step in GraphQL query.
      10. Update UI to remove MONTH step query, the max query range is 60 days now.
      11. Simplify the TTL to metrics and record. And the unit has been formatted in Day unit. No specific TTL for ElasticSearch storage.
      12. Buffer mechanism of trace receiver and mesh receiver has been removed due to no register.
      13. New service id, instance id and endpoint id rules, including service relation, instance relation and endpoint relation id rules.
      14. Java agent support `keep tracing` mode, meaning, agent generating tracing context even the backend is unconnected/unavailable.
      15. Plugin test tool up to date, in order to support new protocol.
      16. Plugin tests expected data files updated.
      17. E2E tests updated.
      18. Telemetry of Grafana config has been merged into one.
      19. Documentation updates.
      20. [TBD] InfluxDB storage implementation is not available, need @dmsolr to fix later, in order to reduce the master change block by this PR.
      6fe2041b
  6. 16 3月, 2020 1 次提交
    • K
      Rewrite the E2E test framework and tests (#4510) · dcd66ee6
      kezhenxu94 提交于
      Motivation:
      
      According the feedback from the community, the e2e tests are hard for
      them to understand and get them started, so this pull request aims to
      rewrite the e2e tests with some improvements:
      
      - debuggable locally, now you can run every individual case directly
      inside the IDE, just like running a plain unit test.
      
      - same functionalities of multiple counterparts share the same codes,
      cases like different storages and cluster coordinators share the same
      codes, easy to add more similar cases.
      
      - the "end" now extends to the Doccker images, meaning that some bugs
      like #4483 and #4471 can be more easily and early to be discovered.
      
      - codes style and license headers are checked
      
      Modifications:
      
      - adopt jupeter (a.k.a junit 5), testcontainers as the new test
      framework, all containers are orchestrated by docker-compose.yml,
      well-known technology that developers should be familiar with.
      
      - rewrite all test cases and verify them.
      
      - reorganize the workflows in GitHub Actions.
      
      Result:
      
      - new e2e test should be easy to add.
      
      - closes https://github.com/apache/skywalking/issues/4472
      dcd66ee6
  7. 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
  8. 09 1月, 2020 1 次提交
    • 静夜思朝颜's avatar
      Provide profile task downstream to sniffer (#4172) · 4cf0600f
      静夜思朝颜 提交于
      * Provide profile task downstream to sniffer
      
      * fix agent unit testcase issue
      
      * add profile switch config on sniffer
      
      * fix es error
      
      * 1. add @DefaultImplementor on the sniffer profile task service
      2. change ProfileTaskExecutionService#PROFILE_TASK_READY_SCHEDULE to final and remove volatile
      2. fix style error
      
      * change timeFromStartMills use `<` to compare
      
      * 1. add `maxSamplingCount` to profile task
      2. make profile task limit to the common package
      
      * 1. change `agent.active_profile` to `profile.active` and make true on default
      2. add `maxSamplingCount` in profile task
      3. use `createTime` to check has new command list
      4. add task re-check before process profile task
      
      * 1. add `profile-receiver` document
      2. change `ProfileTaskExecutionService` use single schedule thread pool
      3. cache dont need fetch data when no data, use auto-fresh mechanism only
      
      * remove navigate time judge, fix comment wrong meaning
      4cf0600f
  9. 31 12月, 2019 1 次提交
    • 静夜思朝颜's avatar
      Provide thread monitor create task feature (#4145) · d38a8eaa
      静夜思朝颜 提交于
      * provide thread monitor task service to create
      
      * provide thread monitor task GraphQL implements
      
      * 1. change thread monitor field names
      2. fix `getThreadMonitorTaskList` query time bucket error
      
      * provide config stream processor
      
      * update submodule `query-protocol`
      
      * resolve e2e-mysql error
      
      * remove useless storage interface method.
      
      * rename `ThreadMonitorTask` to `ProfileTask`
      
      * change e2e-profile to the top level
      
      * fix profile test analyze error
      
      * remove StringUtil#isBlank.
      
      * 1. remove create profile task duration unit
      2. remove GraphQL getTask list duration field
      3. add `profileTaskQueryMaxSize` in `storage` -> `elasticsearch(7)` configuration, default get 200 profile task
      
      * provide e2e different storage tests
      
      * 1. fix rat check
      2. remove DurationUtils.java#toSecond
      3. remove ProfileTaskQueryEs7DAO
      
      * fix e2e code format error
      
      * provide es6 and es7 storage e2e tests
      
      * change e2e profile es module artifactId
      Co-authored-by: Nkezhenxu94 <kezhenxu94@163.com>
      d38a8eaa
  10. 21 11月, 2018 1 次提交
    • wu-sheng's avatar
      Support new v2 protocol and make concept consistently (#1937) · c6ada8c9
      wu-sheng 提交于
      * Update new protocol
      
      * Support new protocol at agent side.
      
      * Fix test case.
      
      * Make backend supports new trace protocol
      
      * Fix tests.
      
      * Make all new services available in gRPC.
      
      * Fix bugs.
      
      * Finish new document for v2 trace protocol.
      
      * Fix wrong version requirement of zk
      
      * Fix trace query bug.
      
      * Find a client side dictionary bug.
      
      * Fix register bugs.
      
      * Fix break doc links.
      c6ada8c9
  11. 19 9月, 2018 1 次提交
  12. 04 9月, 2018 1 次提交
    • SkyWalking's trace receiver implementation. (#1618) · d0e68872
      彭勇升 pengys 提交于
      * Buffer stream.
      
      * Buffer file reader.
      
      * Buffer library performance test and functional test successfully.
      
      * Fixed the code merge mistake.
      
      * SkyWalking's trace receiver implementation.
      
      * SkyWalking's trace receiver implementation.
      
      * Delete collector module.
      d0e68872
  13. 21 6月, 2018 1 次提交
  14. 03 5月, 2018 1 次提交