uipath-insights

Query UiPath Insights job execution metrics, failure reasons, and process performance via the uip CLI.

9|6|Updated Aug 25, 2017
One-click install
npx skills add https://github.com/sergueik/springboot_study --skill uipath-insights-sergueik
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: uipath-insights
Source: https://github.com/sergueik/springboot_study/tree/main/basic-uipath-skills/.github/skills/uipath-insights
Command: npx skills add https://github.com/sergueik/springboot_study --skill uipath-insights-sergueik

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Monitoring automation health across UiPath Orchestrator requires digging through dashboards manually. This Skill lets you query aggregated job execution data directly from the CLI to check success rates, find failing processes, and investigate failure reasons without opening the Insights web UI. ## Core Features & Use Cases - Job KPI Summaries: Get total job counts, successful job counts, and average processing time for any time window. - Failure Analysis: Rank processes by failure count, group failures by exception reason, and drill into per-machine failure details. - Timeline Trends: Track completed and uncompleted (running/pending) jobs over time to spot stuck jobs or regressions. - Use Case: When a user asks "which processes fail the most this month?", run uip insights jobs top-failures --time-range 43200 followed by failures-by-reason to produce a ranked table of failing processes and their top error messages. ## Quick Start Ask the assistant to show the job success rate and top failing processes for the last 24 hours using uip insights.

Frequently Asked Questions about uipath-insights

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check my UiPath job success rate from the CLI?

Run uip insights jobs summary with a time range, for example --time-range 1440 for the last 24 hours. The JSON response includes jobsCount and successfulJobsCount, from which you can derive the success or failure rate.

How to find which UiPath processes fail the most?

Use uip insights jobs top-failures with a wide window such as --time-range 43200 (30 days). It returns process names ranked by failure count, and you can follow up with failures-by-reason to see the exception messages behind them.

Why does uip insights jobs fail with a time range error?

Every uip insights jobs subcommand requires either --time-range in minutes or both --started-after and --started-before as epoch milliseconds. Omitting the time range causes a validation error or a server 500 response.

Can I filter UiPath Insights queries by folder or process name?

Yes, all subcommands accept --folder-key, --process-name, and --machine-name, and each is repeatable for multiple values. Folder keys can be discovered with uip or folders list from the uipath-platform skill.

Can this skill start, stop, or debug individual UiPath jobs?

No, it is read-only monitoring and analytics. Use uipath-platform for starting, stopping, or reading logs of jobs, and uipath-troubleshoot for root-cause debugging of a specific job error.