-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from aws-samples/origin/feature/logging
Refactor code, implement logging
- Loading branch information
Showing
12 changed files
with
562 additions
and
356 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
*~ | ||
*# | ||
*.swp | ||
*.log | ||
|
||
# Python specific | ||
build/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1 @@ | ||
# This plugin implements TAO dashboard | ||
|
||
def onInit(cxt): | ||
# STS context, extract user session -> detect Bubblewand | ||
cxt.defaultAthenaDataSource = 'defaultDS' | ||
cxt.defaultAthenaDatabase = 'defaultDS' | ||
cxt.defaultAthenaTable = 'defaultDS' | ||
pass | ||
# This plugin implements Core dashboards |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CREATE OR REPLACE VIEW account_map AS | ||
SELECT account_id, | ||
concat(account_name, ': ', account_id) account_name | ||
SELECT ${account_id} as account_id, | ||
concat(${account_name}, ': ', ${account_id}) account_name | ||
FROM ${metadata_table_name} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.