(self, graphite_address: str | tuple[str, int])
| 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) |
| 29 | |
| 30 | @staticmethod |
| 31 | def submit_many(events: list[GraphiteEvent], graphite_address: str | tuple[str, int]): |
no test coverage detected