共用方式為


取得分割區執行時間中繼資料

傳回事件中樞上指定資料分割的中繼資料。 請參閱 資料分割描述屬性

要求

方法 要求 URI
GET https://{servicebusNamespace}.servicebus.windows.net/{eventHubPath}/consumergroups/{consumergroupName}/partitions/{partitionId}

要求標頭

如需與事件中樞相關的所有要求所使用的標頭和參數,請參閱 一般參數和標頭

回應

回應包括 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 權杖作為 授權 標頭,如 一般參數和標頭中所述。 例如: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=entry;charset=utf-8  
Server: Microsoft-HTTPAPI/2.0  
Date: Tue, 23 Feb 2016 23:34:13 GMT  
Content-Length: 910  
  
<?xml version="1.0" encoding="UTF-8"?>  
<entry xmlns="http://www.w3.org/2005/Atom">  
   <id>sb://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions/0?timeout=60&api-version=2014-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="sb://your-namespace.servicebus.windows.net/your-event-hub/consumergroups/$Default/partitions/0?timeout=60&api-version=2014-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>