1. 31 10月, 2022 1 次提交
  2. 28 10月, 2022 1 次提交
  3. 19 9月, 2022 1 次提交
    • P
      Support analyzing cache related spans to provide metrics and slow commands for... · bbe0a7c4
      pg.yang 提交于
      Support analyzing cache related spans to provide metrics and slow commands for cache services from client side. (#9622)
      
      * Support analyzing cache related spans to provide metrics and slow commands for cache services from client side
      * Optimize virtual database, fix dynamic config watcher NPE when default value is null 
      * [UI] Add virtual cache dashboard
      bbe0a7c4
  4. 13 7月, 2022 1 次提交
  5. 04 7月, 2022 1 次提交
  6. 10 6月, 2022 1 次提交
  7. 06 5月, 2022 1 次提交
  8. 29 4月, 2022 1 次提交
  9. 14 4月, 2022 1 次提交
  10. 20 3月, 2022 1 次提交
  11. 10 3月, 2022 1 次提交
    • wu-sheng's avatar
      [Breaking Change] Deprecate `All` from OAL source. (#8656) · d1f5b58f
      wu-sheng 提交于
      * Add source `event` generated metrics to SERVICE_CATALOG_NAME catalog.
      * [Breaking Change] Deprecate `All` from OAL source.
      * [Breaking Change] Remove `SRC_ALL: 'All'` from OAL grammar tree.
      * Remove `all_heatmap` and `all_percentile` metrics.
      d1f5b58f
  12. 03 3月, 2022 1 次提交
  13. 16 2月, 2022 1 次提交
  14. 21 1月, 2022 1 次提交
  15. 07 7月, 2021 1 次提交
  16. 05 2月, 2021 1 次提交
  17. 14 1月, 2021 1 次提交
  18. 19 11月, 2020 1 次提交
  19. 31 8月, 2020 1 次提交
  20. 22 7月, 2020 1 次提交
  21. 01 6月, 2020 1 次提交
  22. 11 5月, 2020 1 次提交
    • 静夜思朝颜's avatar
      Alarm support multiple scope (#4769) · 749af3e0
      静夜思朝颜 提交于
      * Support service relation and database access alarm
      
      * support service instance relation alarm
      
      * support endpoint relation alarm
      
      * document and format the name
      
      * resolve issues
      
      * add database access and endpoint relation rule example
      
      * resolve code format
      
      * remove unnecessary getter and setter package declare
      
      * remove unnecessary fields
      Co-authored-by: NMrproliu <mrproliu@lagou.com>
      749af3e0
  23. 08 5月, 2020 1 次提交
  24. 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
  25. 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
  26. 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
  27. 04 3月, 2020 1 次提交
  28. 13 2月, 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. 18 1月, 2020 1 次提交
    • 静夜思朝颜's avatar
      Sniffer processing profile task and report status and snapshot (#4220) · 90f3c4de
      静夜思朝颜 提交于
      * sniffer processing profile task and report status and snapshot
      
      * resolve testServiceDependencies test case error, use same register with `TraceSegmentServiceClient`
      
      * resolve names
      
      * change profile to single one thread run.
      
      * 1. change to the ArrayList, because known the max size
      2. rename issue resolved
      
      * add profiling status enum
      
      * change sniffer use full name issue
      
      * 1. remove `prepareProfiling` method, build profiling status when construct `TracingContext`
      2. add `TracingThreadListenerManager`, notify when tracing main thread finish
      3. change ProfileThread start when process new profile task
      
      * remove unnecessary getter
      
      * add test assert error message
      
      * adding `AgentServiceRule`
      
      * revert original assert
      
      * remove unnecessary getter
      
      * resolve issues
      
      * reduce findService invoke
      
      * resolve style error
      
      * recheck profiling when change first span operatin name
      
      * resolve issues
      1. remove `ContextManager#profilingRecheck`, only check on `TracingContext`
      2. rename comments
      3. resolve volatile array setting
      
      * remove article link
      
      * add `ProfileTask#maxSamplingCount` check
      
      * resolve conflict (Downstream -> Commands)
      
      * 1. change profilingSegmentSlots init on construct
      2. if is profiling, recheck dont need to stop
      3. total profiling count increment on first dump
      
      * remove unused return val
      
      * remove some `@param` and `@return`
      
      * add profile task check result data bean
      
      * change profiler slot to `AtomicReferenceArray`
      
      * resolved java doc error
      
      * fix doc error, remove meaningless descriptions
      
      * resolve missed profile receiver on oap starter
      
      * resolve method invoke error
      Co-authored-by: wu-sheng's avatar吴晟 Wu Sheng <wu.sheng@foxmail.com>
      Co-authored-by: Nkezhenxu94 <kezhenxu94@163.com>
      90f3c4de
  31. 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
  32. 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
  33. 07 8月, 2019 1 次提交
  34. 18 7月, 2019 1 次提交
    • wu-sheng's avatar
      All NEW OAL Runtime Engine (#3109) · 5b039e97
      wu-sheng 提交于
      * Change OAL generator tool to runtime.
      
      Step 1. change project structure. API links and maven pom.
      
      * Part of metrics class generation
      
      * Metrcis class generated.
      
      * Set up the basic structure of new OAL engine.
      
      * Finish metrics generation.
      
      * Support dispatcher generation.
      
      * Format codes.
      
      * Generate dispatcher all methods.
      
      * Implement disable in hardcode.
      
      * Clear up
      
      * Fix compile startup.
      
      * Update license and document of new OAL engine.
      
      * Fix rat.
      
      * Disable class output in default
      
      * Copy from @kezhenxu94 's test PR, https://github.com/apache/skywalking/pull/3110
      
      * Wait for the mount command to finish
      5b039e97
  35. 10 5月, 2019 1 次提交
  36. 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
  37. 02 4月, 2019 1 次提交
    • wu-sheng's avatar
      Add jaeger traces support (#2434) · ff6fb90d
      wu-sheng 提交于
      * Make Jaeger receiver works in 12450 as default.
      
      * Finish compile and codebase.
      
      * Make codes runnable.
      
      * Finish Jaeger query tests.
      
      * Add document for jaeger receiver.
      
      * Add readme.
      
      * Fix a break link.
      
      * Finish doc.
      ff6fb90d
  38. 31 3月, 2019 1 次提交
    • wu-sheng's avatar
      Support Backend acts as pure Zipkin collector (#2424) · 601b472e
      wu-sheng 提交于
      * Codebase for zipkin span persistence.
      
      * Fix missing fields in storage.
      
      * Miss the latency field.
      
      * Finish some tests.
      
      * Fix wrong latency.
      
      * Finish doc and reset application.yml
      
      * Make the description more clear.
      601b472e
  39. 21 3月, 2019 1 次提交
  40. 07 3月, 2019 1 次提交
    • wu-sheng's avatar
      Envoy metric support and a bug fix (#2321) · b4cb7e0b
      wu-sheng 提交于
      * Extend envoy metric service, scope and OAL lexer/parser.
      
      * Finish metric extension and oal.
      
      * Make test env works.
      
      * Finish test of envoy connection and memory metric.
      
      * Change document.
      
      * Finish docker compose test.
      b4cb7e0b