Current section
43 Versions
Jump to
Current section
43 Versions
Compare versions
30
files changed
+1338
additions
-338
deletions
| @@ -1,5 +1,11 @@ | |
| 1 1 | # CHANGELOG |
| 2 2 | |
| 3 | + ## v0.2.0 (2020-04-22) |
| 4 | + |
| 5 | + * Add "Ports" page |
| 6 | + * Add "Sockets" page |
| 7 | + * Add "ETS" page |
| 8 | + |
| 3 9 | ## v0.1.1 (2020-04-18) |
| 4 10 | |
| 5 11 | * Respect script_name on dashboard socket url |
| @@ -14,6 +14,12 @@ LiveDashboard provides real-time performance monitoring and debugging tools for | |
| 14 14 | |
| 15 15 | * Processes - See, filter, and search processes in your application |
| 16 16 | |
| 17 | + * Ports - See, filter, and search ports (responsible for I/O) in your application |
| 18 | + |
| 19 | + * Sockets - See, filter, and search sockets (responsible for tcp/udp) in your application |
| 20 | + |
| 21 | + * ETS - See, filter, and search ETS tables (in-memory storage) in your application |
| 22 | + |
| 17 23 | The dashboard also works across nodes. If your nodes are connected via Distributed Erlang, then you can access information from node B while accessing the dashboard on node A. |
| 18 24 | |
| 19 25 |  |
| @@ -3,7 +3,8 @@ | |
| 3 3 | {<<"description">>,<<"Real-time performance dashboard for Phoenix">>}. |
| 4 4 | {<<"elixir">>,<<"~> 1.7">>}. |
| 5 5 | {<<"files">>, |
| 6 | - [<<"lib">>,<<"lib/phoenix">>,<<"lib/phoenix/live_dashboard">>, |
| 6 | + [<<"lib">>,<<"lib/.DS_Store">>,<<"lib/phoenix">>,<<"lib/phoenix/.DS_Store">>, |
| 7 | + <<"lib/phoenix/live_dashboard">>, |
| 7 8 | <<"lib/phoenix/live_dashboard/layout_view.ex">>, |
| 8 9 | <<"lib/phoenix/live_dashboard/.DS_Store">>, |
| 9 10 | <<"lib/phoenix/live_dashboard/system_info.ex">>, |
| @@ -15,20 +16,29 @@ | |
| 15 16 | <<"lib/phoenix/live_dashboard/live/menu_live.ex">>, |
| 16 17 | <<"lib/phoenix/live_dashboard/live/modal_component.ex">>, |
| 17 18 | <<"lib/phoenix/live_dashboard/live/home_live.ex">>, |
| 19 | + <<"lib/phoenix/live_dashboard/live/sockets_live.ex">>, |
| 20 | + <<"lib/phoenix/live_dashboard/live/.DS_Store">>, |
| 21 | + <<"lib/phoenix/live_dashboard/live/ports_live.ex">>, |
| 18 22 | <<"lib/phoenix/live_dashboard/live/process_info_component.ex">>, |
| 19 | - <<"lib/phoenix/live_dashboard/live/table_helpers.ex">>, |
| 23 | + <<"lib/phoenix/live_dashboard/live/socket_info_component.ex">>, |
| 24 | + <<"lib/phoenix/live_dashboard/live/ets_live.ex">>, |
| 25 | + <<"lib/phoenix/live_dashboard/live/port_info_component.ex">>, |
| 20 26 | <<"lib/phoenix/live_dashboard/live/processes_live.ex">>, |
| 21 27 | <<"lib/phoenix/live_dashboard/live/request_logger_live.ex">>, |
| 22 28 | <<"lib/phoenix/live_dashboard/live/system_limit_component.ex">>, |
| 29 | + <<"lib/phoenix/live_dashboard/live/ets_info_component.ex">>, |
| 23 30 | <<"lib/phoenix/live_dashboard/live/chart_component.ex">>, |
| 24 31 | <<"lib/phoenix/live_dashboard/live/metrics_live.ex">>, |
| 25 | - <<"lib/phoenix/live_dashboard/helpers.ex">>, |
| 26 32 | <<"lib/phoenix/live_dashboard/templates">>, |
| 27 33 | <<"lib/phoenix/live_dashboard/templates/layout">>, |
| 28 34 | <<"lib/phoenix/live_dashboard/templates/layout/live.html.leex">>, |
| 29 35 | <<"lib/phoenix/live_dashboard/templates/layout/dash.html.eex">>, |
| 30 36 | <<"lib/phoenix/live_dashboard/application.ex">>, |
| 31 37 | <<"lib/phoenix/live_dashboard/telemetry_listener.ex">>, |
| 38 | + <<"lib/phoenix/live_dashboard/helpers">>, |
| 39 | + <<"lib/phoenix/live_dashboard/helpers/table_helpers.ex">>, |
| 40 | + <<"lib/phoenix/live_dashboard/helpers/live_helpers.ex">>, |
| 41 | + <<"lib/phoenix/live_dashboard/helpers/view_helpers.ex">>, |
| 32 42 | <<"lib/phoenix/live_dashboard.ex">>,<<"priv">>,<<"priv/static">>, |
| 33 43 | <<"priv/static/css">>,<<"priv/static/css/app.css">>,<<"priv/static/js">>, |
| 34 44 | <<"priv/static/js/app.js.LICENSE.txt">>,<<"priv/static/js/app.js">>, |
| @@ -54,4 +64,4 @@ | |
| 54 64 | {<<"optional">>,false}, |
| 55 65 | {<<"repository">>,<<"hexpm">>}, |
| 56 66 | {<<"requirement">>,<<"~> 2.14.1 or ~> 2.15">>}]]}. |
| 57 | - {<<"version">>,<<"0.1.1">>}. |
| 67 | + {<<"version">>,<<"0.2.0">>}. |
Loading more files…