DScope
Toggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Server Metas

The server_metas dataset is a JSONL-formatted listing of info on every DScope collection instance allocated during each day.

Location

This dataset has both public and private versions:

  • public: s3://dscope-datasets-public/metas/{date}.jsonl.zst
  • private: s3://dscope-datasets-private/metas/{date}.jsonl.zst

Format

For each DScope collection date, lines contain the following fields in JSON format:

NameDescription
IdAWS EC2 Instance ID
ZoneAWS EC2 Zone name. Note that zone names vary across accounts, and are not guaranteed to be consistent in the dataset.
ZoneIdThe Zone ID. These are consistent across accounts but not present in all meta records.
LaunchTimeApproximate instance launch time (from EC2 metadata service)
RecordStartTimeExact time the instance started recording traffic.
PublicIpEC2 Public IP assigned to the instance. Note: in the public version the last octet of this is deterministically randomized. The same IP is randomized the same way every time.
TargetRecordDurationHow long the instance was configured to record for, in seconds
InstanceTypeThe EC2 instance type of the recording instance
BootTimeThe boot time of the instance as measured by the Linux kernel
BuildVersionGit hash of the DScope collector version running.
{
    "Id":"i-002736336124bab72",
    "Zone":"ap-northeast-1a",
    "ZoneId":"apne1-az4",
    "LaunchTime":"2023-06-01T21:29:50Z",
    "RecordStartTime":"2023-06-01T21:31:15.54268348Z",
    "PublicIp":"43.207.225.165",
    "TargetRecordDuration":600,
    "InstanceType":"t4g.nano",
    "BootTime":"2023-06-01T21:29:43.93266199Z",
    "BuildVersion":"3a7c9a7"
}

Caveats

Measurement Applications