Pharos Triton
  • 🔱About Pharos Triton
  • 🏁Installing Pharos Triton
  • Apex Logging Basics
  • Common Apex Usage Patters
    • Batch Logging
    • Integration Logs
    • Apex Rest Logging
    • Full Control with TritonBuilder
  • Beyond Apex
    • LWC
    • 🔄LWC Transaction Management
    • ⚡LWC and Apex
    • 💾Platform Cache for Transactions
    • Flows
    • 〰️LWC, Apex and Flows
  • 📖Methods Reference
    • 📔Apex
      • Triton
      • TritonBuilder
      • TritonTypes
      • TritonLwc
        • ComponentLog
        • Component
        • Error
        • RuntimeInfo
      • TritonFlow
        • FlowLog
      • TritonHelper
        • PostProcessingControlsBuilder
      • LogBuilder
    • LWC
      • Triton
      • TritonBuilder
      • TritonUtils
  • Help and Support
Powered by GitBook
On this page
  • Overview
  • Flow Logging Methods
  • log
  • Field Mapping Reference
  • Core Fields
  • Context Fields
  • Additional Fields
  • Automatic Behaviors
  • Validation Rules
  • Required Fields
  • Enum Validation
  • Error Handling
  • Related Classes
  • Transaction Management
  • Stacktrace Handling
  1. Methods Reference
  2. Apex

TritonFlow

Documentation for the TritonFlow Apex class that provides core logging functionality for Flow Builder and Process Builder.

Overview

The TritonFlow class provides the server-side implementation for Flow and Process Builder logging. It handles automatic transaction management, Flow context capture, and validation of logging parameters.

Flow Logging Methods

log

@InvocableMethod(Category='TritonLogging' 
                Label='Log' 
                Description='Creates a log for a flow or process builder')
public static List<FlowLogOutput> log(List<FlowLog> flowLogs)

Creates logs from Flow or Process Builder. This method will:

  • Create logs with default INFO level if not specified

  • Handle automatic transaction management (create new or resume existing)

  • Capture Flow context (Interview GUID, Flow API Name)

  • Process custom field mapping through JSON

  • Validate category and log level enums

  • Return stacktrace information for error handling

Returns:

  • List containing stacktrace information for each log

Field Mapping Reference

Core Fields

Builder Method
Flow Source
Required
Default

category()

flowLog.category

No

type()

flowLog.type

No

area()

flowLog.area

Yes

level()

flowLog.level

No

summary()

flowLog.summary

Yes

-

details()

flowLog.details

No

-

operation()

flowLog.operation

No

-

Context Fields

🔍 Flow Context The system automatically captures and sets critical Flow execution context:

  • Interview GUID for tracking specific Flow runs

  • Flow API Name for identifying the Flow definition

  • Transaction ID for cross-context correlation

{
  "interviewGuid": "required - from flowLog.interviewGUID",
  "flowApiName": "optional - from flowLog.flowApiName",
  "transactionId": "auto-generated if not exists"
}

Additional Fields

Custom fields can be passed through the additionalFields JSON string:

{
  "customField1": "value1",
  "customField2": "value2"
}

Automatic Behaviors

⚡ Smart Defaults The system provides intelligent default behaviors to ensure robust logging:

  1. Transaction Management

    • Creates new transaction if none exists

    • Maintains transaction context across Flow elements

  2. Issue Creation

    • Automatically creates issues for ERROR level logs

    • Links related records for context

  3. Batch Processing

    • Buffers logs for efficient processing

    • Flushes logs after batch completion

Validation Rules

Required Fields

  • area - Functional area identifier

  • summary - Log message summary

  • interviewGUID - Flow interview identifier

Enum Validation

The system validates and provides fallbacks for:

Field
Invalid Value Behavior

Log Level

Defaults to INFO with warning

Category

Defaults to Flow with warning

Error Handling

📝 Validation Messages When validation issues occur, the system:

  1. Applies appropriate defaults

  2. Appends warning messages to the details field

  3. Continues processing without interruption

Related Classes

The TritonFlow class works with:

Transaction Management

The system provides two modes of transaction handling:

  1. Auto-Create: If no transaction exists and no ID is provided, creates new

  2. Resume: If transaction ID is provided, resumes existing transaction

This enables correlation of logs across different Flow elements and contexts.

Stacktrace Handling

This functionality is facilitated by the X-Ray machine only. If logging manually, disregard these values.

  1. Current Trace: Captured in stacktrace field

  2. Full Trace: Combines previous traces with current in fullStacktrace

  3. Automatic Chaining: Each FlowLogOutput contains the combined trace

This is used by the X-Ray machine for tracking error propagation through multiple Flow elements.

PreviousRuntimeInfoNextFlowLog

Last updated 1 month ago

Flow

-

-

INFO

For complete builder method documentation, see .

- Main wrapper for Flow log data

- Core log building functionality

- Enums and constants

📖
📔
TritonBuilder Reference
FlowLog
TritonBuilder
TritonTypes
(see Categories)
(see Types)
(see Areas)
(see Levels)