diff --git a/orgstat.cabal b/orgstat.cabal
--- a/orgstat.cabal
+++ b/orgstat.cabal
@@ -1,5 +1,5 @@
 name:                orgstat
-version:             0.1.0
+version:             0.1.1
 synopsis:            Statistics visualizer for org-mode
 license:             GPL-3
 license-file:        LICENSE
diff --git a/src/OrgStat/Parser.hs b/src/OrgStat/Parser.hs
--- a/src/OrgStat/Parser.hs
+++ b/src/OrgStat/Parser.hs
@@ -53,7 +53,9 @@
 
     getClocks :: O.Section -> [Clock]
     getClocks section =
-        mapMaybe convertClock $ O.sectionClocks section
+        mapMaybe convertClock $
+            O.sectionClocks section <>
+            O.unLogbook (O.sectionLogbook section)
 
     -- convert clocks from orgmode-parse format, returns Nothing for clocks
     -- without end time or time-of-day
