Compare commits

...

2 commits

Author SHA1 Message Date
sinavir 12b4168309 fix: tag sync 2024-04-18 17:35:46 +02:00
sinavir 77147e5d01 fix: Add some more debug logs 2024-04-18 17:35:28 +02:00
2 changed files with 11 additions and 2 deletions

View file

@ -29,7 +29,6 @@ def hydrate_http_probes(tree, excludes=[]):
headers = probe.kwargs.get("headers", None)
body = probe.kwargs.get("body", None)
content = requests.request(method, url, headers=headers, data=body).text
print(len(content))
m = re.search("<title>(.*?)</title>", content)
if m is None:
logger.info(f"Didn't find keywords for probe {probe.name}, skipping")

View file

@ -88,6 +88,7 @@ class Monitor(Item):
def save(self):
if self.saved:
return
logger.debug(f"Saving {repr(self)}")
for t, _ in self.tags:
t.save()
for n in self.notifications:
@ -112,7 +113,8 @@ class Monitor(Item):
(i["tag_id"], i["value"]) for i in self.api.get_monitor(self.id)["tags"]
)
for t, v in self.tags:
if (t, v) not in current_tags:
if (t.id, v) not in current_tags:
logger.debug(f"Adding tag: '{t}, {v}'")
self.api.add_monitor_tag(tag_id=t.id, monitor_id=self.id, value=v)
self.saved = True
@ -129,6 +131,7 @@ class Tag(Item):
def save(self):
if self.saved:
return
logger.debug(f"Saving {repr(self)}")
if self.id is None:
rslt = self.api.add_tag(
name=self.tag,
@ -143,6 +146,9 @@ class Tag(Item):
)
self.saved = True
def __repr__(self):
return f"Tag({str(self)})"
class Notification(Item):
def __init__(self, api, name, id=None, old_name=None, **kwargs):
@ -152,6 +158,7 @@ class Notification(Item):
def save(self):
if self.saved:
return
logger.debug(f"Saving {repr(self)}")
if self.id is None:
rslt = self.api.add_notification(
name=self.name,
@ -165,3 +172,6 @@ class Notification(Item):
**self.kwargs,
)
self.saved = True
def __repr__(self):
return f"Notification({str(self)})"