Code/PGPerfStatsSnapper/pg_perf_stat_loader.py [96:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    try:
        return subprocess.check_call(command, stderr=subprocess.STDOUT, shell=True)
    except Exception as e:
        logger.error('Exception: ' + str(e))
    
    
if __name__ == "__main__":

    #Parse and Validate Arguments
    opts = getoptions()

    # consume arguments 
    DBHOST = opts.endpoint
    DBPORT = opts.port
    DBNAME = opts.dbname
    DBUSER = opts.user
    SECRET_ARN = opts.SecretARN
    REGION_NAME = opts.region
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Code/PGPerfStatsSnapper/pg_perf_stat_snapper.py [106:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    try:
        return subprocess.check_call(command, stderr=subprocess.STDOUT, shell=True)
    except Exception as e:
        logger.error('Exception: ' + str(e))
    
    
if __name__ == "__main__":
    
    # Parse and Validate Arguments
    opts = getoptions()

    # consume arguments 
    DBHOST = opts.endpoint
    DBPORT = opts.port
    DBNAME = opts.dbname
    DBUSER = opts.user
    SECRET_ARN = opts.SecretARN
    REGION_NAME = opts.region
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



