https://github.com/elixir-webrtc/ex_webrtc_dashboard
ExWebRTC statistics visualization for the Phoenix LiveDashboard
https://github.com/elixir-webrtc/ex_webrtc_dashboard
dashboard elixir phoenix webrtc
Last synced: about 2 months ago
JSON representation
ExWebRTC statistics visualization for the Phoenix LiveDashboard
- Host: GitHub
- URL: https://github.com/elixir-webrtc/ex_webrtc_dashboard
- Owner: elixir-webrtc
- License: apache-2.0
- Created: 2024-01-21T18:44:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-07T17:37:19.000Z (5 months ago)
- Last Synced: 2025-04-20T15:44:30.517Z (2 months ago)
- Topics: dashboard, elixir, phoenix, webrtc
- Language: Elixir
- Homepage:
- Size: 8.41 MB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExWebRTCDashboard
[](https://hex.pm/packages/ex_webrtc_dashboard)
[](https://hexdocs.pm/ex_webrtc_dashboard)[ExWebRTC](https://github.com/elixir-webrtc/ex_webrtc) statistics visualization for the [Phoenix LiveDashboard](https://github.com/phoenixframework/phoenix_live_dashboard).
![]()
## Installation
1. Enable `LiveDashboard` by following these [instructions](https://github.com/phoenixframework/phoenix_live_dashboard?tab=readme-ov-file#installation).
In most cases you can skip this step as `Phoenix` comes with `LiveDashboard` enabled by default.2. Add `:ex_webrtc_dashboard` to your list of dependencies
```elixir
def deps do
[
{:ex_webrtc_dashboard, "~> 0.8.0"}
]
end
```3. Add `ExWebRTCDashboard` as an additional `LiveDashboard` page
```elixir
live_dashboard "/dashboard",
additional_pages: [exwebrtc: ExWebRTCDashboard]
```That's it!
`ExWebRTCDashboard` will automatically discover all of your peer connections and visualize their statistics.