
Announcements
I am new to powerapp and was wondering if there is a way to get the following metrics
from the device that is submitting the form from power apps. I don't see this information in the monitoring tool. If there aren't any in built ways are there any tools that can be recommended.
The app in question is a canvas app, that uses sql connections and power automate connections.
Hi @Kaido1
You can get Browser info and OSType from the Host property
You can get the version number by adding the Power Apps for Makers connector to your App and then using the following to get the version number count:
CountRows(PowerAppsforMakers.GetAppVersions(First(Filter(PowerAppsforMakers.GetApps().value,properties.displayName = "version")).name).value)
It's not possible to get the network IP/type and the device make/model as the iFrame the App is hosted within does not have access to that information from your browser.