Docs » Splunk Observability Cloud でサポートされているインテグレーション » Collectorコンポーネント: レシーバー » Microsoft SQL server receiver

Microsoft SQL server receiver 🔗

The Microsoft SQL Server receiver queries and retrieves metrics from Microsoft SQL Server instances. The receiver works by either using the Windows Performance Counters, or by directly connecting to the instance and querying it. The supported pipeline type is metrics. See パイプラインでデータを処理する for more information.

以下が該当します:

  • Windows Performance Counters are only available when running on Windows.

  • メトリクスのすべてのパフォーマンスカウンターを収集するには、必ずCollectorを管理者として実行してください。

はじめに 🔗

以下の手順に従って、コンポーネントの設定とアクティベーションを行ってください:

  1. Splunk Distribution of the OpenTelemetry Collector をホストまたはコンテナプラットフォームにデプロイします:

  1. Configure the MSSQL Server receiver as described in the next section.

  2. Collector を再起動します。

サンプル構成 🔗

To activate the receiver, add sqlserver to the receivers section of your configuration file:

receivers:
    sqlserver:
      collection_interval: 10s
    sqlserver/1:
      collection_interval: 5s
      username: sa
      password: securepassword
      server: 0.0.0.0
      port: 1433

次に、設定ファイルの service セクションの metrics パイプラインに、レシーバーを含めます:

service:
  pipelines:
    metrics:
      receivers:
        - sqlserver

注意

To retrieve out-of-the-box content properly you need to explicitly enable and disable specific metrics and resource attributes in your configuration file. Read more at 内蔵コンテンツを有効にする.

Configure a named instance on Windows 🔗

Windows で名前付きインスタンスを使用する場合、例えばコンピュータとインスタンス名を指定する必要があります:

receivers:
  sqlserver:
    collection_interval: 10s
    computer_name: CustomServer
    instance_name: CustomInstance
    resource_attributes:
      sqlserver.computer.name:
        enabled: true
      sqlserver.instance.name:
        enabled: true

高度な設定 🔗

以下の設定はオプションです:

  • collection_interval. 10s by default. The interval at which the receiver emits metrics.

  • instance_name。オプション。インスタンス名は、監視する特定の SQL Server インスタンスを識別します。指定しない場合は、すべてのインスタンスからメトリクスが取得されます。設定されている場合は、Windows で実行するときに computer_name も設定する必要があります。

These are the optional direct connection options:

  • username. The username used to connect to the SQL Server instance.

  • password. The password used to connect to the SQL Server instance.

  • server。接続する SQL Server インスタンスの IP アドレスまたはホスト名。

  • port. Port of the SQL Server instance to connect to.

The following are Windows-specific optional options:

  • computer_name。コンピュータ名には、監視対象のコンピュータのSQL Server名またはIPアドレスを指定します。指定する場合は、instance_name も必要です。このオプションはWindows以外の環境では無視されます。

内蔵コンテンツを有効にする 🔗

Splunk Observability Cloud provides built-in dashboards with charts that give you immediate visibility into the technologies and services being used in your environment. Learn more at Splunk Observability Cloud の組み込みダッシュボードでCollectorを監視する.

注意

For the MS SQL Server receiver out-of-the-box content to work properly you need to explicitly enable and disable specific metrics and resource attributes in your configuration file.

For more information:

Enable metrics and resource attributes 🔗

Some resource attributes, such as sqlserver.instance.name, are disabled by default.

To enable them, specify the option in your config file:

receivers:
    sqlserver:
      collection_interval: 10s
    sqlserver/1:
      collection_interval: 5s
      username: sa
      password: securepassword
      server: 0.0.0.0
      port: 1433
      resource_attributes:
        sqlserver.instance.name:
          enabled: true

設定 🔗

The following table shows the configuration options for the Microsoft SQL server receiver:

メトリクス 🔗

以下のメトリクス、リソース属性、および属性が利用可能です。

特定のメトリクスをアクティブまたは非アクティブにする 🔗

各メトリクスの metrics セクションの enabled フィールドを設定することで、特定のメトリクスをアクティブまたは非アクティブにできます。例:

receivers:
  samplereceiver:
    metrics:
      metric-one:
        enabled: true
      metric-two:
        enabled: false

以下は、アクティブ化されたメトリクスを持つホスト・メトリクス・レシーバーの構成例です:

receivers:
  hostmetrics:
    scrapers:
      process:
        metrics:
          process.cpu.utilization:
            enabled: true

注釈

無効化されたメトリクスは Splunk Observability Cloud に送信されません。

Billing 🔗

  • If you’re in a MTS-based subscription, all metrics count towards metrics usage.

  • ホストベースのプランに加入している場合、このドキュメントでアクティブ(Active: Yes)と記載されているメトリクスはデフォルトとみなされ、無料で含まれます。

Learn more at Infrastructure Monitoringのサブスクリプション使用状況(ホストとメトリクスのプラン).

トラブルシューティング 🔗

Splunk Observability Cloudをご利用のお客様で、Splunk Observability Cloudでデータを確認できない場合は、以下の方法でサポートを受けることができます。

Splunk Observability Cloudをご利用のお客様

見込み客および無料トライアルユーザー様

  • Splunk Answers のコミュニティサポートで質問し、回答を得る

  • Splunk #observability ユーザーグループの Slack チャンネルに参加して、世界中の顧客、パートナー、Splunk 社員とのコミュニケーションを図る。参加するには、Get Started with Splunk Community マニュアルの チャットグループ を参照してください。

このページは 2024年12月12日 に最終更新されました。