Retrieve metrics for a specific source based on the provided parameters.
This endpoint returns metrics data for a given source ID, allowing flexibility in the type of metrics returned (timeseries, timesummary, or latest), the time interval, and the time range. The response includes metadata about the metrics and is tailored to the specified time type.
timeseries: Metrics over a series of time intervals.timesummary: Aggregated summary of metrics over the specified period.latest: The most recent metrics available.time_interval to define the granularity (e.g., 1 hour, 2 days).2025-03-02T07:10:15Z). Defaults to 24 hours before the current time if not provided.read:source_metrics permission.Depending on the time_type:
SourceTimeseriesMetricsWithMetadata: For timeseries metrics.SourceTimesummaryMetricsWithMetadata: For timesummary metrics.SourceLatestMetricsWithMetadata: For latest metrics.https://api.streamkap.com/sources/67ad6e0af08a2365c729ba79/metrics?time_type=latest&time_interval=2&time_unit=hour×tamp_from=2025-03-02T07:10:15Z×tamp_to=2025-03-04T07:10:15Z
{
"data": {
"SnapshotTotalNumberOfEventsSeen": 20254,
"SnapshotMilliSecondsSinceLastEvent": 0,
"StreamingMilliSecondsBehindSource": 0,
"StreamingTotalNumberOfDeleteEventsSeen": 312,
"StreamingTotalNumberOfUpdateEventsSeen": 0,
"StreamingTotalNumberOfCreateEventsSeen": 73,
"StreamingMilliSecondsSinceLastEvent": 0,
"StreamingLastEvent": "position: {ord: 14}, key: {"id" : ""ceaafb88-2a60-4bd9-8515-719ba64ea05c-close""}",
"recordRetryTotal": null,
"byteTotal": 9018776,
"sourceRecordWriteTotal": 28977,
"SnapshotRunning": 0,
"SnapshotCompleted": 0,
"StreamingConnected": 1,
"recordSendTotal": null,
"state": "Streaming",
"streamingState": "connected",
"snapshotStatus": [
{
"status": "completed",
"topic_id": "source_67a5c35e64af6fd83f4c17a6.Test.test_data1",
"submit_timestamp": null
},
{
"status": "completed",
"topic_id": "source_67a5c35e64af6fd83f4c17a6.Test.test_data2",
"submit_timestamp": null
}
],
"snapshotState": "completed",
"recordWrittenTotal": null,
"connector_status": "Active",
"latency": 0
},
"metadata": {
"state": {
"name": "Enabled State",
"unit": "enum"
},
"streamingState": {
"name": "Streaming State",
"unit": "enum"
},
"snapshotStatus": {
"name": "Snapshot Status",
"unit": "enum"
},
"snapshotState": {
"name": "Snapshot State",
"unit": "enum"
},
"connector_status": {
"name": "Source State",
"unit": "enum"
},
"latency": {
"name": "Source Latency",
"unit": "milliseconds"
},
"byteTotal": {
"name": "Volume",
"unit": "bytes"
},
"recordRetryTotal": {
"name": "Retried",
"unit": "count"
},
"recordSendTotal": {
"name": "Received",
"unit": "count"
},
"recordWrittenTotal": {
"name": "Events Written",
"unit": "count"
},
"SnapshotTotalNumberOfEventsSeen": {
"name": "Events (Snapshot)",
"unit": "count"
},
"SnapshotRunning": {
"name": "Snapshot Running?",
"unit": "boolean"
},
"SnapshotCompleted": {
"name": "Snapshot Completed?",
"unit": "boolean"
},
"SnapshotMilliSecondsSinceLastEvent": {
"name": "Time Since Last Snapshot Event",
"unit": "milliseconds"
},
"StreamingMilliSecondsBehindSource": {
"name": "Latency Behind Source",
"unit": "milliseconds"
},
"StreamingConnected": {
"name": "Streaming Connected?",
"unit": "boolean"
},
"StreamingTotalNumberOfDeleteEventsSeen": {
"name": "Events (Delete)",
"unit": "count"
},
"StreamingTotalNumberOfUpdateEventsSeen": {
"name": "Events (Update)",
"unit": "count"
},
"StreamingTotalNumberOfCreateEventsSeen": {
"name": "Events (Create)",
"unit": "count"
},
"StreamingMilliSecondsSinceLastEvent": {
"name": "Time Since Last Streaming Event",
"unit": "milliseconds"
},
"StreamingLastEvent": {
"name": "Last Streaming Event",
"unit": "id"
},
"sourceRecordWriteTotal": {
"name": "Events Written",
"unit": "count"
}
}
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Type of the metrics. Type of the metrics.
timeseries, timesummary, latest The interval between each metrics data point. The interval between each metrics data point.
The unit of the time interval. Combined with time_interval to determine the interval between each metrics data point. For example, if time_interval=1 and time_unit=hour, the interval between each metrics data point is 1 hour. The unit of the time interval. Combined with time_interval to determine the interval between each metrics data point. For example, if time_interval=1 and time_unit=hour, the interval between each metrics data point is 1 hour.
minute, hour, day, week, month Start time of the metrics data in UTC timezone. If not provided, start time is set to 24 hours before the current time. Start time of the metrics data in UTC timezone. If not provided, start time is set to 24 hours before the current time.
End time of the metrics data in UTC timezone. If not provided, end time is set to the current time. End time of the metrics data in UTC timezone. If not provided, end time is set to the current time.
Successful Response
Source timeseries metrics.
{
"SnapshotMilliSecondsSinceLastEvent": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 500
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 300
}
],
"SnapshotTotalNumberOfEventsSeen": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 100
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 150
}
],
"StreamingMilliSecondsBehindSource": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 1000
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 800
}
],
"StreamingMilliSecondsSinceLastEvent": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 200
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 150
}
],
"StreamingTotalNumberOfCreateEventsSeen": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 20
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 35
}
],
"StreamingTotalNumberOfDeleteEventsSeen": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 5
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 8
}
],
"StreamingTotalNumberOfUpdateEventsSeen": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 30
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 45
}
],
"byteTotal": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 10000
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 15000
}
],
"recordRetryTotal": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 2
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 3
}
],
"recordSendTotal": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 50
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 70
}
],
"recordWrittenTotal": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 40
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 60
}
],
"sourceRecordWriteTotal": [
{
"timestamp": "2025-03-02 08:00:00",
"value": 25
},
{
"timestamp": "2025-03-02 09:00:00",
"value": 40
}
]
}