We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dacec9a commit f2820cfCopy full SHA for f2820cf
docs/javascript/extra.js
@@ -9,6 +9,8 @@ const awsconfig = {
9
"aws_kinesis_firehose_stream_name": "ClickStreamKinesisFirehose-OGX7PQdrynUo",
10
};
11
12
+const RUNTIME = "python"
13
+
14
const attachListeners = () => {
15
/* Register handler to log search on blur */
16
document.addEventListener("DOMContentLoaded", function () {
@@ -59,7 +61,8 @@ const recordPageView = ({prevLocation, searchPattern}) => {
59
61
url: searchPattern ? null : window.location.href,
60
62
section: searchPattern ? null : location.pathname,
63
previous: prevLocation || null,
- search: searchPattern || null
64
+ search: searchPattern || null,
65
+ language: RUNTIME
66
},
67
streamName: awsconfig.aws_kinesis_firehose_stream_name
68
}, 'AWSKinesisFirehose')
0 commit comments