Giter Site home page Giter Site logo

Comments (5)

adewinter avatar adewinter commented on May 1, 2024

I neglected to mark this as a feature request. Sorry!

from linux-dash.

MarioRicalde avatar MarioRicalde commented on May 1, 2024

Would love to see this, it's definitely needed, +1

from linux-dash.

tariqbuilds avatar tariqbuilds commented on May 1, 2024

This should be relatively straight forward. What command(s) should we rely on? In other words, which linux command(s) do you usually run to get that info (if you do)?

I'd like to avoid trial-and-error of commands and the consequential series of commits which litter the main branch.

from linux-dash.

koehn avatar koehn commented on May 1, 2024

This works (bash, but easily convertible to php):

#!/bin/bash

oldrx=`cat /sys/class/net/eth0/statistics/rx_bytes`
oldtx=`cat /sys/class/net/eth0/statistics/tx_bytes`

sleep 4

newrx=`cat /sys/class/net/eth0/statistics/rx_bytes`
newtx=`cat /sys/class/net/eth0/statistics/tx_bytes`

echo "tx rate: " $(( $(( newtx - oldtx )) / 4 ))
echo "rx rate: " $(( $(( newrx - oldrx )) / 4 ))

from linux-dash.

tariqbuilds avatar tariqbuilds commented on May 1, 2024

The most recent commit added a bandwidth widget which replicates @koehn 's script.

Disclaimer: this feature was just added with limited testing / improvements. That will follow.

from linux-dash.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.