Best Python code snippet using localstack_python
cloudwatch_util.py
Source:cloudwatch_util.py
...29 )30def publish_lambda_duration(time_before, kwargs):31 time_after = now_utc()32 publish_lambda_metric('Duration', time_after - time_before, kwargs)33def publish_lambda_error(time_before, kwargs):34 publish_lambda_metric('Invocations', 1, kwargs)35 publish_lambda_metric('Errors', 1, kwargs)36def publish_lambda_result(time_before, result, kwargs):37 if isinstance(result, Response) and result.status_code >= 400:38 return publish_lambda_error(time_before, kwargs)39 publish_lambda_metric('Invocations', 1, kwargs)40# ---------------41# Helper methods42# ---------------43def publish_result(ns, time_before, result, kwargs):44 if ns == 'lambda':45 publish_lambda_result(time_before, result, kwargs)46def publish_error(ns, time_before, e, kwargs):47 if ns == 'lambda':48 publish_lambda_error(time_before, kwargs)49def cloudwatched(ns):50 """ @cloudwatched(...) decorator for annotating methods to be monitored via CloudWatch """51 def wrapping(func):52 def wrapped(*args, **kwargs):53 time_before = now_utc()54 try:55 result = func(*args, **kwargs)56 publish_result(ns, time_before, result, kwargs)57 except Exception as e:58 publish_error(ns, time_before, e, kwargs)59 raise e60 finally:61 # TODO62 # time_after = now_utc()...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!