diff --git a/lib/utils/__init__.py b/lib/utils/__init__.py index cda87f4547938fd73591e00195789bd57e0518f7..f9468fc37cf0f625d65d31f27e31cc2117930c48 100644 --- a/lib/utils/__init__.py +++ b/lib/utils/__init__.py @@ -525,6 +525,16 @@ def MergeTime(timetuple): return float(seconds) + (float(microseconds) * 0.000001) +def EpochNano(): + """Return the current timestamp expressed as number of nanoseconds since the + unix epoch + + @return: nanoseconds since the Unix epoch + + """ + return int(time.time() * 1000000000) + + def FindMatch(data, name): """Tries to find an item in a dictionary matching a name.