drill icon indicating copy to clipboard operation
drill copied to clipboard

Error: Segmentation fault

Open douglasg14b opened this issue 1 year ago • 0 comments

Trying to run this for the first time on Ubuntu 20.04 and it just outputs:

./drill --benchmark drillBenchmark.yml
Concurrency 55
Iterations 55
Rampup 0
Base URL [reacted]

Segmentation fault

Using the release: drill_0.8.1_x86_64-unknown-linux-musl

From this config:

---
threads: 5
base: '[redacted]'
iterations: 55

plan:
  - name: Send Analytics Data
    request:
      url: /api/v1/analytics/event
      method: POST
      headers:
        Cookie: "...."
        Content-Type: "application/json"
      body: >
        {
          "eventData": {
            "type": "action",
            "name": "ButtonClick_SendVerificationButton",
            "buttonName": "back"
          },
          "context": {
            "scope": "EnterMDNDialog_SendVerificationButton",
            "scopes": ["EnterMDNDialog", "SendVerificationButton"],
            "app": { "appName": "my-app", "appPath": "/my-app", "version": 2 },
            "device": { "os": "Windows", "browser": "Firefox" },
            "identities": { "deviceId": "abcd-1234", "customerId": "abcd-1234" },
            "extra": {
              "isSubscriber": true,
              "verificationType": "MDN",
              "componentType": "BUTTON"
            },
            "meta": {
              "isTest": true,
              "artificial": false
            }
          }
        }

douglasg14b avatar Feb 02 '23 21:02 douglasg14b