Calculate time spent based on summary #305
-
Hi! Given the following log:
Most ideal would be that I could get a report that said 'only a summary here 30m' (so the two entries summed up). I can get that information for tags using |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
I don’t believe this is possible right now. May I ask what your specific use-case is? Maybe there might be a workaround. |
Beta Was this translation helpful? Give feedback.
-
Hi, So what I'm basically looking for is a sum of time for everything that has no tag. I couldn't find any command that would tell me how much time was spent a certain log. Aggregation of the same summary would be a nice to have :) I've always used https://gtimelog.org/ which allowed me to log what i've done, instead 'log what you are going to do'. I find this workflow far more intuitive and better matches my workflow. Throughout the day I can log 'did x'... 'did y', .. 'did x'. In the report I could see 'time spent on non-categorized tasks: x hours'. I really hope I can get that info somehow from klog. The workaround would be to obviously always use tags. |
Beta Was this translation helpful? Give feedback.
-
I think what might be doable would be a filter flag like Based on how you describe your use-case, I think that’s actually what tags were meant to solve in klog. Note that tags are designed to naturally fit into the flow of text (much like e.g. hashtags on Twitter):
The idea is for tags to get as little into your way as possible when writing the summary text, while still allowing you to categorise your data in a rigorous and logical way. Aggregating summary text would have some shortcomings here, because e.g. you have to watch out for spelling differences:
|
Beta Was this translation helpful? Give feedback.
-
Hi thank you for your explanation! Working with tags will do just fine I think. But than there is still the issue that any task without tag is never reported. If you log items with the exact time spent, than it's easy to see what you've done. But for time ranges it's more difficult: 2000-01-01 The only way to know how much time I've spent on that task is to calculate it myself. Maybe some option in 2000-01-01 |
Beta Was this translation helpful? Give feedback.
I think what might be doable would be a filter flag like
--no-tag
or--tag-count 0
or so, but that would then be more for double-checking whether you have forgotten to add a tag somewhere. It wouldn’t distinguish the resulting entries any further (e.g., based on the summary text).Based on how you describe your use-case, I think that’s actually what tags were meant to solve in klog. Note that tags are designed to naturally fit into the flow of text (much like e.g. hashtags on Twitter):
The idea is for tags to get as little into your way as possible when writing the summary text, while still a…