Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-10T17:08:34.000Z (5 months ago)
- Last Synced: 2024-09-10T19:13:09.507Z (5 months ago)
- Topics: dashboard, elixir, phoenix, webrtc
- Language: Elixir
- Homepage:
- Size: 8.39 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExWebRTCDashboard
[![Hex.pm](https://img.shields.io/hexpm/v/ex_webrtc_dashboard.svg)](https://hex.pm/packages/ex_webrtc_dashboard)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](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.6.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.