列出分割區執行時間中繼資料
傳回事件中樞上所有分割區的中繼資料。 請參閱 分割區描述屬性。
要求
方法 | 要求 URI |
---|---|
GET | https://{servicebusNamespace}.servicebus.windows.net/{eventHubPath}/consumergroups/{consumergroupName}/partitions |
要求標頭
如需所有與事件中樞相關的要求所使用的標頭和參數,請參閱 一般參數和標頭 。
回應
回應包括 HTTP 狀態碼、一組回應標頭和回應主體。
元素名稱 | 必要 | 類型 | 版本 | 描述 |
---|---|---|---|---|
SizeInBytes |
是,唯讀 | int | 2014-01 | 事件中樞資料分割的近似大小,以位元組為單位。 |
BeginSequenceNumber |
是,唯讀 | string | 2014-01 | 開始序號。 |
EndSequenceNumber |
是,唯讀 | string | 2014-01 | 結束序號。 |
IncomingBytesPerSecond |
是,唯讀 | string | 2014-01 | 此取用者群組中分割區) 每秒位元組的大約傳入事件速率 (。 |
OutgoingBytesPerSecond |
是,唯讀 | string | 2014-01 | 此取用者群組中資料分割的大約傳出速率 (每秒位元組數) 。 |
LastEnqueuedOffset |
是,唯讀 | string | 2015-01 | 最後一個排入佇列事件的位移。 |
LastEnqueuedTimeUtc |
是,唯讀 | string | 2015-01 | 排入佇列最後一個事件的 UTC 時間。 |
回應碼
程式碼 | 描述 |
---|---|
200 | 成功。 |
401 | 授權失敗。 |
500 | 內部錯誤。 |
回應本文
如果要求成功,回應本文會包含指定之事件中樞的所有分割區描述。 如果要求未成功,則主體包含錯誤碼和錯誤訊息。
範例
要求
注意
您也可以使用授權標頭的Azure Active Directory權杖,如Common 參數和標頭中所述。 例如:Authorization: Bearer <Azure AD token>
。
GET https://your-namespace.servicebus.windows.net/your-event-hub//consumergroups/$Default/partitions/0?timeout=60&api-version=2015-01 HTTP/1.1
Authorization: SharedAccessSignature sr=your-namespace.servicebus.windows.net&sig=your-sas-key&se=1456273000&skn=RootManageSharedAccessKey
Content-Type: application/atom+xml;type=entry;charset=utf-8
Host: your-namespace.servicebus.windows.net
回應
HTTP/1.1 200 OK
Content-Type: application/atom+xml;type=feed;charset=utf-8
Server: Microsoft-HTTPAPI/2.0
Date: Tue, 23 Feb 2016 23:36:42 GMT
Content-Length: 2252
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text">Partitions</title>
<id>https://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions?timeout=60&api-version=2015-01</id>
<updated>2016-02-23T23:36:42Z</updated>
<link rel="self" href="https://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions?timeout=60&api-version=2014-01" />
<entry xml:base="https://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions?timeout=60&api-version=2014-01">
<id>https://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions/0?api-version=2015-01</id>
<title type="text">0</title>
<published>2015-09-09T20:31:00Z</published>
<updated>2015-09-09T20:31:00Z</updated>
<link rel="self" href="partitions/0?api-version=2015-01" />
<content type="application/xml">
<PartitionDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<SizeInBytes>33554432</SizeInBytes>
<BeginSequenceNumber>0</BeginSequenceNumber>
<EndSequenceNumber>20044</EndSequenceNumber>
<IncomingBytesPerSecond>0</IncomingBytesPerSecond>
<OutgoingBytesPerSecond>0</OutgoingBytesPerSecond>
<LastEnqueuedOffset>2062040</LastEnqueuedOffset>
<LastEnqueuedTimeUtc>2016-02-23T03:22:27.024Z</LastEnqueuedTimeUtc>
</PartitionDescription>
</content>
</entry>
<entry xml:base="https://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions?timeout=60&api-version=2014-01">
<id>https://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions/1?api-version=2015-01</id>
<title type="text">1</title>
<published>2015-09-09T20:31:01Z</published>
<updated>2015-09-09T20:31:01Z</updated>
<link rel="self" href="partitions/1?api-version=2015-01" />
<content type="application/xml">
<PartitionDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<SizeInBytes>33554432</SizeInBytes>
<BeginSequenceNumber>0</BeginSequenceNumber>
<EndSequenceNumber>22907</EndSequenceNumber>
<IncomingBytesPerSecond>0</IncomingBytesPerSecond>
<OutgoingBytesPerSecond>0</OutgoingBytesPerSecond>
<LastEnqueuedOffset>2062040</LastEnqueuedOffset>
<LastEnqueuedTimeUtc>2016-02-23T03:22:27.024Z</LastEnqueuedTimeUtc>
</PartitionDescription>
</content>
</entry>
</feed>