We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To efficiently track tutorial usage, we need to modify each background script to push the tutorial name in addition to the pageName.
tutorial
pageName
Do this by adding a new field to the curl -X POST body.
curl -X POST
For example:
curl -X POST 'https://b12rzypwjl.execute-api.us-east-1.amazonaws.com/default/keptn_killercoda_tracker' -H 'Content-Type: text/plain' --data-raw '{ "pageName": "intro.md" }'
Becomes:
curl -X POST 'https://b12rzypwjl.execute-api.us-east-1.amazonaws.com/default/keptn_killercoda_tracker' -H 'Content-Type: text/plain' --data-raw '{ "tutorial": "keptnV1", "pageName": "intro.md" }'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To efficiently track tutorial usage, we need to modify each background script to push the
tutorial
name in addition to thepageName
.Do this by adding a new field to the
curl -X POST
body.For example:
Becomes:
The text was updated successfully, but these errors were encountered: