An standalone, open-source tooling application for AWS Cloud-Watch logs.
Log vies and AWS profiles list to select (Supports suggestion / filtering of the log-groups) :
Multi-AWS-profiles on the same machine is supported:
Left drawer closed ( just the searchable console ):
Search the log contents functionality ( it also search the whole pages content ):
NPM package place holder:
https://www.npmjs.com/package/log-gage
yarn start
To run/test in Chrome we need to enable CORS temporarily by runningopen -a Google\ Chrome --args --disable-web-security --user-data-dir
yran build
yarn release
Release candidates should have the combination word release candidate
in the commit message otherwise the CI pipelines will just build the project and run the tests but won't publish the release to GitHub releases as a draft.
In travis ci, the GH_TOKEN should be set to the token obtained from github ( so it can push the release draft )
https://www.electron.build/code-signing#where-to-buy-code-signing-certificate
- create a CSR file ( Keychain Access > Certificate Assistance > Request a ... )
- Go to Apple Developer and create two following certs using the above CSR file ( macOS > Production >> )
- Developer ID Application ( to sign the app )
- Developer ID Installer ( to sign the installer )
- Create a
.p12
file ( Keychain > keys > find the one you want > right click > export ) ( a password is required ) - Base64 encode the file (
$ base64 ./LoggageCertificates.p12 > ./LoggageCertificates.p12.base64
)Here is a brief tut for these steps.
- set these env vars in Travis settings:
CSC_KEY_PASSWORD
AndCERTIFICATE_PASSWORD
= the password aboveCERTIFICATE_P12
andCSC_LINK
= to the above base64 hash.CSC_IDENTITY_AUTO_DISCOVERY
=true
- With the following script already in
.travis.yml
file, everything's set and runing the build should release a signed app!
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
export CERTIFICATE_P12=Certificate.p12; \
echo $CERTIFICATE_OSX_P12 | base64 --decode > $CERTIFICATE_P12; \
export KEYCHAIN=build.keychain; \
security create-keychain -p thetemporarytransientpassword $KEYCHAIN; \
security default-keychain -s $KEYCHAIN; \
security unlock-keychain -p thetemporarytransientpassword $KEYCHAIN; \
security import $CERTIFICATE_P12 -k $KEYCHAIN -P $CERTIFICATE_PASSWORD -T /usr/bin/codesign; \
npm run release; \
fi;
Publishing to MAS is not supported at this time only due to not having enough time add all the required permissions and handle errors and all the additional required logic in addition of the debugging over-head it may have. We may add MAS support in the future if we receive a good feedback, contribution in the aspect is very much welcomed and appreciated as well.
Use IconUtil from Apple to make icons for OSX.
- Please note, if Travis failed, first try to purge the cache ( often times it fixes the problem! )
- add more stuff to do!
- Add/Edit the app icon/logo ( currently borrowed from TwiTool! )
- Publish to App store (?!)
- The maximize/Minimize functionality is gone ( not visible anymore! ), fix it
- Support more ( or all ) regions ( right now, for the sake of time-to-market,
us-east-1
is hard-coded ) - Add support for other platforms
- Add Auto-Update functionality
- ( component LeftDrawer ) >> test if array is empty show a man page and link to AWS docs to create profiles, if only one item ( default ) don't show the drop-down ( just metion default profile in use )
- Added search in logs functionality ( using native chromium page search )
- Added some screen shots.