Current section

43 Versions

Jump to

Compare versions

19 files changed
+540 additions
-54 deletions
  @@ -1,5 +1,10 @@
1 1 # CHANGELOG
2 2
3 + ## v0.2.6 (2020-06-03)
4 +
5 + * Support tags on summary metrics
6 + * Add supervision trees to the Applications tab
7 +
3 8 ## v0.2.5 (2020-05-22)
4 9
5 10 * Allow cross-linking of info sections
  @@ -3,52 +3,52 @@
3 3 {<<"description">>,<<"Real-time performance dashboard for Phoenix">>}.
4 4 {<<"elixir">>,<<"~> 1.7">>}.
5 5 {<<"files">>,
6 - [<<"lib">>,<<"lib/.DS_Store">>,<<"lib/phoenix">>,<<"lib/phoenix/.DS_Store">>,
6 + [<<"lib">>,<<"lib/phoenix">>,<<"lib/phoenix/live_dashboard.ex">>,
7 7 <<"lib/phoenix/live_dashboard">>,
8 + <<"lib/phoenix/live_dashboard/application.ex">>,
8 9 <<"lib/phoenix/live_dashboard/layout_view.ex">>,
9 - <<"lib/phoenix/live_dashboard/.DS_Store">>,
10 - <<"lib/phoenix/live_dashboard/system_info.ex">>,
11 - <<"lib/phoenix/live_dashboard/logger_pubsub_backend.ex">>,
12 - <<"lib/phoenix/live_dashboard/web.ex">>,
13 - <<"lib/phoenix/live_dashboard/request_logger.ex">>,
14 - <<"lib/phoenix/live_dashboard/router.ex">>,
15 - <<"lib/phoenix/live_dashboard/info">>,
16 - <<"lib/phoenix/live_dashboard/info/process_info_component.ex">>,
17 - <<"lib/phoenix/live_dashboard/info/socket_info_component.ex">>,
18 - <<"lib/phoenix/live_dashboard/info/port_info_component.ex">>,
19 - <<"lib/phoenix/live_dashboard/info/ets_info_component.ex">>,
20 - <<"lib/phoenix/live_dashboard/components">>,
21 - <<"lib/phoenix/live_dashboard/components/modal_component.ex">>,
22 - <<"lib/phoenix/live_dashboard/components/title_bar_component.ex">>,
23 - <<"lib/phoenix/live_dashboard/components/color_bar_component.ex">>,
24 - <<"lib/phoenix/live_dashboard/components/card_usage_component.ex">>,
25 - <<"lib/phoenix/live_dashboard/components/color_bar_legend_component.ex">>,
26 - <<"lib/phoenix/live_dashboard/components/chart_component.ex">>,
27 - <<"lib/phoenix/live_dashboard/live">>,
28 - <<"lib/phoenix/live_dashboard/live/menu_live.ex">>,
29 - <<"lib/phoenix/live_dashboard/live/home_live.ex">>,
30 - <<"lib/phoenix/live_dashboard/live/os_mon_live.ex">>,
31 - <<"lib/phoenix/live_dashboard/live/sockets_live.ex">>,
32 - <<"lib/phoenix/live_dashboard/live/.DS_Store">>,
33 - <<"lib/phoenix/live_dashboard/live/ports_live.ex">>,
34 - <<"lib/phoenix/live_dashboard/live/applications_live.ex">>,
35 - <<"lib/phoenix/live_dashboard/live/ets_live.ex">>,
36 - <<"lib/phoenix/live_dashboard/live/processes_live.ex">>,
37 - <<"lib/phoenix/live_dashboard/live/request_logger_live.ex">>,
38 - <<"lib/phoenix/live_dashboard/live/metrics_live.ex">>,
10 + <<"lib/phoenix/live_dashboard/telemetry_listener.ex">>,
39 11 <<"lib/phoenix/live_dashboard/templates">>,
40 12 <<"lib/phoenix/live_dashboard/templates/layout">>,
41 13 <<"lib/phoenix/live_dashboard/templates/layout/live.html.leex">>,
42 14 <<"lib/phoenix/live_dashboard/templates/layout/dash.html.eex">>,
43 - <<"lib/phoenix/live_dashboard/application.ex">>,
44 - <<"lib/phoenix/live_dashboard/telemetry_listener.ex">>,
15 + <<"lib/phoenix/live_dashboard/info">>,
16 + <<"lib/phoenix/live_dashboard/info/ets_info_component.ex">>,
17 + <<"lib/phoenix/live_dashboard/info/socket_info_component.ex">>,
18 + <<"lib/phoenix/live_dashboard/info/process_info_component.ex">>,
19 + <<"lib/phoenix/live_dashboard/info/port_info_component.ex">>,
20 + <<"lib/phoenix/live_dashboard/info/app_info_component.ex">>,
21 + <<"lib/phoenix/live_dashboard/web.ex">>,
45 22 <<"lib/phoenix/live_dashboard/helpers">>,
46 - <<"lib/phoenix/live_dashboard/helpers/table_helpers.ex">>,
47 23 <<"lib/phoenix/live_dashboard/helpers/live_helpers.ex">>,
48 - <<"lib/phoenix/live_dashboard.ex">>,<<"priv">>,<<"priv/static">>,
49 - <<"priv/static/css">>,<<"priv/static/css/app.css">>,<<"priv/static/js">>,
50 - <<"priv/static/js/app.js.LICENSE.txt">>,<<"priv/static/js/app.js">>,
51 - <<"CHANGELOG.md">>,<<"LICENSE.md">>,<<"mix.exs">>,<<"README.md">>]}.
24 + <<"lib/phoenix/live_dashboard/helpers/table_helpers.ex">>,
25 + <<"lib/phoenix/live_dashboard/router.ex">>,
26 + <<"lib/phoenix/live_dashboard/components">>,
27 + <<"lib/phoenix/live_dashboard/components/title_bar_component.ex">>,
28 + <<"lib/phoenix/live_dashboard/components/color_bar_legend_component.ex">>,
29 + <<"lib/phoenix/live_dashboard/components/modal_component.ex">>,
30 + <<"lib/phoenix/live_dashboard/components/chart_component.ex">>,
31 + <<"lib/phoenix/live_dashboard/components/color_bar_component.ex">>,
32 + <<"lib/phoenix/live_dashboard/components/card_usage_component.ex">>,
33 + <<"lib/phoenix/live_dashboard/system_info.ex">>,
34 + <<"lib/phoenix/live_dashboard/request_logger.ex">>,
35 + <<"lib/phoenix/live_dashboard/logger_pubsub_backend.ex">>,
36 + <<"lib/phoenix/live_dashboard/reingold_tifford.ex">>,
37 + <<"lib/phoenix/live_dashboard/live">>,
38 + <<"lib/phoenix/live_dashboard/live/ets_live.ex">>,
39 + <<"lib/phoenix/live_dashboard/live/os_mon_live.ex">>,
40 + <<"lib/phoenix/live_dashboard/live/applications_live.ex">>,
41 + <<"lib/phoenix/live_dashboard/live/menu_live.ex">>,
42 + <<"lib/phoenix/live_dashboard/live/ports_live.ex">>,
43 + <<"lib/phoenix/live_dashboard/live/metrics_live.ex">>,
44 + <<"lib/phoenix/live_dashboard/live/sockets_live.ex">>,
45 + <<"lib/phoenix/live_dashboard/live/home_live.ex">>,
46 + <<"lib/phoenix/live_dashboard/live/processes_live.ex">>,
47 + <<"lib/phoenix/live_dashboard/live/request_logger_live.ex">>,<<"priv">>,
48 + <<"priv/static">>,<<"priv/static/css">>,<<"priv/static/css/app.css">>,
49 + <<"priv/static/js">>,<<"priv/static/js/app.js">>,
50 + <<"priv/static/js/app.js.LICENSE.txt">>,<<"CHANGELOG.md">>,<<"LICENSE.md">>,
51 + <<"mix.exs">>,<<"README.md">>]}.
52 52 {<<"licenses">>,[<<"MIT">>]}.
53 53 {<<"links">>,
54 54 [{<<"github">>,
  @@ -70,4 +70,4 @@
70 70 {<<"optional">>,false},
71 71 {<<"repository">>,<<"hexpm">>},
72 72 {<<"requirement">>,<<"~> 2.14.1 or ~> 2.15">>}]]}.
73 - {<<"version">>,<<"0.2.5">>}.
73 + {<<"version">>,<<"0.2.6">>}.
Loading more files…