Skip to content

Commit f2820cf

Browse files
authored
chore: add default runtime key
1 parent dacec9a commit f2820cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/javascript/extra.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ const awsconfig = {
99
"aws_kinesis_firehose_stream_name": "ClickStreamKinesisFirehose-OGX7PQdrynUo",
1010
};
1111

12+
const RUNTIME = "python"
13+
1214
const attachListeners = () => {
1315
/* Register handler to log search on blur */
1416
document.addEventListener("DOMContentLoaded", function () {
@@ -59,7 +61,8 @@ const recordPageView = ({prevLocation, searchPattern}) => {
5961
url: searchPattern ? null : window.location.href,
6062
section: searchPattern ? null : location.pathname,
6163
previous: prevLocation || null,
62-
search: searchPattern || null
64+
search: searchPattern || null,
65+
language: RUNTIME
6366
},
6467
streamName: awsconfig.aws_kinesis_firehose_stream_name
6568
}, 'AWSKinesisFirehose')

0 commit comments

Comments
 (0)