{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #2476 of commit fc3328de62d8b1dd06b3828ee65780a9c9199ffc, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/2476/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "fc3328de62d8b1dd06b3828ee65780a9c9199ffc"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : "Dave Marchevsky"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : "davemarchevsky@gmail.com"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/davemarchevsky/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" : "2476"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "usdt_partial_init"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "usdt_partial_init"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : "davemarchevsky@gmail.com"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "davemarchevsky"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@davemarchevsky"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #2476 of commit fc3328de62d8b1dd06b3828ee65780a9c9199ffc, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "Add allow_partial_usdt_init param so partial init of USDT vector is possible"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/2476"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "Looking for early feedback here before I write tests / flesh this out more.\\r\\n\\r\\nConsider this scenario: I'm hoping to attach USDTs to many short-lived processes, let's say 30. I want to gather data from USDT handlers on these processes for 5 seconds. It's guaranteed that at least one of the processes that was alive when I constructed the vector of USDTs to pass into `BPF::init` will not be alive by the time the 5 seconds are up. I'm OK with this and would still like to gather as much data as possible.\\r\\n\\r\\nIf the process dies after `USDT::init()` is successful but before `attach_usdt` is called, we're already OK because we can handle each `StatusTuple` independently outside of `bcc`. Similarly, if process dies between `attach_usdt` and `detach_usdt` calls, we're fine for same reason.\\r\\n\\r\\nBut if it dies between construction of `USDT` object and `USDT::init()` being called by `BPF::init()`, we currently consider failure to init any `USDT` critical enough to stop the whole `BPF::init()`. \\r\\n\\r\\nThis PR adds a `allow_partial_usdt_init` param to `BPF::init` to let users of `bcc` signal that they're OK with `USDT::init()` failures. `USDT::initialized()` getter is added so `bcc` user can check which `USDT`s succeeded / failed.\\r\\n\\r\\nOne downside of this initial pass is that the info in `StatusTuple`s for `USDT::init` is lost. So if we have some `USDT::init` failures when `allow_partial_usdt_init` is `true` it'll be hard to get visibility into them. \\r\\n\\r\\n/cc @yonghong-song "
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCommentBody",
          "value" : "null"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbGhRepository",
          "value" : "iovisor/bcc"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCredentialsId",
          "value" : "6d3daf13-69b8-48b1-9c8f-ec5353264113"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : "<a title=\"Add allow_partial_usdt_init param so partial init of USDT vector is possible\" href=\"https://github.com/iovisor/bcc/pull/2476\">PR #2476</a>: Add allow_partial_usdt_init...",
  "displayName" : "#125",
  "duration" : 1132238,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #125",
  "id" : "125",
  "keepLog" : False,
  "number" : 125,
  "queueId" : 1028,
  "result" : "SUCCESS",
  "timestamp" : 1573755441917,
  "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/125/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc25/125/"
    },
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc26/125/"
    },
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc27/125/"
    },
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc28/125/"
    },
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1604/125/"
    },
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1710/125/"
    },
    {
      "number" : 125,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1804/125/"
    }
  ]
}