Skip to main content

send line message notification, support aws lambda

Project description

PynamoLogger

log information into a dynamodb, with dax support

Install

pip install pynamologger

view Documentation

Usage

class meta definition

from pynamoLogger.logger import PynamoLogger
class Logger(PynamoLogger):
  class Meta:
    table_name = 'member-database-log-dev-manual'
    region = 'ap-southeast-1'
    billing_mode = 'PAY_PER_REQUEST'

# Logger.create_table()
Logger.log(appName = 'test', message = "this is crazy", responseObject = {'response': 'null response'})
{'logId': 1603075789.054751,
 'saveResult': {'ConsumedCapacity': {'CapacityUnits': 1.0,
   'TableName': 'member-database-log-dev-manual'}}}
Logger.checkLog(appName = 'test', logId = '1603074235.103042')
[{'appName': None,
  'timestamp': 1603074235.103042,
  'logMessage': 'this is crazy',
  'requestObject': {'noValue': 'noValue'},
  'responseObject': {'response': 'null response'}}]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pynamoLogger-0.0.1.tar.gz (9.6 kB view hashes)

Uploaded Source

Built Distribution

pynamoLogger-0.0.1-py3-none-any.whl (10.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page