web-dev-qa-db-ja.com

ウィンドウとアプリケーションの使用状況を時間追跡するソフトウェアはありますか?

アクティビティの時間を記録し、レポートを提供するソフトウェアはありますか?フォーカスされたウィンドウとウィンドウタイトルに基づきます。レポートには、特定のウィンドウに費やされた時間とそのタイトルのみが表示されます。

Application   Title                             Time
Firefox       Ask Ubuntu - Mozilla Firefox      5:58
10
ambi

編集:スクリプトのバージョンソートされたレポート付きが見つかりました here


スクリプトを書くのはいつも楽しいです!

以下のスクリプトは、次のような出力(レポート)を生成します。

------------------------------------------------------------
nautilus
0:00:05 (3%)
------------------------------------------------------------
   0:00:05 (3%)     .usagelogs
------------------------------------------------------------
firefox
0:01:10 (36%)
------------------------------------------------------------
   0:00:05 (3%)     The Asker or the Answerer? - Ask Ubuntu Meta - Mozilla Firefox
   0:00:15 (8%)     scripts - Is there software which time- tracks window & application usage? - Ask Ubuntu - Mozilla Firefox
   0:00:10 (5%)     Ask Ubuntu - Mozilla Firefox
   0:00:15 (8%)     Why is a one line non-understandable answer used as review audit? - Ask Ubuntu Meta - Mozilla Firefox
   0:00:20 (10%)    bash - How to detect the number of opened terminals by the user - Ask Ubuntu - Mozilla Firefox
   0:00:05 (3%)     BlueGriffon - Mozilla Firefox
------------------------------------------------------------
gedit
0:02:00 (62%)
------------------------------------------------------------
   0:02:00 (62%)    2016_06_04_10_33_29.txt (~/.usagelogs) - gedit

============================================================
started: 2016-06-04 10:33:29    updated: 2016-06-04 10:36:46
============================================================


..これは1分ごとに更新されます。

ノート

  • レポートは、カテゴリ「不明」の下のウィンドウをレポートする可能性があります。これは、ウィンドウにpid 0tkinterウィンドウ、Idleウィンドウ、aPython IDEなど)がある場合です。ただし、ウィンドウのタイトルと使用状況は正しく報告されます。

  • パスワード入力を伴うロック画面は、「nux入力ウィンドウ」として報告されます。

  • パーセンテージは四捨五入パーセンテージであり、アプリケーションのパーセンテージとウィンドウのパーセンテージの合計との間にわずかな違いが生じる場合があります。

    例:アプリケーションが2つのウィンドウを使用し、それぞれが合計時間の0,7%を使用する場合、両方のwindowsはそれぞれ1%を報告します(0.7-> 1に丸められます)、application's使用状況レポート1%1.4-> 1に丸められます)

    これらの違いが全体像とまったく無関係であると言う必要はありません。

スクリプト

#!/usr/bin/env python3
import subprocess
import time
import os

# -- set update/round time (seconds)
period = 5
# -- 
# don change anything below
home = os.environ["HOME"]
logdir = home+"/.usagelogs"

def currtime(tformat=None):
    return time.strftime("%Y_%m_%d_%H_%M_%S") if tformat == "file"\
           else time.strftime("%Y-%m-%d %H:%M:%S")

try:
    os.mkdir(logdir)
except FileExistsError:
    pass

# path to your logfile
log = logdir+"/"+currtime("file")+".txt"; startt = currtime()

def get(command):
    try:
        return subprocess.check_output(command).decode("utf-8").strip()
    except subprocess.CalledProcessError:
        pass

def time_format(s):
    # convert time format from seconds to h:m:s
    m, s = divmod(s, 60); h, m = divmod(m, 60)
    return "%d:%02d:%02d" % (h, m, s)

def summarize():
    with open(log, "wt" ) as report:
        totaltime = sum([it[2] for it in winlist])
        report.write("")
        for app in applist:
            wins = [r for r in winlist if r[0] == app]
            apptime = sum([it[2] for it in winlist if it[0] == app])
            appperc = round(100*apptime/totaltime)
            report.write(("-"*60)+"\n"+app+"\n"+time_format(apptime)+\
                         " ("+str(appperc)+"%)\n"+("-"*60)+"\n")
            for w in wins:
                wperc = str(round(100*w[2]/totaltime))
                report.write("   "+time_format(w[2])+" ("+\
                             wperc+"%)"+(6-len(wperc))*" "+w[1]+"\n")
        report.write("\n"+"="*60+"\nstarted: "+startt+"\t"+\
                     "updated: "+currtime()+"\n"+"="*60)

t = 0; applist = []; winlist = []
while True:
    time.sleep(period)
    frpid = get(["xdotool", "getactivewindow", "getwindowpid"])
    frname = get(["xdotool", "getactivewindow", "getwindowname"])
    app = get(["ps", "-p", frpid, "-o", "comm="]) if frpid != None else "Unknown"
    # fix a few names
    if "gnome-terminal" in app:
        app = "gnome-terminal"
    Elif app == "soffice.bin":
        app = "libreoffice"
    # add app to list
    if not app in applist:
        applist.append(app)
    checklist = [item[1] for item in winlist]
    if not frname in checklist:
        winlist.append([app, frname, 1*period])
    else:
        winlist[checklist.index(frname)][
            2] = winlist[checklist.index(frname)][2]+1*period
    if t == 60/period:
        summarize()
        t = 0
    else:
        t += 1

設定方法

  1. スクリプトは、ウィンドウの情報を取得するためにxdotoolを必要とします

    Sudo apt-get install xdotool
    
  2. スクリプトを空のファイルにコピーし、window_logs.pyとして保存します

  3. テスト-スクリプトを実行します。コマンド(ターミナルから)でスクリプトを開始します。

    python3 /path/to/window_logs.py
    

    1分後、スクリプトはログファイルを作成し、最初の結果が~/.usagelogsになります。ファイルには作成日時がタイムスタンプされます。ファイルは1分に1回更新されます。

    ファイルの下部に、最新の編集の開始時刻とタイムスタンプの両方が表示されます。この方法により、ファイルの期間を常に確認できます。

    スクリプトが再起動すると、新しい(開始)タイムスタンプを持つ新しいファイルが作成されます。

  4. すべてが正常に機能する場合は、スタートアップアプリケーションに追加します:ダッシュ>スタートアップアプリケーション>追加。コマンドを追加します。

    /bin/bash -c "sleep 15 && python3 /path/to/window_logs.py"
    

その他のメモ

  • ~/.uselogsは、デフォルトでは隠しディレクトリです。 (nautilusで)を押します Ctrl+H 見えるようにします。
  • そのままで、スクリプトはウィンドウの有効性を5秒に丸めます。5秒未満では実際にウィンドウが使用されていないと想定しています。値を変更する場合は、次の行のスクリプトの先頭に設定します。

    # -- set update/round time (seconds)
    period = 5
    # -- 
    
  • スクリプトは非常に「ジュースが少ない」です。さらに、時間更新per windowはスクリプト内で実行されるため、ログファイルの行数は実際に使用されるウィンドウの数に制限されます。

    それでも、たとえば、維持する行(=ウィンドウレコード)が多くなりすぎるのを防ぐために、数週間連続してスクリプトを実行することはしません。

7
Jacob Vlijm

あなたが説明したとおりのことを行うarbttがあります。 https://www.joachim-breitner.de/blog/336-The_Automatic_Rule-Based_Time_Tracker

3
mnagel