(self)
| 22 | return (self.path, (self.timestamp, self.value)) |
| 23 | |
| 24 | def serialize_str(self) -> str: |
| 25 | return f"{self.path} {self.value} {self.timestamp}" |
| 26 | |
| 27 | def submit(self, graphite_address: str | tuple[str, int]): |
| 28 | GraphiteEvent.submit_many([self], graphite_address) |