【问题标题】:AWS: How to find out whether someone is trying to mount the volume or copy the EBS volumeAWS:如何查明是否有人在尝试挂载卷或复制 EBS 卷
【发布时间】:2021-02-16 01:46:05
【问题描述】:

我为我的 EBS 卷启用了云监控,它为我提供了一些指标,例如 BurstBalance、VolumeWriteOpS、VolumeQueueLengts 等

我想了解如何确定是否有人在尝试挂载卷或复制 EBS 卷。我需要与 Cloud Trail 集成吗?

【问题讨论】:

    标签: amazon-web-services amazon-ec2 amazon volumes


    【解决方案1】:

    挂载卷

    这是从实例完成的。我认为您无法检测到在 EBS 卷已附加到实例之后的任何挂载尝试。

    我需要与 Cloud Trail 集成吗?

    您也可以使用 CloudWatch Events,无需试用。例如,事件可能是:

    {
      "source": [
        "aws.ec2"
      ],
      "detail-type": [
        "EBS Snapshot Notification"
      ],
      "detail": {
        "event": [
          "copySnapshot"
        ]
      }
    }
    

    或

    {
      "source": [
        "aws.ec2"
      ],
      "detail-type": [
        "EBS Volume Notification"
      ],
      "detail": {
        "event": [
          "attachVolume"
        ]
      }
    }
    

    【讨论】:

      猜你喜欢
      • 2018-12-12
      • 1970-01-01
      • 2021-11-06
      • 1970-01-01
      • 2020-12-26
      • 2017-07-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多