Workloads, Services & CronJobs
This page documents the runtime-centric views that operators use after cluster onboarding:
https://app.moonin.app/serviceshttps://app.moonin.app/imageshttps://app.moonin.app/cronjobs
It complements the rollout-centric view documented in Deployments & Images.
Workload navigation model
Section titled “Workload navigation model”Moonin exposes the same runtime estate through different operational lenses:
Deploymentsfocuses on rollout and revision historyServicesfocuses on traffic, logs, dependencies and observabilityImagesfocuses on image blast radiusCronJobsfocuses on scheduled execution behavior
Services page
Section titled “Services page”The Services page is the entry point for service-centric operations. It groups services by:
- project
- cluster
- namespace
- service or deployment name
The list lets operators find a workload first, then pivot into a service-focused detail view.
Service 360 view
Section titled “Service 360 view”When you open a specific service, Moonin organizes the investigation into tabs:
OverviewLogsPatternsEventsMetricsDependenciesUsed By
Operationally, those tabs answer different questions:
Overviewsummarizes recent logs, errors, HTTP activity and outbound resourcesLogsfocuses on current runtime evidencePatternshelps identify recurring behaviorEventsshows event-level operational changesMetricsshows the current service performance pictureDependenciesshows downstream resources used by the serviceUsed Byshows reverse dependencies and consumers
The service detail intentionally sends revision and error deep investigation back to the dedicated revision and errors views, because those workflows carry more change context.
Images page
Section titled “Images page”The Images page is shared with deployment operations but it is often used from a service or security perspective:
- identify every service using a given image
- compare tags across namespaces or clusters
- confirm how widely a risky build is deployed
- locate the exact revision and deployment behind a container image
CronJobs page
Section titled “CronJobs page”CronJobs are first-class scheduled workloads in Moonin, not just a by-product of general event collection.
For each CronJob, Moonin tracks:
- cron expression
- human schedule interpretation
- configured timezone
- suspend state
- concurrency policy
- last scheduled time
- last successful time
- active job count
- latest execution status
- total executions
- failed executions
CronJob execution history
Section titled “CronJob execution history”Each execution record can include:
- job name and job UID
- pod name when available
- execution status
- start and completion timestamps
- duration
- exit code
- failure reason
- failure message
- failure logs when available
How CronJob execution failures are captured
Section titled “How CronJob execution failures are captured”flowchart LR A[Job update] B[Moonin resolves owning CronJob] C[Execution status derived] D[Failure reason and exit code extracted] E[Relevant pod logs fetched] F[Execution stored in Moonin]
A --> B --> C --> D --> E --> FIn practical terms:
- only jobs owned by a CronJob are treated as CronJob executions
- failed executions attempt to capture the most relevant pod and failing container
- failure logs are attached when available so operators can triage without leaving Moonin
What counts as a failed CronJob execution
Section titled “What counts as a failed CronJob execution”Moonin treats a CronJob execution as failed when the underlying job and container state indicate failure, including common termination reasons such as:
- non-zero exit code
- generic
Error OOMKilledDeadlineExceeded
Choosing the right page
Section titled “Choosing the right page”Use Services when your question is about live behavior:
- who depends on this service
- what does it log
- how active is it right now
Use CronJobs when your question is about scheduled automation:
- did the job run
- did it finish
- what failed
Use Images when your question is about deployment footprint:
- where is this container running
- which workloads still use this tag
Use Deployments or Releases when your question is about change history:
- what changed
- when it changed
- which revision introduced the issue