├── .DS_Store ├── .editorconfig ├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── contributing.md ├── readme.md └── src ├── .DS_Store ├── _includes ├── footer.html ├── head.html └── header.html ├── _layouts └── default.html ├── css ├── docs.css └── tomorrow-night.css ├── faqs.md ├── guides-assessment-statements.md ├── guides-cli.md ├── guides-configuring.md ├── guides-custom-installation.md ├── guides-indexing.md ├── guides-inserting.md ├── guides-installing.md ├── guides-integrating.md ├── guides-migrating.md ├── guides-monitoring.md ├── guides-retrieving.md ├── guides-sales-statements.md ├── guides-structuring.md ├── guides-video-statements.md ├── http-activities.md ├── http-aggregate.md ├── http-aggregation.md ├── http-clients.md ├── http-connection.md ├── http-dashboards.md ├── http-downloads.md ├── http-exports.md ├── http-journey-progress.md ├── http-journeys.md ├── http-metadata.md ├── http-organisations.md ├── http-persona-attributes.md ├── http-persona-identifiers.md ├── http-persona-imports.md ├── http-personas.md ├── http-queries.md ├── http-rest.md ├── http-roles.md ├── http-statement-deletion.md ├── http-statement-forwarding.md ├── http-statements.md ├── http-stores.md ├── http-users.md ├── http-visualisations.md ├── http-xapi-activities.md ├── http-xapi-agents.md ├── http-xapi-statements.md ├── http-xapi-states.md ├── http-xapi.md ├── images ├── cloudwatch-logs.jpg ├── logo-small.png ├── newrelic.jpg ├── pm2-logs.jpg └── pm2-monit.jpg ├── index.html ├── overview-architecture.md ├── overview-xapi.md └── welcome.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | out 3 | .DS_Store 4 | .idea 5 | .jekyll-cache 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/_config.yml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/contributing.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/readme.md -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/_includes/footer.html -------------------------------------------------------------------------------- /src/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/_includes/head.html -------------------------------------------------------------------------------- /src/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/_includes/header.html -------------------------------------------------------------------------------- /src/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/_layouts/default.html -------------------------------------------------------------------------------- /src/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/css/docs.css -------------------------------------------------------------------------------- /src/css/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/css/tomorrow-night.css -------------------------------------------------------------------------------- /src/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/faqs.md -------------------------------------------------------------------------------- /src/guides-assessment-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-assessment-statements.md -------------------------------------------------------------------------------- /src/guides-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-cli.md -------------------------------------------------------------------------------- /src/guides-configuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-configuring.md -------------------------------------------------------------------------------- /src/guides-custom-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-custom-installation.md -------------------------------------------------------------------------------- /src/guides-indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-indexing.md -------------------------------------------------------------------------------- /src/guides-inserting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-inserting.md -------------------------------------------------------------------------------- /src/guides-installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-installing.md -------------------------------------------------------------------------------- /src/guides-integrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-integrating.md -------------------------------------------------------------------------------- /src/guides-migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-migrating.md -------------------------------------------------------------------------------- /src/guides-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-monitoring.md -------------------------------------------------------------------------------- /src/guides-retrieving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-retrieving.md -------------------------------------------------------------------------------- /src/guides-sales-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-sales-statements.md -------------------------------------------------------------------------------- /src/guides-structuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-structuring.md -------------------------------------------------------------------------------- /src/guides-video-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/guides-video-statements.md -------------------------------------------------------------------------------- /src/http-activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-activities.md -------------------------------------------------------------------------------- /src/http-aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-aggregate.md -------------------------------------------------------------------------------- /src/http-aggregation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-aggregation.md -------------------------------------------------------------------------------- /src/http-clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-clients.md -------------------------------------------------------------------------------- /src/http-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-connection.md -------------------------------------------------------------------------------- /src/http-dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-dashboards.md -------------------------------------------------------------------------------- /src/http-downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-downloads.md -------------------------------------------------------------------------------- /src/http-exports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-exports.md -------------------------------------------------------------------------------- /src/http-journey-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-journey-progress.md -------------------------------------------------------------------------------- /src/http-journeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-journeys.md -------------------------------------------------------------------------------- /src/http-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-metadata.md -------------------------------------------------------------------------------- /src/http-organisations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-organisations.md -------------------------------------------------------------------------------- /src/http-persona-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-persona-attributes.md -------------------------------------------------------------------------------- /src/http-persona-identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-persona-identifiers.md -------------------------------------------------------------------------------- /src/http-persona-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-persona-imports.md -------------------------------------------------------------------------------- /src/http-personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-personas.md -------------------------------------------------------------------------------- /src/http-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-queries.md -------------------------------------------------------------------------------- /src/http-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-rest.md -------------------------------------------------------------------------------- /src/http-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-roles.md -------------------------------------------------------------------------------- /src/http-statement-deletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-statement-deletion.md -------------------------------------------------------------------------------- /src/http-statement-forwarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-statement-forwarding.md -------------------------------------------------------------------------------- /src/http-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-statements.md -------------------------------------------------------------------------------- /src/http-stores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-stores.md -------------------------------------------------------------------------------- /src/http-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-users.md -------------------------------------------------------------------------------- /src/http-visualisations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-visualisations.md -------------------------------------------------------------------------------- /src/http-xapi-activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-xapi-activities.md -------------------------------------------------------------------------------- /src/http-xapi-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-xapi-agents.md -------------------------------------------------------------------------------- /src/http-xapi-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-xapi-statements.md -------------------------------------------------------------------------------- /src/http-xapi-states.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-xapi-states.md -------------------------------------------------------------------------------- /src/http-xapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/http-xapi.md -------------------------------------------------------------------------------- /src/images/cloudwatch-logs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/images/cloudwatch-logs.jpg -------------------------------------------------------------------------------- /src/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/images/logo-small.png -------------------------------------------------------------------------------- /src/images/newrelic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/images/newrelic.jpg -------------------------------------------------------------------------------- /src/images/pm2-logs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/images/pm2-logs.jpg -------------------------------------------------------------------------------- /src/images/pm2-monit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/images/pm2-monit.jpg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/index.html -------------------------------------------------------------------------------- /src/overview-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/overview-architecture.md -------------------------------------------------------------------------------- /src/overview-xapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/overview-xapi.md -------------------------------------------------------------------------------- /src/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningLocker/docs/HEAD/src/welcome.md --------------------------------------------------------------------------------