You are developing an Azure-hosted application that processes request messages for multiple office locations.
You create an Azure Service Bus topic named Requests. The topic has a maximum size of 5 gigabytes (GB)
and a default message time to live (TTL) of 5 minutes. You also create subscriptions named PriorityRequest
and StandardRequest and include appropriate logic to route the messages.
Users report that the application has not processed messages from PriorityRequest in several days.
You need to retrieve the number of messages in the PriorityRequest subscription.
Which metric Should you use?

A.
Subscription Length
B.
Subscription Incoming Requests
C.
Topic Incoming Messages
D.
Topic Size
I’m not sure about this one, could someone confirm correct answer is D ?
0
0
For me correct answer should be to use the MessageCountDetails Class, but is not in the answers provided.
This class contains properties that enable you to retrieve details of messages from sub-queues of primary messaging entities (queues, topics, subscriptions).
https://docs.microsoft.com/en-us/dotnet/api/microsoft.servicebus.messaging.messagecountdetails?view=azure-dotnet
https://docs.microsoft.com/en-us/azure/service-bus-messaging/message-counters
0
0
A. Subscription Length
https://docs.microsoft.com/en-us/rest/api/servicebus/available-metrics
0
0
Agree
0
0
Besides, part of that new 254Q 70-532 dumps are available here:
https://drive.google.com/open?id=0B-ob6L_QjGLpfmZSUFFPa0F4WENQMGl3SjhPSkpaTWlzakMwRzF6d2ctUWRTa1V4TTU1c0E
Best Regards!
0
1
D is NOT correct; this is the size of an queue/topic in bytes and not the number of messages.
B and C are also not correct because these counts are time related.
A does not exist (anymore).
The correct answer should be Messages because it contains the count of messages in a Queue/Topic.
0
0