You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by kd...@apache.org on 2019/11/10 14:49:30 UTC

[skywalking-rocketbot-ui] branch topology_to_enhance_honeycomb_button updated (c49ab3d -> 112c503)

This is an automated email from the ASF dual-hosted git repository.

kdump pushed a change to branch topology_to_enhance_honeycomb_button
in repository https://gitbox.apache.org/repos/asf/skywalking-rocketbot-ui.git.


    from c49ab3d  topology to enhance honeycomb button
     add 06d9898  Metrics Comparison View (#180)
     add 112c503  Merge remote-tracking branch 'upstream/master' into topology_to_enhance_honeycomb_button

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 src/assets/lang/en.ts                              |   6 +
 src/assets/lang/zh.ts                              |   6 +
 src/components/index.ts                            |   3 +-
 src/components/rk-echarts.vue                      |   4 +-
 src/components/rk-header.vue                       |   6 +
 .../topo-select.vue => components/rk-select.vue}   |  50 +--
 src/router.ts                                      |   5 +
 src/store/modules/comparison/comparison-const.ts   |  77 ++++
 src/store/modules/comparison/comparison-store.ts   | 498 +++++++++++++++++++++
 .../modules/comparison/index.ts}                   |   4 +-
 src/store/modules/dashboard/fragments/database.ts  |  42 +-
 .../modules/dashboard/modules/dashboard-data.ts    |  72 +--
 src/store/mutation-types.ts                        |  11 +
 src/types/comparison.d.ts                          |  52 +++
 src/utils/queryChartData.ts                        |  87 ++++
 .../chart-bar.vue => comparison/chart-line.vue}    |  47 +-
 .../components/comparison/comparison-charts.vue}   |  37 +-
 .../components/comparison/comparison-config.vue    | 172 +++++++
 .../components/comparison/index.ts}                |   7 +-
 src/views/containers/comparison.vue                |  69 +++
 21 files changed, 1110 insertions(+), 146 deletions(-)
 copy src/{views/components/topology/topo-select.vue => components/rk-select.vue} (73%)
 create mode 100644 src/store/modules/comparison/comparison-const.ts
 create mode 100644 src/store/modules/comparison/comparison-store.ts
 copy src/{types.d.ts => store/modules/comparison/index.ts} (91%)
 create mode 100644 src/types/comparison.d.ts
 create mode 100644 src/utils/queryChartData.ts
 copy src/views/components/{dashboard/charts/chart-bar.vue => comparison/chart-line.vue} (78%)
 copy src/{components/rk-footer-time.vue => views/components/comparison/comparison-charts.vue} (59%)
 create mode 100644 src/views/components/comparison/comparison-config.vue
 copy src/{graph/query/alarm.ts => views/components/comparison/index.ts} (83%)
 create mode 100644 src/views/containers/comparison.vue