Questions tagged [dashing]

A Sinatra based framework for building dashboards in simple way, it uses premade widgets, or fully create your own with scss, html, and coffeescript.

Dashing is a Sinatra based framework that lets you build dashboards in a simple way, it uses premade widgets, or fully create your own with scss, html, and coffeescript.

Questions tagged should also be tagged .


Resources


Reated tags

241 questions
0
votes
1 answer

Troubleshooting a dashing widget

I have created a widget, to display the server load. However, it doesn't display the server load. dashboard.erb
  • Gokulnath Kumar
    • 105
    • 1
    • 3
    • 17
  • 0
    votes
    1 answer

    Shopify Dashing Widget

    I am using shopify dashing for couple of our projects. Just wanted to check whether is there a possibility to use blueocean pipeline stages inside the widget? I have checked for the possibility but unfortunately I haven't find any clue. Just wanted…
    Gokulnath Kumar
    • 105
    • 1
    • 3
    • 17
    0
    votes
    2 answers

    Smashing (dashing) not sending events on ubuntu

    My smashing dashboard works fine on my Mac, but when I run on an EC2 instance running Ubuntu 16.04, the events don't update the dashboard until I exit the dashboard. I read somewhere to try rackup -p 3030 -s webrick ...but no luck. Any ideas?
    Hogsmill
    • 1,574
    • 13
    • 21
    0
    votes
    0 answers

    Send data via PHP CURL?

    I'm trying to send some data to Dashing which is a dashboard application. To do this you have to CURL for example. url -d '{ "auth_token": "YOUR_AUTH_TOKEN", "text": "Hey, Look what I can do!" }' \http://127.0.0.1:3030/widgets/welcome This will…
    0
    votes
    1 answer

    Testing a job in Dashing

    I am building an application with Dashing/Smashing right now, and I am using rspec to test my code. However, I cannot figure out how to check that send_event is called. I have tried expect(Sinatra::Application).to receive(:send_event).twice and…
    user9915467
    0
    votes
    1 answer

    How do you know what type of data a Dashing widget is listening for as argument?

    Providing data to widgets is done in Ruby jobs using send_event(widget_id, json_formatted_data). As it seems each type of widget expects specific json format to process the data. For example, Meter Widget expects something like…
    maometto
    • 3
    • 3
    0
    votes
    0 answers

    Dashing-JS "Hello World" Demo

    I am attempting to work with Dashing-JS, a port of a Sinatra based framework project in Ruby, Dashing.IO, to Javascript/Node. Essentially I have the core packages and dependencies for Dashing-JS configured; however, when attempting to run just the…
    0
    votes
    1 answer

    rails 5 adding menu to dashing-rails layout

    What is the best way to be able to add a similar layout to dashing dashboard, like we have in out application. I tried to add the same materalize layout I use throughout my application and it seems to be breaking on each link_to which I have in my…
    Qaiser Wali
    • 358
    • 5
    • 21
    0
    votes
    1 answer

    Preventing update flicker of a Dashing Widget

    I have created a number of widgets for my Dashboard that need to update periodically. When they do this the widget items flicker for a second which I believe will be quite distracting when the dashboard is deployed on a large TV monitor on the wall.…
    0
    votes
    1 answer

    Update Table via cURL in Dashing dashboard

    For the last few weeks I have been working on sending data to my ruby based Smashing dashboard. I have been able to update widgets with cURL on the dashboard except for the Table I installed. It can update itself via the Ruby code that comes with…
    regor2
    • 107
    • 1
    • 9
    0
    votes
    1 answer

    Format Array to feed into Smash Table Widget

    I am creating a Smashing Dashboard that is required to feed information from an xlsx file into a table on the dashboard. This system is running on a Raspberry Pi. I am able to read from the spreadsheet using the roo gem, this works fine. However the…
    0
    votes
    2 answers

    JSON Summarize for Dashing List

    I am creating a Dashing job that pulls down some data from an API (this runs Ruby) SCHEDULER.every '15m', :first_in => 0 do |job| url = "https://blah.com response = RestClient.get(url, {:Authorization => 'blahblah'}) current_timelist =…
    Chris Wood
    • 35
    • 6
    0
    votes
    1 answer

    Customized widget not showing up in dashing Dashboard

    I created my own widget but I am unable to view that widget but all the other predefined widgets are showing up in the screen. Whatever widget I install new I am unable too see it in dashboard.
    Vignesh
    • 11
    • 1
    • 3
    0
    votes
    1 answer

    Add route to dashing sinatra application?

    I'm trying to add a route to my dashing application that will receive data from a webhook. I tried using the solution here, and while that did create the route, it broke the dashing dashboard at '/sample'. Any ideas? Here is my lib/app.rb: require…
    0
    votes
    2 answers

    Pulling data from MySQL to display on dashboard using python django-dashing

    I was trying to implement a dashboard by following the instructions of https://github.com/talpor/django-dashing/ using django-dashing. So far I have successfully customised my widget and displayed with some random data on my own web server, while I…
    loktherhal
    • 43
    • 8