1. 08 3月, 2019 2 次提交
  2. 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
  3. 01 3月, 2019 1 次提交
  4. 23 2月, 2019 1 次提交
  5. 20 2月, 2019 1 次提交
  6. 19 2月, 2019 1 次提交
  7. 18 2月, 2019 2 次提交
  8. 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
  9. 27 1月, 2019 1 次提交
    • L
      Database metrics provided. (#2025) · f7ca2672
      Lemon 提交于
      * Add Database source
      
      * Add DatabaseSource source and database_* script for oal
      
      * Enable Database_Indicator
      
      * Add file license
      
      * Rename DatabaseService to ClientDatabase. In the future, we may have real database server monitoring.
      
      * Add query database from H2
      
      * refactor
      
      * update submodule
      
      * refactor
      
      * Fix style
      
      * Fix: unknown tag error
      
      * fix checkstyle
      f7ca2672
  10. 23 1月, 2019 1 次提交
  11. 21 1月, 2019 1 次提交
    • Improve buffer reader speed. (#2188) · 9810c5e3
      彭勇升 pengys 提交于
      * 1. Sleep 500 milliseconds after a batch re-call finish.
      2. Re-create register lock index when the system property named debug is setting.
      3. Get the register inventory before lock to avoid increment the sequence but not use.
      4. Return the exchange flag after all the references and spans in one segment parsed to reduce the number of segment parse.
      5. Put the not exchanged segment into a collection then try to exchange no more than 10 times because of the exchange is asynchronous.
      6. Cache the segment object to avoid repeated deserialization.
      
      #2185
      
      * #2185
      1. Sleep 500 milliseconds after a batch re-call finish.
      2. Re-create register lock index when the system property named debug is setting.
      3. Get the register inventory before lock to avoid increment the sequence but not use.
      9810c5e3
  12. 20 1月, 2019 1 次提交
  13. 18 1月, 2019 1 次提交
    • wu-sheng's avatar
      GA tagged, move to 6.1 (#2180) · 5a7eb565
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v6.0.0-GA
      
      * [maven-release-plugin] prepare for next development iteration
      5a7eb565
  14. 15 1月, 2019 1 次提交
  15. 13 1月, 2019 1 次提交
  16. 11 1月, 2019 1 次提交
  17. 10 1月, 2019 1 次提交
    • wu-sheng's avatar
      Provide grafana settings for telemetry (#2138) · 5f57e561
      wu-sheng 提交于
      * Change a label name for  sw instance to avoid confict.
      
      * Fix a wrong metric name.
      
      * Fix too many counter instances.
      
      * Set uptime to second.
      
      * Fix format.
      
      * Fix format
      
      * Remove two unnecessary counter.
      
      * Provide grafana dashboard settings and remove unnecessary metric.
      
      * Provide a simple UI brief doc. Fix #2137
      5f57e561
  18. 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
  19. 23 12月, 2018 1 次提交
  20. 18 12月, 2018 1 次提交
  21. 13 12月, 2018 2 次提交
  22. 06 12月, 2018 1 次提交
  23. 03 12月, 2018 1 次提交
  24. 29 11月, 2018 1 次提交
    • wu-sheng's avatar
      Support backend sampling (#1977) · 5577f67d
      wu-sheng 提交于
      * Support sampling trace at server side and keep metric right.
      
      * Add a trace sampling document
      
      * Fix wrong default value.
      
      * Fix document issue.
      
      * Fix assemble issue.
      
      * Fix wrong settings and doc.
      5577f67d
  25. 28 11月, 2018 1 次提交
  26. 25 11月, 2018 1 次提交
  27. 22 11月, 2018 1 次提交
    • gRPC client usage improve (#1946) · 7c8a683c
      彭勇升 pengys 提交于
      * Close the clients which are unreachable.
      Remote client manager test case and comments.
      
      * Test the GRPCRemote client.
      
      * 1. Catch the throwable for onComplete method cause of it will throw exception when connection lost.
      2. Check the gRPC channel state, send message when state is ready, wait 5 second when state is not ready.
      
      Notice: gRPC channel getState with true parameter will trigger reconnect operation.
      
      * gRPC client will reconnect to the server when network recorvered.
      
      * Recovery application.yml
      
      * Recovery proto module commit id.
      
      * no message
      
      * Fixed compile error.
      7c8a683c
  28. 21 11月, 2018 2 次提交
    • 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
    • Fixed a bug which the segment record index does not delete the history data... · 0ae26f8e
      彭勇升 pengys 提交于
      Fixed a bug which the segment record index does not delete the history data because of the saving time bucket is a second format date, but the query delete is minute format date. (#1943)
      
      #1942
      0ae26f8e
  29. 18 11月, 2018 2 次提交
  30. 12 11月, 2018 1 次提交
    • wu-sheng's avatar
      New v2 header with header key `sw6` (#1894) · 645a9a57
      wu-sheng 提交于
      * Add some supports to sw6 header. Break many test cases because I turn sw3 default off. For sure, you could open in agent.conf.  FYI @peng-yongsheng @ascrutae
      
      * Fix CI and make user cases still work under v1 header.
      
      * Support BASE64 in v2 header and make entryOperationName and parentOperationName optional in ContextCarrier or ContextSnapshot
      
      * Fix CI.
      
      * @peng-yongsheng This is backend related, please pay attention.
      
      * Fix the carrier item order is incorrect (#1903)
      645a9a57
  31. 06 11月, 2018 1 次提交
    • wu-sheng's avatar
      Sync 6.0.0-alpha release and version up to beta. (#1883) · 72a39e1f
      wu-sheng 提交于
      * Lock oracle and resin plugins version.
      
      * Move resin and oracle plugin to openskywalking
      
      * Restore submodule active.
      
      * Add another submodule active command.
      
      * Remove the wrong test cases in release and fix some doc issues.
      
      * [maven-release-plugin] prepare release v6.0.0-alpha
      
      * [maven-release-plugin] prepare for next development iteration
      
      * Fix some doc
      72a39e1f
  32. 03 11月, 2018 1 次提交
  33. 02 11月, 2018 2 次提交
  34. 01 11月, 2018 1 次提交
    • wu-sheng's avatar
      Bug fix (#1857) · 13f88259
      wu-sheng 提交于
      * Fix mesh receiver doesn't update heartbeat.
      
      * Fix bug of mesh heartbeat and rest receiver.
      
      * Fix issue: opencensus is included in agent without shade. @tuohai666
      13f88259