Skip to main content

Query Concurrent Ingest Streams

Query maximum number of concurrent ingest streams during the selected time window

Request

Request-Line

Get /lls/v1.0/analytics/ingest/queryConcurrentIngestStreams

Request Parameters

Query Parameters

ParameterTypeRequiredDescription
domainStringMandatoryIngest domain name
appStringOptionalApplication name
regionStringOptionalcountry code of the ingest node. refer to ISO 3166-1 Alpha-2.
startedTimestampOptionalTimestamp of started time in UTC timezone.
endedTimestampOptionalTimestamp of ended time in UTC timezone.

Response

Response Body

ParameterTypeRequiredDescription
domainStringMandatoryIngest domain name
appStringOptionalApplication name
startedTimestampOptionalTimestamp of started time in UTC timezone.
endedTimestampOptionalTimestamp of ended time in UTC timezone.
dataArrayMandatoryArray of Data Object

Object: Data

ParameterTypeRequiredDescription
timestampTimestampMandatoryExampling timestamp in UTC timezone.
concurrentIngestStreamsIntegerMandatorymaximum number of concurrent ingest streams

Status Codes, Error Codes and Error Messages

Status CodeError CodeError Message
400LSS.Analytics.InvalidTimestampTimestamp is empty or invalid.

Examples

Query real-time concurrent ingest streams

Request

Get /lls/v1.0/analytics/ingest/queryConcurrentIngestStreams?domain=ingest.example.com&app=demoapp HTTP/1.1

Successful Response Body

{
"domain": "ingest.example.com",
"app": "demoapp",
"data": [
{
"timestamp": "20250518T173000Z",
"concurrentIngestStreams": 18
}
]
}

Query concurrent ingest streams in specified time range

Request

Get /lls/v1.0/analytics/ingest/queryConcurrentIngestStreams?domain=live.example.com&app=demoapp&started=20250518T173000Z&ended=20250518T180000Z 

Successful Response Body

{
"domain": "ingest.example.com",
"app": "demoapp",
"started": "20250518T173000Z",
"ended": "20250518T180000Z",
"data": [
{
"timestamp": "20250518T173000Z",
"concurrentIngestStreams": 18
},
{
"timestamp": "20250518T173500Z",
"concurrentIngestStreams": 21
},
{
"timestamp": "20250518T174000Z",
"concurrentIngestStreams": 21
},
{
"timestamp": "20250518T174500Z",
"concurrentIngestStreams": 23
},
{
"timestamp": "20250518T175000Z",
"concurrentIngestStreams": 26
},
{
"timestamp": "20250518T175500Z",
"concurrentIngestStreams": 28
},
{
"timestamp": "20250518T18000Z",
"concurrentIngestStreams": 32
}
]
}

Best Practices

Rate Limiting

Rate Limits

Rate limiting is posed upon the API, please kindly check your API calls to ensure complying with the rate limit below:

  • 100 requests per minute
  • 1000 requests per hour