HTTPS を使用するように JavaScript エージェントを構成する
Related pages:
デフォルトでは、JavaScript エージェントは基本ページのロードに使用されるのと同じトランスポート(プロトコル)を選択しますが、より安全なネットワーク接続のために HTTPS を使用するように JavaScript エージェントを構成できます。
HTTPS を使用するように構成されている場合、javascript エージェントは HTTPS を使用して次の操作を実行します。
- adrum-ext.js の取得
- 位置情報データの取得
Set the useHTTPSAlways Flag
Following the code example below, you can set the boolean useHTTPSAlways to true to configure the JavaScript Agent to always use HTTPS.
<head>
<script type='text/javascript' charset='UTF-8'>
(function(cfg) {
cfg.useHTTPSAlways = true;
})(window['adrum-config'] || (window['adrum-config'] = {}));
</script>
<script src='https://cdn.appdynamics.com/adrum/adrum-latest.js' type='text/javascript' charset='UTF-8'></script>
...
</head>