JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 14.11.2020, 07:20
lennysworld lennysworld is offline
Baby Loader
 
Join Date: Sep 2019
Posts: 6
Default Downloadvoluem anzeigen

Hi zusammen,

gibt es die Möglichkeit, z.B. das gesamte Downloadvolumen für diesen Monat anzuzeigen, also wieviel ich heruntergeladen habe, z.B. gesamt 351GB oder so??

Danke im Voraus.
Reply With Quote
  #2  
Old 14.11.2020, 18:11
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

Eine Übersicht über das Downloadvolumen über einen bestimmten Zeitraum gibt es nicht. Lediglich die Ansicht der Downloads unterhalb der Liste welche Daten wie Downloadgröße und bereits heruntergeladene Datenmenge angezeigt, jedoch ohne Bezug auf Zeit. Diese Ansicht kannst du unten rechts in der Ecke (beim Speed Limit) die Downloadübersicht an/deaktivieren.

Du könntest über Eventscripter, siehe https://board.jdownloader.org/showthread.php?t=70525 evtl eine Art TrafficLog erstellen, hier am besten mal mgpai nach Rat/Hilfe fragen oder spezielle Tools nehmen die genau für solche Auswertung erstellt wurden
__________________
JD-Dev & Server-Admin
Reply With Quote
  #3  
Old 16.11.2020, 10:44
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Eventscripter script to display monthly volume, based on FINISHED DATE of links which CURRENTLY EXIST in the download list.

Code:
/*
    Get download volume for current month
    Trigger: Toolbar Button Pressed
    Customize main toolbar > Add a new 'Eventscripter Trigger' button > Rename it to "Display download volume" (without quotes, case-sensitive) > Change Icon (optional)
*/

if (name == "Display download volume") {
    var date = new Date(),
        date = new Date(date.getFullYear(), date.getMonth(), 1),
        total = 0;

    getAllDownloadLinks().forEach(function(link) {
        if (link.finishedDate > date) {
            total += link.bytesTotal;
        }
    })

    total = (total / 1e9).toFixed(2);
    alert("Downloads FINISHED during the current month: " + total + " GB");
}
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 10:55.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.