diff --git a/pyproject.toml b/pyproject.toml index 65572dc..6974615 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ Homepage = "https://susurrando.com" [project] name = "restic_exporter" -version = "0.0.4" +version = "0.0.5" description = "Export to node exporter the summary of a restic backup" readme = "README.md" authors = [{ name = "Antonio J. Delgado", email = "ad@susurrando.com" }] diff --git a/restic_exporter/restic_exporter.py b/restic_exporter/restic_exporter.py index bfcfd55..006f360 100644 --- a/restic_exporter/restic_exporter.py +++ b/restic_exporter/restic_exporter.py @@ -77,7 +77,7 @@ class restic_exporter: if 'snapshot_id' in line_data: self.labels["snapshot_id"] = line_data['snapshot_id'] file_stats = os.stat(json_file) - self.summary['timestamp'] = file_stats.st_mtime * 1000 + self.summary['timestamp'] = round(file_stats.st_mtime * 1000) self._log.debug(f"Summary: {json.dumps(self.summary, indent=2)}") self._log.debug(f"Labels: {self.labels}") diff --git a/setup.py b/setup.py index e495361..e2bea61 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools setuptools.setup( scripts=['restic_exporter/restic_exporter.py'], author="Antonio J. Delgado", - version='0.0.4', + version='0.0.5', name='restic_exporter', author_email="", url="",