{"id":18825432,"url":"https://github.com/grycap/cloudtrail-tracker-ui","last_synced_at":"2026-03-13T09:31:50.563Z","repository":{"id":42976551,"uuid":"134602543","full_name":"grycap/cloudtrail-tracker-ui","owner":"grycap","description":"CloudTrailTracker User Interface","archived":false,"fork":false,"pushed_at":"2026-03-06T12:18:13.000Z","size":11894,"stargazers_count":1,"open_issues_count":4,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-03-06T15:44:13.480Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.grycap.upv.es/cloudtrail-tracker","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/grycap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-05-23T17:15:37.000Z","updated_at":"2026-03-06T12:18:18.000Z","dependencies_parsed_at":"2025-04-05T15:22:33.906Z","dependency_job_id":"65db18f5-419d-4f1e-8d2a-e4cc3958f334","html_url":"https://github.com/grycap/cloudtrail-tracker-ui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/grycap/cloudtrail-tracker-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grycap%2Fcloudtrail-tracker-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grycap%2Fcloudtrail-tracker-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grycap%2Fcloudtrail-tracker-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grycap%2Fcloudtrail-tracker-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grycap","download_url":"https://codeload.github.com/grycap/cloudtrail-tracker-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grycap%2Fcloudtrail-tracker-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30464637,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T06:34:02.089Z","status":"ssl_error","status_checked_at":"2026-03-13T06:33:49.182Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T00:59:28.201Z","updated_at":"2026-03-13T09:31:50.504Z","avatar_url":"https://github.com/grycap.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CloudTrail-Tracker-UI \n\nCloudTrail-Tracker-UI is the web portal based on Vue.js that queries the REST API of [CloudTrail-Tracker](https://github.com/grycap/cloudtrail-tracker) to visually show the high-level aggregate information related to the use of resources in AWS by different users based on the events information.\n\n## Visual Aspect of the Dashboard\nThe dashboard depicts an aggregated view of the AWS services usage in a pre-defined time frame: \n![CloudTrail-Tracker Dashboard ](doc/img/ctt-dashboard.png)\n\nIt also allows users to know their progress percentage across a set of lab activities. The set of events per lab activities are defined in [envprac.js](src/envprac.js). This is useful when applying this tool for the academic teaching of Cloud Computing with Amazon Web Services:\n![CloudTrail-Tracker Labs ](doc/img/ctt-labs.jpg)\n\nClicking on each bar allows the user to know the missing events per lab activity: \n![CloudTrail-Tracker Labs ](doc/img/ctt-labs-detail.jpg)\n\nAn academic publication on the adoption of this tool as a learning dashboard for students is available in:\n\nNaranjo, Diana M., José R. Prieto, Germán Moltó, and Amanda Calatrava. 2019. “A Visual Dashboard to Track Learning Analytics for Educational Cloud Computing.” Sensors 19(13): 2952. https://www.mdpi.com/1424-8220/19/13/2952/htm (July 4, 2019).\n\n## Requirements\n\n* An existing [Cognito User Pool](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools.html) to store the  users, created in your AWS account.\n\n* [npm](https://www.npmjs.com/) installed.\n\n## Deployment\n\nThis is a static web application (HTML + CSS + JavaScript) and, therefore, it is expected to be deployed in an S3 bucket as this is the most secure, scalable and cost-effective approach.\n\n1. Create a file named `src/env.js` (see example in `src/env_example.js`) specifying the corresponding values (obtained from the Cognito User Pool). IdentityPoolId is not necessary.\n\n    ``` js\n    module.exports = { \n        COGNITO:{\n            region:'us-east-1',\n            ClientId:'XXXXX',\n            UserPoolId:'us-east-1YYYYYYYY',\n        },\n    }\n    ```\n  \n1. Modify the file `src/api.js` to define the API Gateway endpoint on which CloudTrail-Tracker is exposing its REST API.\n\n1. Start a local server to verify the web application:\n    1. Install the dependencies:\n\n        ```sh\n        npm install --legacy-peer-deps\n        ```\n\n    1. Run the server in localhost\n\n        ```sh\n        npm run dev\n        ```\n\n    The web application will be available in `http://localhost:8080`\n\n1. Create the static web site by issuing: \n    ```sh\n    npm install --legacy-peer-deps\n    npm run build\n    ```\n    The static web site will be available in the `dist` folder.\n\n5. Upload the folder to an [S3 bucket with website configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html).\n\n\n## Contributing\n\nBefore you contributing to this project, you should be familiar with [What is Amazon Cognito](http://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html) and [Vue.js](https://vuejs.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrycap%2Fcloudtrail-tracker-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrycap%2Fcloudtrail-tracker-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrycap%2Fcloudtrail-tracker-ui/lists"}