Application Delivery Management

オペレーション

操作はStyleBookのオプションセクションです。このセクションでは、すべてまたは一部のトラフィックトランザクションに関するAppFlowレコードを収集するようにCitrixApplication Delivery Management(ADM)分析を構成できます。StyleBookを使用してNetScaler ADC インスタンス上に作成された仮想サーバーは、これらのトラフィックトランザクションを処理します。このセクションでは、仮想サーバーで特定のトラフィック条件が満たされたときにアラームをトリガーするようにNetScaler ADM を構成することもできます。

StyleBooksを使用してNetScaler ADMを構成して、次のようにリストされているさまざまなNetScaler ADM Insightsからトラフィック統計を収集できます。

  • Web Insight
  • Security Insight
  • HDX Insight
  • Citrix Gateway Insight

サポートされる仮想サーバは、ロードバランシング、コンテンツスイッチング、および VPN 仮想サーバです。

Web Insight と Security Insight の両方、またはどちらか一方を有効化して、負荷分散またはコンテンツスイッチング仮想サーバーの分析に使用します。ただし、VPN仮想サーバーの場合は、HDX Insight とNetScaler Gateway Insightの両方を有効にする必要があります。

StyleBooksを介してCitrix ADCインスタンスで有効になっているCitrix ADM Insightはすべて、IPFIXプロトコル(AppFlow)を使用してインスタンスからCitrix ADCにデータを送信します。

また、Web Insight を有効にすると、負荷分散およびコンテンツスイッチング仮想サーバーで「クライアント側測定」が有効になります。

例 1

次の例は、VPN仮想サーバー上でHDX InsightとCitrix Gateway Insightの両方を有効にするための操作セクションをStyleBookに記述する方法を示しています。


name: simple-vpn-ops
namespace: com.example.stylebooks
schema-version: "1.0"
version: "0.1"
description: Test StyleBook to enable hdxinsight and gatewayinsight on a VPN vserver
import-stylebooks:
  -
    namespace: netscaler.nitro.config
    version: "10.5"
    prefix: ns
components:
    -
        name: vpnvserver-comp
        type: ns::vpnvserver
        properties:
            name: str("vpn-") + str($current-target.ip)
            servicetype: SSL
            ipv46: 1.1.21.37
            port: 443
operations:
    analytics:
        -
            name: comp-ops
            properties:
                target: $components.vpnvserver-comp
                filter: "true"
                insights:
                  -
                 type: hdxinsight**
                  -
                    type: gatewayinsight
outputs:
  -
    name: myvpns
    value: $components.vpnvserver-comp
<!--NeedCopy-->

例 2

次の例は、StyleBookに操作セクションを記述して、負荷分散仮想サーバー上でWeb InsightとSurityInsightの両方を有効にする方法を示しています。


name: simple-lb-ops
namespace: com.example.stylebooks
schema-version: "1.0"
version: "0.1"
description: Test StyleBook to enable webinsight and securityinsight on LB vserver
import-stylebooks:
  -
    namespace: netscaler.nitro.config
    version: "10.5"
    prefix: ns
components:
    -
        name: lbvserver-comp
        type: ns::lbvserver
        properties:
            name: str("lb-") + str($current-target.ip)
            servicetype: HTTP
            ipv46: 1.1.21.37
            port: 80
operations:
    analytics:
        -
            name: comp-ops
            properties:
                target: $components.lbvserver-comp
                filter: "true"
                 insights:
                 -
                  type: webinsight
                   -
                  type: securityinsight
outputs:
  -
    name: mylbs
    value: $components.lbvserver-comp
<!--NeedCopy-->
オペレーション

この記事の概要