sscdev.monitor ============== .. py:module:: sscdev.monitor Functions --------- .. autoapisummary:: sscdev.monitor.get_environment sscdev.monitor.collect_logs Module Contents --------------- .. py:function:: get_environment() .. py:function:: collect_logs(func) Decorator for logging function calls and tracing with Azure Monitor. Args: - func (function): The function to be wrapped by the decorator. Returns: - wrapper (function): The wrapped function with logging and tracing. Example: >>> @collect_logs >>> def example_function(x, y): >>> return x + y