diff --git a/beat/core/execution/local.py b/beat/core/execution/local.py index c9b10c2670534610bd245e359336e6e981a98102..587dd0a82b1c2777c88e6bb0be3d7ad611e1e1ce 100755 --- a/beat/core/execution/local.py +++ b/beat/core/execution/local.py @@ -212,7 +212,19 @@ class LocalExecutor(BaseExecutor): return { 'status': status, 'statistics': { - 'data': self.io_statistics + 'data': self.io_statistics, + 'cpu': { + 'user': 0.0, + 'system': 0.0, + 'total': 0.0, + 'percent': 0.0, + 'processors': 1, + }, + 'memory': { + 'rss': 0, + 'limit': 0, + 'percent': 0.0, + }, }, 'stderr': '', 'stdout': '',