1. 31 8月, 2020 1 次提交
  2. 01 6月, 2020 1 次提交
  3. 08 5月, 2020 2 次提交
  4. 19 4月, 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. 30 3月, 2020 1 次提交
    • wu-sheng's avatar
      OAP Core polish, especially storage level (#4587) · e55073e5
      wu-sheng 提交于
      - Add length definition with reasonable default value.
      - #content of @Column has been renamed to storageOnly . I add this to many fields as they are not being query in any case.
      - Merge H2 and MySQL columntype mapping back to consistent.
      - Remove @IDColumn.
      - Support @QueryUnifiedIndex.
      - Refactor the MySQL and H2 installers to use @Column and @QueryUnifiedIndex definitions to create indices automatically. But the index naming rule has been changed to entityseqIDX. seq is the Increment Interger for every entity.
      - Support @MetricsExtension and insertOnly in the MetricsPersistentWorker worker.
      - Optimize MetricsStreamProcessor
      e55073e5
  7. 28 3月, 2020 1 次提交
    • wu-sheng's avatar
      [Inventory Design Change] Remove endpoint register and endpoint inventory (#4570) · 4474907f
      wu-sheng 提交于
      * Finish step one, source and entity changed.
      
      * Step 2, finish the basic and core DAO changes.
      
      * Step 3. Change all source codes of backend, and make project compiling successfully.
      
      * Make startup successful and persistence works.
      
      * Fix dead codes in the MySQLTableInstaller.
      
      * Fix mischange.
      
      * Fix MySQL storage bootstrap error.
      
      * Rollback dependency change.
      
      * Simply enable tailing logs from container no mater it's in CI or not
      
      * Fix segment table issue.
      
      * Fix MySQL Instanller.
      
      * Support Influxdb implementation of new endpoint traffic.
      
      * Set and modify timeout to 90mins
      
      * Remove unnecessary entity in the EndpointTraffic.
      
      * Fix wrong entity builder and make name more clear.
      
      * Fix 2 equal methods bug.
      
      * Fix InfluxDB identifier(name) conflict issue.
      
      * Fix endpoint topology query, endpoint id should be changed as a string.
      
      * Fix a missing change.
      
      * Fix a wrong commit.
      
      * Column name can't be changed, due to it affect the hybrid metadb(h2/mysql) query, change it explicitly with double quotation marks.
      
      * Fix formats.
      
      * Remove endpoint/operation register from the agent. and change the plugin tests(without local tests). operationId relation codes have been removed from agent too.
      
      * Try to fix the hytrix case.
      
      * Fix 3 cases.
      
      * Try to fix cases.
      
      * Fix 2.
      
      * Fix one.
      
      * Fix the serviceId type mis-change.
      
      * Fix int query
      
      * Fix hystrix case.
      
      * Fix a case.
      
      * Fix EndpointCallRelationDispatcher set the source/dest endpoint without id encoding.
      
      * Update documentation and add 2 test cases.
      Co-authored-by: Nkezhenxu94 <kezhenxu94@163.com>
      4474907f
  8. 15 3月, 2020 1 次提交
    • K
      Add selector property in application.yml (#4514) · 69e3d80e
      kezhenxu94 提交于
      ### Motivation
      
       Ease the efforts of modifying configurations in automatic workflow and scripts, like Docker and helm chart.
      
       ### Modification
      
       Add a `selector` property into `application.yml` to enable switching configuration simply by environment variables or system properties, and filter the unselected options, leaving only selected one.
      
       ### Result
      
       - We can switch a configuration by environment variables or system property
      
       - Closes #4511
      69e3d80e
  9. 19 2月, 2020 1 次提交
  10. 11 2月, 2020 2 次提交
  11. 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
  12. 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
  13. 12 10月, 2019 1 次提交
  14. 15 7月, 2019 1 次提交
  15. 03 6月, 2019 1 次提交
    • Good news of an important feature: time series implementation in Elasticsearch storage. (#2808) · 5036e833
      彭勇升 pengys 提交于
      * The new feature of Elasticsearch storage with the time series implementation.
      
      * Time bucket util improve.
      
      * Fixed some Gramma error.
      
      * Update ttl.md
      
      Polish English a little.
      
      * Update ttl.md
      
      Add more explicit description of TTL
      
      * Update ttl.md
      
      * Update StorageModuleElasticsearchConfig.java
      
      Set otherMetricsDataTTL = 0 as default, make user more clear.
      
      * Rename the timeSeriesAble to capableOfTimeSeries
      
      * Fixed a test case failure.
      5036e833
  16. 10 5月, 2019 1 次提交
  17. 17 4月, 2019 1 次提交
  18. 08 4月, 2019 1 次提交
    • wu-sheng's avatar
      Query protocol and codebase for log type record (#2449) · df362b18
      wu-sheng 提交于
      * New query graphql protocol added.
      
      * Finish a new metric, log(abstract) with HTTP Access Log.
      
      * Submit the draft codes of logs.
      
      * Remove @IDColumn
      
      * Fix startup issue.
      
      * Add http_access_log to disable list.
      
      * Finish a wrong service implementation.
      
      * Add trace id in log query condition and result.
      
      * Fix style
      df362b18
  19. 12 2月, 2019 1 次提交
    • wu-sheng's avatar
      Support Top sql (#2239) · 4babd6ff
      wu-sheng 提交于
      * The prototype of topN sql worker.
      
      * Add scope and new manual dispatcher.
      
      * no message
      
      * Finish topN persistence codes. Not test yet. And query have not added.
      
      * Finish the top n database statement persistent.
      
      * Support different slow thresholds for different db types.
      
      * Fix wrong db default threshold
      
      * Finish new query protocol binding.
      
      * Provide query empty implementation and sync ui.
      
      * Finish all codes, hope it works :P
      I will run the tests tonight.
      
      * Fix
      
      * Fix
      
      * Fix a startup issue.
      
      * Add time bucket to persistent.
      
      * Fix wrong query result column name.
      
      * Fix Database query.
      
      * Fix checkstyle.
      
      * Fix wrong order logic, and add a test case to verify, to fix https://github.com/apache/incubator-skywalking/pull/2239#discussion_r255948249
      4babd6ff
  20. 20 1月, 2019 1 次提交
  21. 08 1月, 2019 1 次提交
    • wu-sheng's avatar
      Implement Prometheus to oap backend telemetry (#2133) · 6499d4f5
      wu-sheng 提交于
      * Finish the basic codes of telemetry.
      
      * Add many telemetry in oap.
      
      * Fix a test case.
      
      * Finish all telemetry metric.
      
      * Fix format.
      
      * Make telemetry works.
      
      * Support JVM metrics.
      
      * Add doc for telemetry.
      
      * Fix typo.
      
      * Fix #2135
      6499d4f5
  22. 28 11月, 2018 1 次提交