AutoSys WCC Flow View — Cascade Failure Detection
A missing upstream file stalled 47 jobs at 2 AM.
- WCC is the browser-based UI for AutoSys, hosted on Tomcat (port 8080/8443).
- Key views: Monitor > Jobs (real-time list), Flow View (dependency graph), Job Activity (timeline).
- Every WCC action maps to a sendevent command — it's a visual wrapper, not a different control plane.
- Performance: WCC auto-refreshes every ~30 seconds; for immediate status use autostatus or autorep.
- Production insight: During an incident, Flow View shows blast radius in seconds; click a failed job to jump to its logs.
- Biggest mistake: Confusing WCC's refresh lag with real-time — don't trust WCC for sub-second job status without CLI cross-check.
WCC is the cockpit for AutoSys. Instead of running command-line queries to check job statuses, WCC gives you a live visual dashboard — a map of all your jobs, colour-coded by status, with dependency lines showing how they connect. When something goes red at 3 AM, this is where you look first.
WCC (Workload Control Center) is the browser-based monitoring and management UI for AutoSys. It's hosted on Apache Tomcat (which AutoSys installs automatically) and accessible via a standard web browser. While experienced admins often prefer the command line for speed, WCC is invaluable for understanding the state of a complex job flow at a glance — especially during incident response.
Accessing WCC
WCC runs on the AutoSys application server. The default URL is typically http://autosys-server:8080/wcc or https://autosys-server:8443/wcc for SSL.
Before you can access it, verify Tomcat is running. The AutoSys installation includes a bundled Tomcat server configured specifically for WCC. You'll find the startup scripts in $AUTOSYS/wcc/bin/.
If you're running WCC in a clustered environment, each application server hosts its own WCC instance. You'll need to know the hostname or load balancer VIP. Most teams bookmark the URL in their on-call browser profile — don't be the person fumbling for a bookmark at 3 AM.
Key WCC views for day-to-day monitoring
WCC provides several views. These are the ones you'll use most:
Monitor > Jobs: A real-time list of all jobs with their current status, colour-coded. Filterable by status, machine, owner, or name pattern. This is your primary monitoring view.
Monitor > Flow View: Shows jobs as nodes in a dependency graph with connecting arrows. When a job fails, you can immediately see which downstream jobs are blocked. Essential for understanding impact during incidents.
Monitor > Job Activity: A timeline view showing job start and end times. Useful for spotting jobs that are running longer than usual.
Administration > Calendars: View and manage AutoSys calendars.
Administration > Machines: View agent machine status — which are ACTIVE, MISSING, or INACTIVE.
Using WCC during an incident
When the on-call team gets paged at 3 AM because a batch run is failing, WCC is where you start. The flow of an incident investigation:
- Open WCC and go to Monitor > Jobs. Filter by status = FAILURE to see all failed jobs.
- Click on the first failed job — it's likely the root cause if multiple jobs failed.
- Switch to Flow View to see the dependency chain. This shows you exactly which downstream jobs are blocked.
- Check the failed job's logs by clicking 'View Log' or checking its std_out_file attribute.
- After fixing the root cause, Force Start the failed job via right-click → Force Start.
- Monitor the downstream jobs as they cascade from ACTIVATED to RUNNING to SUCCESS.
Pro tip: In large environments, use the filter to show only jobs that are ON HOLD or FAILURE — this reduces noise and highlights the critical path.
Understanding Monitor > Jobs View
The Monitor > Jobs view is your day-to-day dashboard. It displays a table of all jobs with columns: Job Name, Status, Last Start Time, Last End Time, Machine, Owner, and Exit Code. You can sort by any column and filter by status, machine, owner, or job name pattern.
Color coding: SUCCESS (green), FAILURE (red), RUNNING (blue), ACTIVATED (yellow), ON HOLD (grey), INACTIVE (white). This makes status scanning fast.
You can right-click any job to perform actions: Force Start, Hold, Rerun, Kill, Release. The actions are equivalent to sendevent commands.
One overlooked feature: the 'View Log' popup shows the last N lines of the job's stdout and stderr. However, if the log is on the agent and the agent is unreachable, this won't work. Always have direct SSH access as a fallback.
Pro tip: Save a custom filter for jobs on your team's critical path. For example, filter by job name pattern PAYROLL% and status != SUCCESS to quickly spot non-green jobs in the nightly batch.
tail -100 via SSH instead.Monitor > Flow View: Managing Dependencies Visually
Flow View is WCC's most powerful feature for incident response. It displays jobs as nodes in a directed graph, with arrows representing condition dependencies (SUCCESS, FAILURE, EXIT code, etc.). You can zoom in/out, pan, and click any node to see its details.
When a job fails, its node turns red. All downstream jobs that depend on it are highlighted as blocked (ON HOLD or ACTIVATED with greyed-out arrows). This visual representation immediately answers the question: 'What is affected?'
You can also edit dependencies from Flow View? No — WCC is read-only for dependencies. You must use JIL to change conditions. However, you can view the dependency details by clicking a job and looking at the 'Depends' tab.
Flow View also supports 'Trace' mode: click a job and select 'Trace Upstream' — this highlights all jobs that must succeed before this one can run. Useful for debugging a stuck ACTIVATED job.
Pro tip: In large flows with hundreds of jobs, use the Filter in Flow View to show only jobs with status = FAILURE or ON HOLD. This declutters the graph and highlights the problem chain.
- Each job = a component in the circuit.
- Arrows = wires carrying voltage (conditions).
- Failed job = blown fuse. Red node = fuse blown.
- Downstream jobs = components waiting for power. They won't run until the upstream fuse is replaced.
- WCC Flow View is the circuit schematic — trace the failure path from the blown fuse.
Administering Machines and Calendars
The Administration views in WCC let you manage two critical aspects of AutoSys: machines and calendars.
Administration > Machines: Shows a list of all machines connected to the AutoSys application server. Each machine has a status: ACTIVE (agent is connected and healthy), MISSING (agent not responding after 20 minutes), INACTIVE (agent was deactivated). If a machine is MISSING, jobs assigned to that machine will stay in ACTIVATED state waiting for an available agent. You can right-click a machine to toggle its status or view properties.
Administration > Calendars: View and manage calendar definitions. Calendars control which days jobs run. You can create, edit, delete calendars. Changes take effect immediately — no restart needed. Pro tip: Never delete a calendar that's still referenced by active jobs. WCC will warn you, but double-check with autocal_asc first.
Limitation: WCC does not allow you to add or remove machines — only view and change their status. Machine registration is done via JIL or the AutoSys admin utility.
Pro tip: Use the Machine view during an incident to verify that the agent on the critical machine is ACTIVE. A MISSING agent is a common root cause of stuck jobs.
Troubleshooting WCC Connectivity and Performance
WCC can be temperamental. Here are common issues and what to check:
WCC won't load: Check Tomcat process with ps -ef | grep tomcat. If Tomcat is running, check if the port is listening: ss -tlnp | grep 8080. If Tomcat is not running, start it: $AUTOSYS/wcc/bin/startup.sh. If it crashes immediately, check catalina.out for OutOfMemory errors or port conflicts.
Slow page loads: WCC performance degrades when the database (where AutoSys stores job data) is under load. Also, a large number of jobs (10k+) can slow down the initial page load. Tip: Use filters to reduce the data returned. For example, filter by a specific machine or job name pattern before loading.
Session timeout: WCC has a configurable session timeout (default 30 minutes). If you step away, you'll be logged out. The session is in Tomcat's web.xml. You can extend it, but that's a security trade-off.
Stale data across multiple tabs: If you have multiple WCC tabs open, each may have its own session. They don't auto-sync. Closing and reopening WCC is the quick fix.
WCC vs CLI conflict: Sometimes WCC shows a job as RUNNING but the CLI shows it as SUCCESS. This is a browser cache issue. Press Ctrl+F5 or clear the browser cache.
Log viewer fails: The 'View Log' button in WCC tries to read from the agent's log location. If the agent is unreachable (MISSING), it will fail. Use SSH to the agent directly.
The Night a Downstream Job Took Down the Entire Batch Run
- Always start incident response with Flow View — it shows the blast radius in one glance.
- Never trust a single job status in isolation; always check upstream dependencies.
- WCC's Flow View is the fastest way to find the root cause in a multi-job chain.
Key takeaways
Common mistakes to avoid
4 patternsNot bookmarking WCC in your on-call browser
Using WCC for bulk operations
Confusing WCC's refresh cycle with real-time
Leaving WCC sessions open across multiple tabs
Interview Questions on This Topic
What is WCC in AutoSys?
Frequently Asked Questions
JIL syntax, sendevent, autorep, box jobs, file watchers, scheduling, HA, security, cloud workload automation, and 22 interview questions — the definitive AutoSys reference for production engineers.
That's AutoSys. Mark it forged?
6 min read · try the examples if you haven't