How do I check how many messages I used so far on Azure IoT Central ?

QuantumCache 20,031 Reputation points
2020-05-14T17:33:38.347+00:00

I could not find this anywhere, but is there a way to see the number of messages you send to and from Azure IoT Central? I am currently using the standard tier 2 for a project and wanted to see how many messages I used already during the month. On the pricing page it says it says 60000 messages for two devices but doesn't say anything about viewing it. 

[Note: As we migrate from MSDN, this question has been posted by an Azure Cloud Engineer as a frequently asked question] Source: MSDN

Azure IoT Central
Azure IoT Central
An Azure hosted internet of things (IoT) application platform.
342 questions
0 comments No comments
{count} votes

Accepted answer
  1. AshokPeddakotla-MSFT 27,311 Reputation points
    2020-05-14T17:34:38.42+00:00

    You can use the Azure CLI IoT extension to see the messages your devices are sending to IoT Central and observe changes in the device twin.

    Use the below command to monitor the device telemetry and messages that are being sent to your IoT Central app from your devices. This will include all headers and annotations.

    az iot central app monitor-events --app-id {app_id}  
    

    For more details and other available options, please refer az iot central app monitor-events cmdlets.

    Hope this helps.

    Source:MSDN

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Gang Liu 0 Reputation points
    2024-02-28T21:32:21.3766667+00:00

    az iot central diagnostics monitor-events --app-id {app_id}

    0 comments No comments