Create Bundle

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Create a new support bundle.

Since: 4.3.0

Security: Requires an admin user

Notes: All bundle items are optional.

Usage: POST /api/system/support/bundle/

Sample Usage:

POST /api/system/support/bundle

{  
   "name":"<name of support bundle>",
   "description":"<desc of support bundle>",
   "parameters":{  
      "configuration": "<true | false>",       // Default: true.
      "system": "<true | false>",              // Default: true.
      "collectSlowQueriesFromDatabase":  "<true | false>", // Default: false. Supported databases: Postgresql, Mysql, MariaDB, and Mssql      
      "logs":{  
         "include": "<true | false>",          // Default: true.
         "start_date":"<start date from which to fetch the logs. pattern: YYYY-MM-DD>",
         "end_date":"<end date until which to fetch the logs. pattern: YYYY-MM-DD>"
      },
      "thread_dump":{  
         "count": <number of times to collect thread dump. Default:1>,
         "interval": <Interval between times of collection in milliseconds. Default:0>
      }
   }
}