{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #3460 of commit fbe53cd1029d4368dc002a9637c7f7ed53caa80b, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/3460/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "fbe53cd1029d4368dc002a9637c7f7ed53caa80b"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/chenhengqi/bcc.git"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLogin",
          "value" : "yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLoginMention",
          "value" : "@yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullId",
          "value" : "3460"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "add-mountsnoop"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "add-mountsnoop"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : "chenhengqi@outlook.com"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "chenhengqi"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@chenhengqi"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #3460 of commit fbe53cd1029d4368dc002a9637c7f7ed53caa80b, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "libbpf-tools: add mountsnoop"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/3460"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "This commit adds a new libbpf tool mountsnoop.\\r\\nIt has the same functionalities just as its\\r\\ncounterpart in BCC tools. The default output\\r\\nis the same.\\r\\n\\r\\n```\\r\\n$ mountsnoop\\r\\nCOMM             PID     TID     MNT_NS      CALL\\r\\ndockerd          1827    1903    4026531840  mount(\\\"overlay\\\", \\\"/data/docker/overlay2/153e6b58322c64cf4b2aac1b9caba42d390481a7d33a2bffe0eb858943d49fb6-init/merged\\\", \\\"overlay\\\", 0x0, \\\"index=off,lowerdir=/data/docker/overlay2/l/GWTHHZ2C3PYGAJ5GLTWLHMHHKR,upperdir=/data/docker/overlay2/153e6b58322c64cf4b2aac1b9caba42d390481a7d33a2bffe0eb858943d49fb6-init/diff,workdir=/data/docker/overlay2/153e6b58322c64cf4b2aac1b9caba42d390481a7d33a2bffe0eb858943d49fb6-init/work\\\") = 0\\r\\ndockerd          1827    1903    4026531840  umount(\\\"/data/docker/overlay2/153e6b58322c64cf4b2aac1b9caba42d390481a7d33a2bffe0eb858943d49fb6-init/merged\\\", MS_NOSUID) = 0\\r\\n```\\r\\n\\r\\nAlso, we provide a detailed mode enabled by -d\\r\\noption which displays each mount/umount syscall\\r\\nvertically with more field. In this way, the\\r\\noutput looks more friendly.\\r\\n\\r\\n```\\r\\n$ mountsnoop -d -t\\r\\nPID:    1827\\r\\nTID:    1864\\r\\nCOMM:   dockerd\\r\\nOP:     MOUNT\\r\\nRET:    0\\r\\nLAT:    246us\\r\\nMNT_NS: 4026531840\\r\\nFS:     overlay\\r\\nSOURCE: overlay\\r\\nTARGET: /data/docker/overlay2/5fc51d4e4820082177751a8aadf3f42a751c86aff1e0efbc1a5e6af345ee205a-init/merged\\r\\nDATA:   index=off,lowerdir=/data/docker/overlay2/l/GWTHHZ2C3PYGAJ5GLTWLHMHHKR,upperdir=/data/docker/overlay2/5fc51d4e4820082177751a8aadf3f42a751c86aff1e0efbc1a5e6af345ee205a-init/diff,workdir=/data/docker/overlay2/5fc51d4e4820082177751a8aadf3f42a751c86aff1e0efbc1a5e6af345ee205a-init/work\\r\\nFLAGS:  0x0\\r\\n\\r\\nPID:    1827\\r\\nTID:    1864\\r\\nCOMM:   dockerd\\r\\nOP:     UMOUNT\\r\\nRET:    0\\r\\nLAT:    95us\\r\\nMNT_NS: 4026531840\\r\\nFS:\\r\\nSOURCE:\\r\\nTARGET: /data/docker/overlay2/5fc51d4e4820082177751a8aadf3f42a751c86aff1e0efbc1a5e6af345ee205a-init/merged\\r\\nDATA:\\r\\nFLAGS:  MS_NOSUID\\r\\n```\\r\\n\\r\\nSigned-off-by: Hengqi Chen <chenhengqi@outlook.com>"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCommentBody",
          "value" : "[buildbot, test this please]"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbGhRepository",
          "value" : "iovisor/bcc"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCredentialsId",
          "value" : "6d3daf13-69b8-48b1-9c8f-ec5353264113"
        }
      ]
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : "<a title=\"libbpf-tools: add mountsnoop\" href=\"https://github.com/iovisor/bcc/pull/3460\">PR #3460</a>: libbpf-tools: add mountsnoop",
  "displayName" : "#1094",
  "duration" : 1324390,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #1094",
  "id" : "1094",
  "keepLog" : False,
  "number" : 1094,
  "queueId" : 8761,
  "result" : "SUCCESS",
  "timestamp" : 1627931942367,
  "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/1094/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc25/1094/"
    },
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc26/1094/"
    },
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc27/1094/"
    },
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc28/1094/"
    },
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1604/1094/"
    },
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1710/1094/"
    },
    {
      "number" : 1094,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1804/1094/"
    }
  ]
}