Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9346491
D6353.id23113.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
D6353.id23113.diff
View Options
diff --git a/swh/provenance/graph.py b/swh/provenance/graph.py
--- a/swh/provenance/graph.py
+++ b/swh/provenance/graph.py
@@ -9,6 +9,7 @@
import os
from typing import Any, Dict, Optional, Set
+from swh.core.statsd import statsd
from swh.model.hashutil import hash_to_hex
from swh.model.model import Sha1Git
@@ -16,6 +17,9 @@
from .interface import ProvenanceInterface
from .model import DirectoryEntry, RevisionEntry
+GRAPH_OPERATIONS_METRIC = "swh_provenance_graph_operations_total"
+GRAPH_DURATION_METRIC = "swh_provenance_graph_duration_seconds"
+
UTCMIN = datetime.min.replace(tzinfo=timezone.utc)
@@ -47,6 +51,7 @@
class HistoryGraph:
+ @statsd.timed(metric=GRAPH_DURATION_METRIC, tags={"method": "build_history_graph"})
def __init__(
self,
archive: ArchiveInterface,
@@ -131,6 +136,9 @@
return self._dbdate
def invalidate(self) -> None:
+ statsd.increment(
+ metric=GRAPH_OPERATIONS_METRIC, tags={"method": "invalidate_frontier"}
+ )
self._dbdate = None
self.maxdate = None
self.known = False
@@ -162,6 +170,7 @@
return hash((self.entry, self.depth, self.path))
+@statsd.timed(metric=GRAPH_DURATION_METRIC, tags={"method": "build_isochrone_graph"})
def build_isochrone_graph(
archive: ArchiveInterface,
provenance: ProvenanceInterface,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jul 3, 4:06 PM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3218598
Attached To
D6353: Add StatsD support to graph submodule
Event Timeline
Log In to Comment