gitlab-timelogs CLI
A lightweight CLI to fetch, summarize, and validate your GitLab issue time logs. Group entries by week, filter by date ranges, and spot anomalies like weekend work or >10h days. Read-only, fast, and cross-platform - built to make time tracking in GitLab finally usable.
Made by developers for developers. gitlab-timelogs
is not associated
with the official GitLab project!
(The screenshot is slightly outdated. The latest version shows more information.)
Features
gitlab-timelogs
provides you with an overview of your time logs and prints
warnings for typical mistakes. It does not allow you to modify entries, but just
to inspect existing records, so you can fix them in GitLab (if necessary).
- ✅ collect time logs from issues (timelogs associated with MRs currently not supported)
- ✅ group them by week
- ✅ specify time range and apply filters (such as group filter)
- ✅ print warnings for common pitfalls:
- accounted less than 15 minutes to an issue (typically a mistake)
- accounted time to a Saturday or Sunday (not common in normal positions) (at least in Europe 😀)
- accounted more than 10h a day (10h is the legal maximum in Germany)
GitLab Server Support
Development of this CLI began with GitLab 16.11. Since then, it has been regularly tested against the latest stable release (currently 18.2). Because it only relies on basic parts of the GitLab API, it should work across a wide range of GitLab versions.
Note: Certain features may be unavailable on the GitLab Free tier.
Supported Platforms
(For compilation and running.)
gitlab-timelogs
builds and runs at least on the following platforms:
- ✅ Linux
- ✅ MacOS
- ✅ Windows
including different versions and architectures that Rust supports (x86, ARM).
Consume / Install
Via cargo:
$ cargo install https://github.com/phip1611/gitlab-timelogs
Via Nix / on NixOS:
- Option A: via
nixpkgs
- A1: Add
pkgs.gitlab-timelogs
to your packages - A2: Use
nix-shell -p gitlab-timelogs
- A1: Add
- Option B: consume this Flake/Repository
- B1: Add
gitlab-timelogs.nixosModules.default
(gitlab-timelogs
is referring to the flake input) to the modules of your NixOS configuration, which will addgitlab-timelogs
to your system-wide packages. - B2: Open a shell:
$ nix shell github:phip1611/gitlab-timelogs
- B3: Run the tool:
$ nix run github:phip1611/gitlab-timelogs -- <args>
- B1: Add
Via home-manager:
- import the home-manager module:
gitlab-timelogs.nixosModules.home-manager
- enable and configure gitlab-timelogs:
gitlab-timelogs = {
enable = true;
config = {
gitlabHost = "gitlab.example.com";
gitlabUsername = "exampleuser";
# Either write as a string here, or read from a file that you do not push:
gitlabToken = with builtins; readFile (toPath ./gitlab-token.txt);
};
};
Usage
$ gitlab-timelogs --help
$ gitlab-timelogs --host gitlab.vpn.cyberus-technology.de --username pschuster --token ********** --after 2024-06-01 --before 2024-06-30
Configuration
- Via CLI options. Type
--help
for guidance. - Via environment variables:
GITLAB_HOST
GITLAB_USERNAME
GITLAB_TOKEN
- Via a configuration file either in
~/.config/gitlab-timelogs/config.toml
(UNIX) or
%LOCALAPPDATA%/gitlab-timelogs/config.toml
(Windows) with the following content: \= "gitlab.example.com" = "<user>" = "<token>"
MSRV
The MSRV is Rust stable 1.85.0
.
Trivia
The main motivation to create this was the unbelievable poor UX of the GitLab
web UI for time logs at that given time. For example, the input mask transformed a 1h 30
to
3d 7h
instead of 1h 30m
. This common pitfall was unbelievably annoying and
hard to spot - badly influencing a lot of our time records.
Hence, I created this as part of my work time at Cyberus Technology GmbH to boost our internal productivity. We love open source! Interested in a cool employer? Contact us!