Hi @Jignesh Vala ,
The info you want to monitor is generated as Standard Metrics by the EventHub Resource.
When you create Azure Monitor - Alert Rule - based on Metrics, you can only do simple logic verification, and you cannot perform mathematical operations in the alert logic.
When you need to perform various analysis / operations on metrics values, you need to store those metrics as logs inside a Log Analytics Workspace.
To do this, you will have to create a Diagnostic Setting on your Event Hub, where you configure AllMetrics to be streamed to a Log Analytics Workspace.
NOTE: When you send metrics / diagnostic logs to a Log Analytics Workspace, you will end up generating costs on that Log Analytics Workspace resource based on the amount of GB you ingest in the Workspace, according with the Log Analytics Workspace pricing.
Once the metrics are in the Log Analytics Workspace, you can build your Kusto Query (Logs search) where you query the Metrics Values (found in the AzureMetrics table) and perform the required mathematical operations / analysis.
Once you have such a query, you can then create an Azure Monitor - Alert Rule - with a Custom Log Search signal, that will run the same Query periodically for you and generate an alert based on a specified criteria.
I hope this will help you!
BR,
George
P.S. please remember to mark as an answer when applicable.