This basic plugin shows how the components on the Queues Stats View can be customized in numerous ways, as documented at Real-Time Queues View Programmability.
Features implemented by this plugin:
- Filter by queue name
- Taken from an existing standalone plugin - Queue Filter for Real-Time Queues View - this allows you to filter the visible list of queues, and multi-select too.
- Add a column to
QueuesDataTable
to display "Longest Active" task duration, and stylizing it in red if it exceeds a configurable threshold.- “Longest Active” task duration requires digging into the Flex insightsClient using liveQuery on the
tr-task
index - in order to find the longest active one. - NOTE: Use of liveQuery has a maximum result set of 200, and since we’ll be independently querying for active tasks on each queue, we’re limited to processing only 200 active tasks per queue at once. If you have a larger number of tasks than this in your queue, consider indicating this by means of a warning icon and hover text next to this stat.
- “Longest Active” task duration requires digging into the Flex insightsClient using liveQuery on the
- Change the style of the "Waiting" and "Longest Waiting" columns to display in red if they exceed configurable thresholds
NOTE: This implementation assumes a single channel per queue (e.g. Voice). If your queues serve multiple channels, the customization of the QueuesDataTable
columns becomes more complex - since instead of each cell being a single stat, it needs to be an HTML <ul>
element that lists the stats both at the queue level, and at the channel level.
Future Possibilities
- Include worker name for the longest active task - to help track down in Teams View
- Add a Longest Active tile to the top level
AggregatedQueuesDataTiles
section (would need to adapt to any filters too - tricky)
Twilio Flex Plugins allow you to customize the appearance and behavior of Twilio Flex. If you want to learn more about the capabilities and how to use the API, check out our Flex documentation.
Make sure you have Node.js as well as npm
. We support Node >= 10.12 (and recommend the even versions of Node). Afterwards, install the dependencies by running npm install
:
cd
# If you use npm
npm install
Next, please install the Twilio CLI by running:
brew tap twilio/brew && brew install twilio
Finally, install the Flex Plugin extension for the Twilio CLI:
twilio plugins:install @twilio-labs/plugin-flex
In order to develop locally, you can use the Twilio CLI to run the plugin locally. Using your commandline run the following from the root dirctory of the plugin.
twilio flex:plugins:start
This will automatically start up the Webpack Dev Server and open the browser for you. Your app will run on http://localhost:3000
.
When you make changes to your code, the browser window will be automatically refreshed.
Once you are happy with your plugin, you have to deploy then release the plugin for it to take affect on Twilio hosted Flex.
Run the following command to start the deployment:
twilio flex:plugins:deploy --major --changelog "Notes for this version" --description "Functionality of the plugin"
After your deployment runs you will receive instructions for releasing your plugin from the bash prompt. You can use this or skip this step and release your plugin from the Flex plugin dashboard here https://flex.twilio.com/admin/plugins
For more details on deploying your plugin, refer to the deploying your plugin guide.
Note: Common packages like React
, ReactDOM
, Redux
and ReactRedux
are not bundled with the build because they are treated as external dependencies so the plugin will depend on Flex to provide them globally.