Skip to main content
Monitoring & Collection/Scrape Collection
GETMonitoringSince 1.0SynchronousAuth Required

GetScrapeImportConfig

Retrieve the current scrape import configuration limits and settings

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • maxRowsPerImportInteger

    Maximum number of rows allowed per import request

    Example: 1000

  • maxFileSizeMbInteger

    Maximum CSV file size in megabytes

    Example: 10

  • allowPartialModeBoolean

    Whether partial imports (skipping invalid rows) are permitted

    Example: true

Endpoint

GET/api/v1/monitoring/scrape-configs/import/config

/api/v1/monitoring/scrape-configs/import/config

Operation ID

GetScrapeImportConfig

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/scrape-configs/import/config' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "maxRowsPerImport": 1000,
  "maxFileSizeMb": 10,
  "allowPartialMode": true
}

Change History

This API has no change history records yet.

View all change history