Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Provides a decorator to wrap around a function so that a report is sent to external server every time function runs.

License

Notifications You must be signed in to change notification settings

sopherapps/function-ext-monitor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

function-ext-monitor

This package provides a decorator to wrap around a function so that a report is sent to external server every time function runs.

Dependencies

How to install

  • Run the command below in your terminal

    pip install function-ext-monitor

How to use

  • Given that the function you wish to monitor is the simple_addition function in the code below,here is how you would go about it.

    import datetime
    from function_ext_monitor import external_function_monitor
    
    EXTRA_DATA_TO_SEND = {
        # maybe how often do you expect this function to be called
        'interval_in_seconds': 7,
        # maybe who wrote it
        'author': 'John Doe',
        # even functions without arguments can be added to dynamically
        # generate values when the function is called
        # They should return something JSON serializable
        'timestamp': lambda: str(datetime.datetime.now()),
        'headers': {
            # Any custom headers. Again, feel free to pass in a function
            # to generate headers on the fly,
            'Authorization': 'Bearer your-auth-token',
          }
          ....
      }
    
      @external_function_monitor('http://endpoint-to-send-data-to', **EXTRA_DATA_TO_SEND)
      def simple_addition(first_number, second_number):
          """
          This function adds the first_number to the second_number
          and returns the sum
          """
          return first_number + second_number

    Note

    • By default, the decorator includes the name of the computer and the name of the function in the data sent to the remote endpoint.
    • If the decorator is around a method of a class, the full name in the format Class_name.method_name is sent to the remote endpoint.
    • It also adds 'Content-Type': 'application/json' to the headers
    • It sends the data by spinning up a separate process so that interference with the running program is minimal
    • Every time the function it decorates (in the above example simple_addition) runs, a POST request is sent the remote server specified in the first argument. It is upto the developer to decide whether they will overwrite the existing record for that function or to keep a continuously growing log of records on that function.

Acknowledgment

The RealPython post on python packaging was very helpful when I was publishing this package.

License

Copyright (c) 2020 Martin Ahindura Licensed under the MIT License

About

Provides a decorator to wrap around a function so that a report is sent to external server every time function runs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages