Submit and upvote ideas to make Liongard better. You have unlimited votes and can vote on each idea one time. 🙂
The Product Team is constantly reading your ideas and while we can’t promise that all ideas will become a reality, we value your feedback and promise to always have our Partners in mind when building and improving Liongard.
Check out our FAQs to learn more.
See what we've shipped by clicking here!
🗣️ We’re planning our roadmap and want to know what’s important to you!
Take our short survey now.
From Matt Clark and Patrick Lenz in RUN.
Can we add Auvik's billing API to Roar's data print for the Auvik inspector? https://auvikapi.us1.my.auvik.com/docs#tag/Usage
Use case:Â Create a metric to track billable devices in Auvik
Last Reviewed Date | 2022-01-09 |
Harvey, that metric is pretty close, but seems to be off by one here and there on a few sites I have (haven't gotten to figuring out why). I wrote one myself, and it's not exactly the same either (thanks for the "contains()" trick!):
length(Devices[?contains(`["switch","firewall","router","controller","l3Switch","voipSwitch"]`, attributes.deviceType) && contains(~.DeviceDetails[?attributes.discoveryStatus.snmp == 'authorized' || attributes.discoveryStatus.login == 'privileged'].id,relationships.deviceDetail.data.id)])
But another thing that integration for billing would help with is getting information about whether the Site Type is Essentials or Performance... can't seem to find that anywhere in the data print.
Attachments Open full size
You can get billable device count in a metric with this query:
Devices[?contains(`["switch","firewall","router","controller","l3Switch"]`, attributes.deviceType) && attributes.serialNumber != ""] | length(@)
You can add the other billable devices like stackand controller I think, but I don't have any of those in my environment.
Attachments Open full size