diff --git a/bbb-exporter/collector.py b/bbb-exporter/collector.py index b141292..8a7c7cf 100644 --- a/bbb-exporter/collector.py +++ b/bbb-exporter/collector.py @@ -382,7 +382,7 @@ def recordings_deleted_from_disk(bigbluebutton_base_dir) -> int: def recordings_unprocessed_from_disk(bigbluebutton_base_dir) -> int: # bigbluebutton_base_dir i.e. "/var/bigbluebutton/" - path = os.path.join(bigbluebutton_base_dir, "recording/status/sanity") + path = os.path.join(bigbluebutton_base_dir, "recording/status/recorded") try: return len(os.listdir(path=path)) except FileNotFoundError: diff --git a/bbb-exporter/settings.py b/bbb-exporter/settings.py index 5476449..110dce6 100644 --- a/bbb-exporter/settings.py +++ b/bbb-exporter/settings.py @@ -4,8 +4,8 @@ MAJOR = 0 MINOR = 7 -BUGFIX = 0 -INFO = "preview2" +BUGFIX = 1 +INFO = "preview1" VERSION = "{}.{}.{}".format(MAJOR, MINOR, BUGFIX) if INFO: