feat(monitoring): add to operator
diff --git a/atmosphere/utils.py b/atmosphere/utils.py
new file mode 100644
index 0000000..c44db96
--- /dev/null
+++ b/atmosphere/utils.py
@@ -0,0 +1,8 @@
+import json
+
+import _jsonnet
+
+
+def load_jsonnet_from_path(path: str) -> any:
+    raw = _jsonnet.evaluate_file(path)
+    return json.loads(raw)