Bestpractices ベストプラクティス セキュリティ Vaultを使用する 1 2 3 4 5 6 7 8 9 10# ✅ 推奨 password: configuration_from: type: vault secret_key: path: 'secret/mysql' key: 'password' # ❌ 非推奨 password: 'plaintext_password' 最小権限の原則 監視専用ユーザーを作成 必要最小限の権限のみ付与 SSL/TLS接続を使用 1 2 3com.instana.plugin.mysql: sslTrustStore: '/path/to/truststore.jks' sslTrustStorePassword: 'truststore_password' パフォーマンス 適切なポーリング間隔 1 2 3 4 5 6 7# 重要なサービス com.instana.plugin.mysql: poll_rate: 10 # 一般的なサービス com.instana.plugin.redis: poll_rate: 30 フィルタリングを使用 1 2com.instana.plugin.kafka: topicsRegex: '^(prod-|important-).*' 運用 タグ付けの一貫性 1 2 3 4 5com.instana.plugin.host: tags: - 'env:production' - 'app:web-frontend' - 'team:platform' 設定ファイルの分割 1 2 3configuration.yaml configuration-databases.yaml configuration-cloud.yaml