curl --request GET \
--url https://testnet.edel-api.xyz/readyimport requests
url = "https://testnet.edel-api.xyz/ready"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://testnet.edel-api.xyz/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://testnet.edel-api.xyz/ready",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://testnet.edel-api.xyz/ready"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://testnet.edel-api.xyz/ready")
.asString();require 'uri'
require 'net/http'
url = URI("https://testnet.edel-api.xyz/ready")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"service": "<string>",
"status": "starting",
"degradedState": "none",
"journalSequence": 1,
"runtimePolicyVersion": "<string>",
"sourceDigest": "<string>",
"databasePool": {
"total": 1,
"idle": 1,
"waiting": 1,
"max": 1,
"reason": "database_pool_waiting",
"pools": {}
},
"keyVerifier": {
"state": "ready",
"reason": "none"
},
"edjcTail": {
"composed": true,
"reader": "directory",
"reasonCode": "realtime_edjc:engine_url_required",
"cursorOrdinal": 0,
"committedThroughOrdinal": 0
},
"replication": {
"read": true,
"leaderFailureDomainDeclared": true,
"hasQualifyingStandby": true,
"reportingStandbyCount": 1,
"refusedStandbyCount": 1,
"lastQualifyingObservationAgeMs": 1,
"appliedSequence": 1,
"replicatedSequence": 1,
"replicationStalledForMs": 1,
"committedUnavailableReason": "no_standby_configured",
"unavailableReason": "cpp_writer_front_not_composed"
},
"engineKillSwitch": {
"version": "engine-kill-switch-status/v1",
"authorityComposed": true,
"engaged": true,
"activeSinceEpochMs": 0,
"reasonCode": "active_claims",
"activeClaims": [
{
"actor": "worker",
"source": "ledger_reconciliation",
"activatedAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"recoveryCondition": "complete_reconciliation_pass",
"effectScope": "venue_wide",
"evidence": {
"kind": "ledger_reconciliation",
"classification": "consistent",
"accountsChecked": 0,
"consistentAccounts": 0,
"pendingExplainableAccounts": 0,
"divergentAccounts": 0,
"unknownAccounts": 0,
"coverage": {
"requestedAccounts": 0,
"readAccounts": 0,
"unreadableAccounts": 0,
"unaccountedAccounts": 0,
"legacyExcludedAccounts": 0
},
"unreadableReasons": {}
},
"persistence": {
"state": "pending"
}
}
],
"lastTransition": {
"actor": "worker",
"source": "ledger_reconciliation",
"engaged": true,
"occurredAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"persistence": {
"state": "pending"
}
}
},
"engineBootRecovery": {
"mode": "full_replay",
"reason": "snapshot_restored",
"logBase": "snapshot_anchored"
},
"engineHeldRowSettlement": {
"reason": "held_rows_settled",
"heldCommand": "applied",
"orderRoute": "settled",
"committedThroughOrdinal": 0,
"settledAtEpochMs": 0
},
"sequencerFence": {
"state": "clear",
"reason": "main_reply_ambiguous",
"sinceEpochMs": 1,
"settledBy": "core_log_applied"
},
"accountPositionCommitWait": {
"waits": 500000000,
"recoveries": 500000000,
"refusals": 500000000
},
"reconcilerEngineRead": {
"prefixBehindTipRetries": 500000000,
"prefixBehindTipRecoveries": 500000000
},
"reconciliationCommitLag": {
"sinceEpochMs": 0,
"passes": 500000000,
"committedVisibleOrdinal": 0,
"deferralsOpened": 500000000,
"deferralsExhausted": 500000000,
"haltEngagements": 500000000,
"haltReleases": 500000000
},
"marketBook": {
"composed": true,
"markets": [
{
"marketId": "<string>",
"lastPolledAtEpochMs": 1,
"lastPublishedAtEpochMs": 1,
"lastSnapshotSequence": 1,
"consecutiveFailures": 1,
"lastFailureReason": "market_book:request_failed"
}
]
},
"liveAccount": {
"composed": true,
"lastPassAtEpochMs": 1,
"trackedAccountCount": 1,
"consecutiveFailures": 1,
"lastFailureReason": "live_account:open_account_read_failed"
},
"degradedLeg": "databasePool",
"degradedLegState": "database_pool_waiting",
"degradedReason": "<string>",
"degradedReasonCode": "journal_configuration:accounting_epoch_missing",
"engineTransport": {
"active": "http",
"autoCloseRepairQuery": {
"reason": "none",
"httpStatus": 349,
"attempts": 2,
"sourceJournalSequence": 1,
"consequence": {
"keeperReason": "invalid_trigger",
"accountIdPrefix": "<string>",
"marketId": "<string>",
"sourceJournalSequence": 0,
"triggerKinds": [
"stop_loss"
],
"keeperError": {
"errorClass": "journal_append_refused",
"message": "<string>"
}
}
},
"autoCloseRepair": {
"sinceEpochMs": 0,
"pendingIntentCount": 0,
"committedWait": {
"sinceEpochMs": 0,
"reason": "no_standby_configured",
"refusals": 0
}
},
"requested": "aeron_ipc_cpp",
"composed": true
},
"cantonOffline": {
"policyReadable": true,
"policyVersion": "<string>",
"engaged": true,
"enforcing": true,
"enforcedLegs": [
"deposit_intake"
]
},
"apiReadinessLegs": [
{
"leg": "capability",
"gating": true,
"state": "ready",
"reason": "health_shell"
}
],
"cantonEgress": {
"intervalMs": 0,
"lastProbeAgeMs": 0,
"verification": {
"schema": "canton-egress-verification/v1",
"reachable": true,
"failedHop": "tcp→proxy",
"hops": [
{
"name": "tcp→proxy",
"latencyMs": 0,
"passed": true
}
]
}
},
"affiliateAccrualSkips": {
"total": 0,
"byReason": [
{
"reasonCode": "non_fill_event",
"count": 0,
"firstEventId": "<string>",
"lastEventId": "<string>"
}
]
},
"cantonStream": {
"state": "subscribing",
"reasonCode": "ledger_stream_unavailable",
"retryCount": 1,
"lastRetryAtEpochMs": 1,
"nextRetryAtEpochMs": 1,
"connected": true,
"sink": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"parkedObservationCount": 1,
"lastParked": {
"eventIdPrefix": "<string>",
"offset": "<string>",
"reasonCode": "malformed_command"
},
"pendingDeposits": {
"count": 0,
"oldestAgeMs": 0,
"byReason": [
{
"reasonCode": "malformed_command",
"count": 0
}
]
}
},
"depositReconciliation": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"pendingCoreMirrorFillCount": 0,
"transferReceiptConflictCount": 0,
"edjcFrontierWriter": "this_worker",
"edjcDeferralReason": "edjc_frontier_writer_held_by_peer",
"edjcDeferredGroups": [
"<string>"
],
"edjcBoot": {
"path": "fold_snapshot",
"snapshotOrdinal": 0,
"tailRecords": 0,
"reachedAfterMs": 0,
"discardReason": "edjc_fold_snapshot_missing",
"phase": "catching_up",
"foldOrdinal": 0,
"committedThroughOrdinal": 0,
"remainingRecords": 0,
"reason": "edjc_checkpoint_ahead_of_native_frontier"
},
"edjcTakeover": {
"groupId": "native-account-cash/v1",
"step": "initialize",
"state": "running",
"ageMs": 4503599627370495,
"noProgressMs": 4503599627370495,
"boundMs": 60000,
"page": {
"fromOrdinal": 4503599627370495,
"maxRecords": 4503599627370495,
"committedThroughOrdinal": 4503599627370495
}
},
"edjcFreshness": {
"boundRecords": 0,
"boundSeconds": 1,
"lagRecords": 0,
"provedAgeMs": 0,
"withinBound": true
},
"edjcFoldSnapshot": {
"ordinal": 0,
"ageMs": 0,
"skipReason": "edjc_fold_snapshot_checkpoint_moved"
},
"edjcRoutePace": {
"maxInFlight": 0,
"inFlight": 0,
"waiting": 0,
"pagesRead": 0,
"pacedPages": 0,
"lastPageMs": 0,
"slowPageMs": 0,
"gapAfterSlowPageMs": 0
},
"edjcArchiveRead": {
"kind": "edjc_archive_read/v1",
"configuration": "disabled",
"invalidVariables": [
"<string>"
],
"verification": {
"state": "not_composed",
"verifiedThroughOrdinal": 0,
"verifiedSegments": 0,
"verifiedAtEpochMs": 0,
"ageMs": 0,
"pendingSegments": 0,
"lastPass": {
"kind": "incremental",
"heads": 0,
"atEpochMs": 0,
"durationMs": 0
}
},
"pagesServed": 0,
"cache": {
"boundBytes": 0,
"cachedSegments": 0,
"cachedBytes": 0,
"baseCutoffOrdinal": 0,
"evictedSegments": 0,
"evictedBytes": 0,
"pageNeedsBytes": 0
},
"archivedThroughOrdinal": 0,
"engineBaseCutoffOrdinal": 0,
"lastRefusal": {
"name": "edjc_archive_prefix_missing",
"reason": "archive_log_not_found",
"atEpochMs": 0
}
},
"edjcGroupPageRoute": {
"windowMs": 0,
"pagesServed": 0,
"recordsServed": 0,
"maxPageMs": 0,
"eventLoopMaxBlockMs": 0,
"eventLoopBlockBudgetMs": 0,
"topBlockCause": "page_request",
"externalBytes": 0,
"externalDeltaBytes": 0,
"rssBytes": 0,
"peakRssBytes": 0,
"heapUsedBytes": 0,
"heapUsedDeltaBytes": 0,
"maxHeapDropBytes": 0,
"heapObjectDiagnostics": {
"enabled": true,
"sampleCount": -4503599627370495,
"sampleMaxMs": 0,
"sampleTotalMs": 0,
"firstHeapUsedBytes": 0,
"lastHeapUsedBytes": 0,
"growth": [
{
"objectType": "<string>",
"countGrowth": 0,
"protectedCountGrowth": 0
}
]
},
"gcPauseMaxMs": 0,
"eventLoopUtilization": 0.5,
"indexCheckpoints": 0,
"indexFallbacks": 0,
"lastIndexFallbackReason": "edjc_page_index_segment_list_changed"
},
"journalArchive": {
"leg": "journal_archive",
"enabled": true,
"legState": "archive_lag_exceeded",
"localBytes": 4503599627370495,
"segmentCount": 4503599627370495,
"oldestLocalOrdinal": 4503599627370495,
"volumeFreeBytes": 4503599627370495,
"archivedThroughOrdinal": 4503599627370495,
"snapshotArchivedCutoffOrdinal": 4503599627370495,
"releasedThroughOrdinal": 4503599627370495,
"releaseEligibleThroughOrdinal": 4503599627370495,
"releaseRefusal": "release_disabled",
"release": {
"enabled": true,
"pointOrdinal": 4503599627370496,
"binding": "core_snapshot",
"gateRefusal": "release_disabled",
"terms": {
"coreSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"runtimeSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"consumers": {
"retainFromOrdinal": 4503599627370495,
"bindingConsumer": "<string>",
"unproven": [
"<string>"
],
"bindingReason": "cold_catch_up_from_genesis"
},
"archivePrefix": {
"retainFromOrdinal": 4503599627370495,
"readerBaseCutoffOrdinal": 4503599627370495
}
},
"lagRecords": 4503599627370495,
"lastReleasedSegment": "<string>",
"lastReleasedAtEpochMs": 4503599627370495,
"releasedSegments": 4503599627370495,
"releasedBytes": 4503599627370495
},
"lagSegments": 4503599627370495,
"lagBytes": 4503599627370495,
"lastUploadAtEpochMs": 4503599627370495,
"lastError": "archive_configuration_incomplete",
"identity": {
"source": "genesis_segment",
"record": "recorded"
},
"bounds": {
"lagSegments": 4503599627370495,
"localBytes": 4503599627370495
},
"snapshots": {
"core": {
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffOrdinal": 4503599627370495,
"newestCutoffOrdinal": 4503599627370495,
"prunedAtStart": {
"links": 4503599627370495,
"releasedBytes": 4503599627370495
}
},
"runtime": {
"directoryState": "store_not_composed",
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffSequence": 4503599627370495,
"newestCutoffSequence": 4503599627370495,
"archivedCutoffSequence": 4503599627370495
}
}
},
"edjcReleaseWatermarks": [
{
"kind": "edjc_release_watermark/v1",
"consumer": "worker_cold_catch_up",
"state": "holding",
"reason": "cold_catch_up_from_genesis",
"retainFromOrdinal": 0,
"checkpointOrdinal": 0,
"logBase": "snapshot_anchored"
}
],
"runtimeSnapshot": {
"leg": "runtime_snapshot",
"storeKind": "volatile",
"cadenceRecords": 4503599627370495,
"lastCutoffSequence": 4503599627370495,
"lastWriteAtEpochMs": 4503599627370495,
"lastWriteDurationMs": 4503599627370495,
"writeInFlight": true,
"retainedSnapshots": 4503599627370495,
"retainBound": 4503599627370495,
"lastError": "snapshot_source_unavailable",
"boot": {
"mode": "full_replay",
"reason": "snapshot_restored",
"restoreEnabled": true,
"cutoffSequence": 4503599627370495,
"tailRecords": 4503599627370495,
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
},
"skipped": [
{
"cutoffSequence": 4503599627370495,
"reason": "snapshot_restored",
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
}
}
],
"skippedOmitted": 4503599627370495
},
"maxAgeMs": 4503599627370495,
"bootCapture": {
"status": "not_due",
"reason": "tail_within_cadence",
"cutoffSequence": 4503599627370495,
"rounds": 4503599627370495
},
"settledOrdinal": 4503599627370495,
"lastCutAgeMs": 4503599627370495,
"cutHeld": "no_main_row_above_cut"
},
"marketDataFace": {
"leg": "market_data_face",
"foldState": "folding",
"legState": "market_data_face_contradicted",
"frozenFaceCut": 4503599627370495,
"breach": {
"laterOfferOrdinal": 4503599627370495,
"earlierOfferOrdinal": 4503599627370495
}
},
"coreTreasury": {
"installed": true,
"accountId": "<string>",
"lastRefusal": "<string>"
},
"riskAccountingMarker": {
"markerOrdinal": 123,
"lastRefusal": {
"reason": "front_not_bound",
"detail": "<string>"
}
},
"bunFundingEngine": {
"composed": true,
"leg": "funding_engine",
"settlement": "bun_risk_engine",
"lastAppliedPeriods": [
{
"marketId": "<string>",
"checkpointSequence": 1,
"lastTickEpochMs": 123,
"recordedAnchorEpochMs": 123
}
],
"lastRefusal": "funding_checkpoint_invalid"
},
"mainCommandChain": "core_digest",
"coreMirror": {
"enabled": true,
"mirroredOrdinal": 1,
"edjcTipOrdinal": 1,
"lastRefusal": {
"reason": "duplicate_ordinal",
"ordinal": 1,
"stage": "history_audit",
"detail": "<string>"
},
"waiting": {
"reason": "sequencer_not_ready",
"stage": "history_audit",
"ordinal": 123,
"sequencerStatus": "replaying",
"sinceEpochMs": 123,
"ageMs": 1,
"attempts": 123
},
"lastPollAtEpochMs": 123,
"mirroredSinceStart": 1,
"historyAudit": {
"cursorOrdinal": 123,
"throughOrdinal": 123,
"sinceEpochMs": 123,
"ageMs": 1
},
"settleObserverFailures": 1
},
"marketData": {
"streams": {},
"referenceQuorum": {},
"markFreshness": {}
},
"chainlinkAdmission": {
"pending": [
{
"symbol": "<string>",
"state": "admission_reset_pending"
}
]
}
}{
"version": "external-rest-error/v1",
"requestId": "<string>",
"code": "invalid_request",
"safeMessage": "<string>",
"retryable": true,
"recoveryActions": [
"none"
],
"occurredAtEpochMs": 1,
"realtimeTicketFailure": "invalid",
"apiKeyRejection": "malformed",
"rejectionGuard": "amount_atoms_invalid",
"withdrawalFailure": "requested",
"dependency": "dfns"
}{
"version": "external-rest-error/v1",
"requestId": "<string>",
"code": "invalid_request",
"safeMessage": "<string>",
"retryable": true,
"recoveryActions": [
"none"
],
"occurredAtEpochMs": 1,
"realtimeTicketFailure": "invalid",
"apiKeyRejection": "malformed",
"rejectionGuard": "amount_atoms_invalid",
"withdrawalFailure": "requested",
"dependency": "dfns"
}{
"version": "external-rest-error/v1",
"requestId": "<string>",
"code": "invalid_request",
"safeMessage": "<string>",
"retryable": true,
"recoveryActions": [
"none"
],
"occurredAtEpochMs": 1,
"realtimeTicketFailure": "invalid",
"apiKeyRejection": "malformed",
"rejectionGuard": "amount_atoms_invalid",
"withdrawalFailure": "requested",
"dependency": "dfns"
}{
"service": "<string>",
"status": "starting",
"degradedState": "none",
"journalSequence": 1,
"runtimePolicyVersion": "<string>",
"sourceDigest": "<string>",
"databasePool": {
"total": 1,
"idle": 1,
"waiting": 1,
"max": 1,
"reason": "database_pool_waiting",
"pools": {}
},
"keyVerifier": {
"state": "ready",
"reason": "none"
},
"edjcTail": {
"composed": true,
"reader": "directory",
"reasonCode": "realtime_edjc:engine_url_required",
"cursorOrdinal": 0,
"committedThroughOrdinal": 0
},
"replication": {
"read": true,
"leaderFailureDomainDeclared": true,
"hasQualifyingStandby": true,
"reportingStandbyCount": 1,
"refusedStandbyCount": 1,
"lastQualifyingObservationAgeMs": 1,
"appliedSequence": 1,
"replicatedSequence": 1,
"replicationStalledForMs": 1,
"committedUnavailableReason": "no_standby_configured",
"unavailableReason": "cpp_writer_front_not_composed"
},
"engineKillSwitch": {
"version": "engine-kill-switch-status/v1",
"authorityComposed": true,
"engaged": true,
"activeSinceEpochMs": 0,
"reasonCode": "active_claims",
"activeClaims": [
{
"actor": "worker",
"source": "ledger_reconciliation",
"activatedAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"recoveryCondition": "complete_reconciliation_pass",
"effectScope": "venue_wide",
"evidence": {
"kind": "ledger_reconciliation",
"classification": "consistent",
"accountsChecked": 0,
"consistentAccounts": 0,
"pendingExplainableAccounts": 0,
"divergentAccounts": 0,
"unknownAccounts": 0,
"coverage": {
"requestedAccounts": 0,
"readAccounts": 0,
"unreadableAccounts": 0,
"unaccountedAccounts": 0,
"legacyExcludedAccounts": 0
},
"unreadableReasons": {}
},
"persistence": {
"state": "pending"
}
}
],
"lastTransition": {
"actor": "worker",
"source": "ledger_reconciliation",
"engaged": true,
"occurredAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"persistence": {
"state": "pending"
}
}
},
"engineBootRecovery": {
"mode": "full_replay",
"reason": "snapshot_restored",
"logBase": "snapshot_anchored"
},
"engineHeldRowSettlement": {
"reason": "held_rows_settled",
"heldCommand": "applied",
"orderRoute": "settled",
"committedThroughOrdinal": 0,
"settledAtEpochMs": 0
},
"sequencerFence": {
"state": "clear",
"reason": "main_reply_ambiguous",
"sinceEpochMs": 1,
"settledBy": "core_log_applied"
},
"accountPositionCommitWait": {
"waits": 500000000,
"recoveries": 500000000,
"refusals": 500000000
},
"reconcilerEngineRead": {
"prefixBehindTipRetries": 500000000,
"prefixBehindTipRecoveries": 500000000
},
"reconciliationCommitLag": {
"sinceEpochMs": 0,
"passes": 500000000,
"committedVisibleOrdinal": 0,
"deferralsOpened": 500000000,
"deferralsExhausted": 500000000,
"haltEngagements": 500000000,
"haltReleases": 500000000
},
"marketBook": {
"composed": true,
"markets": [
{
"marketId": "<string>",
"lastPolledAtEpochMs": 1,
"lastPublishedAtEpochMs": 1,
"lastSnapshotSequence": 1,
"consecutiveFailures": 1,
"lastFailureReason": "market_book:request_failed"
}
]
},
"liveAccount": {
"composed": true,
"lastPassAtEpochMs": 1,
"trackedAccountCount": 1,
"consecutiveFailures": 1,
"lastFailureReason": "live_account:open_account_read_failed"
},
"degradedLeg": "databasePool",
"degradedLegState": "database_pool_waiting",
"degradedReason": "<string>",
"degradedReasonCode": "journal_configuration:accounting_epoch_missing",
"engineTransport": {
"active": "http",
"autoCloseRepairQuery": {
"reason": "none",
"httpStatus": 349,
"attempts": 2,
"sourceJournalSequence": 1,
"consequence": {
"keeperReason": "invalid_trigger",
"accountIdPrefix": "<string>",
"marketId": "<string>",
"sourceJournalSequence": 0,
"triggerKinds": [
"stop_loss"
],
"keeperError": {
"errorClass": "journal_append_refused",
"message": "<string>"
}
}
},
"autoCloseRepair": {
"sinceEpochMs": 0,
"pendingIntentCount": 0,
"committedWait": {
"sinceEpochMs": 0,
"reason": "no_standby_configured",
"refusals": 0
}
},
"requested": "aeron_ipc_cpp",
"composed": true
},
"cantonOffline": {
"policyReadable": true,
"policyVersion": "<string>",
"engaged": true,
"enforcing": true,
"enforcedLegs": [
"deposit_intake"
]
},
"apiReadinessLegs": [
{
"leg": "capability",
"gating": true,
"state": "ready",
"reason": "health_shell"
}
],
"cantonEgress": {
"intervalMs": 0,
"lastProbeAgeMs": 0,
"verification": {
"schema": "canton-egress-verification/v1",
"reachable": true,
"failedHop": "tcp→proxy",
"hops": [
{
"name": "tcp→proxy",
"latencyMs": 0,
"passed": true
}
]
}
},
"affiliateAccrualSkips": {
"total": 0,
"byReason": [
{
"reasonCode": "non_fill_event",
"count": 0,
"firstEventId": "<string>",
"lastEventId": "<string>"
}
]
},
"cantonStream": {
"state": "subscribing",
"reasonCode": "ledger_stream_unavailable",
"retryCount": 1,
"lastRetryAtEpochMs": 1,
"nextRetryAtEpochMs": 1,
"connected": true,
"sink": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"parkedObservationCount": 1,
"lastParked": {
"eventIdPrefix": "<string>",
"offset": "<string>",
"reasonCode": "malformed_command"
},
"pendingDeposits": {
"count": 0,
"oldestAgeMs": 0,
"byReason": [
{
"reasonCode": "malformed_command",
"count": 0
}
]
}
},
"depositReconciliation": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"pendingCoreMirrorFillCount": 0,
"transferReceiptConflictCount": 0,
"edjcFrontierWriter": "this_worker",
"edjcDeferralReason": "edjc_frontier_writer_held_by_peer",
"edjcDeferredGroups": [
"<string>"
],
"edjcBoot": {
"path": "fold_snapshot",
"snapshotOrdinal": 0,
"tailRecords": 0,
"reachedAfterMs": 0,
"discardReason": "edjc_fold_snapshot_missing",
"phase": "catching_up",
"foldOrdinal": 0,
"committedThroughOrdinal": 0,
"remainingRecords": 0,
"reason": "edjc_checkpoint_ahead_of_native_frontier"
},
"edjcTakeover": {
"groupId": "native-account-cash/v1",
"step": "initialize",
"state": "running",
"ageMs": 4503599627370495,
"noProgressMs": 4503599627370495,
"boundMs": 60000,
"page": {
"fromOrdinal": 4503599627370495,
"maxRecords": 4503599627370495,
"committedThroughOrdinal": 4503599627370495
}
},
"edjcFreshness": {
"boundRecords": 0,
"boundSeconds": 1,
"lagRecords": 0,
"provedAgeMs": 0,
"withinBound": true
},
"edjcFoldSnapshot": {
"ordinal": 0,
"ageMs": 0,
"skipReason": "edjc_fold_snapshot_checkpoint_moved"
},
"edjcRoutePace": {
"maxInFlight": 0,
"inFlight": 0,
"waiting": 0,
"pagesRead": 0,
"pacedPages": 0,
"lastPageMs": 0,
"slowPageMs": 0,
"gapAfterSlowPageMs": 0
},
"edjcArchiveRead": {
"kind": "edjc_archive_read/v1",
"configuration": "disabled",
"invalidVariables": [
"<string>"
],
"verification": {
"state": "not_composed",
"verifiedThroughOrdinal": 0,
"verifiedSegments": 0,
"verifiedAtEpochMs": 0,
"ageMs": 0,
"pendingSegments": 0,
"lastPass": {
"kind": "incremental",
"heads": 0,
"atEpochMs": 0,
"durationMs": 0
}
},
"pagesServed": 0,
"cache": {
"boundBytes": 0,
"cachedSegments": 0,
"cachedBytes": 0,
"baseCutoffOrdinal": 0,
"evictedSegments": 0,
"evictedBytes": 0,
"pageNeedsBytes": 0
},
"archivedThroughOrdinal": 0,
"engineBaseCutoffOrdinal": 0,
"lastRefusal": {
"name": "edjc_archive_prefix_missing",
"reason": "archive_log_not_found",
"atEpochMs": 0
}
},
"edjcGroupPageRoute": {
"windowMs": 0,
"pagesServed": 0,
"recordsServed": 0,
"maxPageMs": 0,
"eventLoopMaxBlockMs": 0,
"eventLoopBlockBudgetMs": 0,
"topBlockCause": "page_request",
"externalBytes": 0,
"externalDeltaBytes": 0,
"rssBytes": 0,
"peakRssBytes": 0,
"heapUsedBytes": 0,
"heapUsedDeltaBytes": 0,
"maxHeapDropBytes": 0,
"heapObjectDiagnostics": {
"enabled": true,
"sampleCount": -4503599627370495,
"sampleMaxMs": 0,
"sampleTotalMs": 0,
"firstHeapUsedBytes": 0,
"lastHeapUsedBytes": 0,
"growth": [
{
"objectType": "<string>",
"countGrowth": 0,
"protectedCountGrowth": 0
}
]
},
"gcPauseMaxMs": 0,
"eventLoopUtilization": 0.5,
"indexCheckpoints": 0,
"indexFallbacks": 0,
"lastIndexFallbackReason": "edjc_page_index_segment_list_changed"
},
"journalArchive": {
"leg": "journal_archive",
"enabled": true,
"legState": "archive_lag_exceeded",
"localBytes": 4503599627370495,
"segmentCount": 4503599627370495,
"oldestLocalOrdinal": 4503599627370495,
"volumeFreeBytes": 4503599627370495,
"archivedThroughOrdinal": 4503599627370495,
"snapshotArchivedCutoffOrdinal": 4503599627370495,
"releasedThroughOrdinal": 4503599627370495,
"releaseEligibleThroughOrdinal": 4503599627370495,
"releaseRefusal": "release_disabled",
"release": {
"enabled": true,
"pointOrdinal": 4503599627370496,
"binding": "core_snapshot",
"gateRefusal": "release_disabled",
"terms": {
"coreSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"runtimeSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"consumers": {
"retainFromOrdinal": 4503599627370495,
"bindingConsumer": "<string>",
"unproven": [
"<string>"
],
"bindingReason": "cold_catch_up_from_genesis"
},
"archivePrefix": {
"retainFromOrdinal": 4503599627370495,
"readerBaseCutoffOrdinal": 4503599627370495
}
},
"lagRecords": 4503599627370495,
"lastReleasedSegment": "<string>",
"lastReleasedAtEpochMs": 4503599627370495,
"releasedSegments": 4503599627370495,
"releasedBytes": 4503599627370495
},
"lagSegments": 4503599627370495,
"lagBytes": 4503599627370495,
"lastUploadAtEpochMs": 4503599627370495,
"lastError": "archive_configuration_incomplete",
"identity": {
"source": "genesis_segment",
"record": "recorded"
},
"bounds": {
"lagSegments": 4503599627370495,
"localBytes": 4503599627370495
},
"snapshots": {
"core": {
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffOrdinal": 4503599627370495,
"newestCutoffOrdinal": 4503599627370495,
"prunedAtStart": {
"links": 4503599627370495,
"releasedBytes": 4503599627370495
}
},
"runtime": {
"directoryState": "store_not_composed",
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffSequence": 4503599627370495,
"newestCutoffSequence": 4503599627370495,
"archivedCutoffSequence": 4503599627370495
}
}
},
"edjcReleaseWatermarks": [
{
"kind": "edjc_release_watermark/v1",
"consumer": "worker_cold_catch_up",
"state": "holding",
"reason": "cold_catch_up_from_genesis",
"retainFromOrdinal": 0,
"checkpointOrdinal": 0,
"logBase": "snapshot_anchored"
}
],
"runtimeSnapshot": {
"leg": "runtime_snapshot",
"storeKind": "volatile",
"cadenceRecords": 4503599627370495,
"lastCutoffSequence": 4503599627370495,
"lastWriteAtEpochMs": 4503599627370495,
"lastWriteDurationMs": 4503599627370495,
"writeInFlight": true,
"retainedSnapshots": 4503599627370495,
"retainBound": 4503599627370495,
"lastError": "snapshot_source_unavailable",
"boot": {
"mode": "full_replay",
"reason": "snapshot_restored",
"restoreEnabled": true,
"cutoffSequence": 4503599627370495,
"tailRecords": 4503599627370495,
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
},
"skipped": [
{
"cutoffSequence": 4503599627370495,
"reason": "snapshot_restored",
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
}
}
],
"skippedOmitted": 4503599627370495
},
"maxAgeMs": 4503599627370495,
"bootCapture": {
"status": "not_due",
"reason": "tail_within_cadence",
"cutoffSequence": 4503599627370495,
"rounds": 4503599627370495
},
"settledOrdinal": 4503599627370495,
"lastCutAgeMs": 4503599627370495,
"cutHeld": "no_main_row_above_cut"
},
"marketDataFace": {
"leg": "market_data_face",
"foldState": "folding",
"legState": "market_data_face_contradicted",
"frozenFaceCut": 4503599627370495,
"breach": {
"laterOfferOrdinal": 4503599627370495,
"earlierOfferOrdinal": 4503599627370495
}
},
"coreTreasury": {
"installed": true,
"accountId": "<string>",
"lastRefusal": "<string>"
},
"riskAccountingMarker": {
"markerOrdinal": 123,
"lastRefusal": {
"reason": "front_not_bound",
"detail": "<string>"
}
},
"bunFundingEngine": {
"composed": true,
"leg": "funding_engine",
"settlement": "bun_risk_engine",
"lastAppliedPeriods": [
{
"marketId": "<string>",
"checkpointSequence": 1,
"lastTickEpochMs": 123,
"recordedAnchorEpochMs": 123
}
],
"lastRefusal": "funding_checkpoint_invalid"
},
"mainCommandChain": "core_digest",
"coreMirror": {
"enabled": true,
"mirroredOrdinal": 1,
"edjcTipOrdinal": 1,
"lastRefusal": {
"reason": "duplicate_ordinal",
"ordinal": 1,
"stage": "history_audit",
"detail": "<string>"
},
"waiting": {
"reason": "sequencer_not_ready",
"stage": "history_audit",
"ordinal": 123,
"sequencerStatus": "replaying",
"sinceEpochMs": 123,
"ageMs": 1,
"attempts": 123
},
"lastPollAtEpochMs": 123,
"mirroredSinceStart": 1,
"historyAudit": {
"cursorOrdinal": 123,
"throughOrdinal": 123,
"sinceEpochMs": 123,
"ageMs": 1
},
"settleObserverFailures": 1
},
"marketData": {
"streams": {},
"referenceQuorum": {},
"markFreshness": {}
},
"chainlinkAdmission": {
"pending": [
{
"symbol": "<string>",
"state": "admission_reset_pending"
}
]
}
}Get service readiness
Returns API readiness plus the effective Canton-offline policy and enforced intake legs when runtime controls are composed.
Method and path: GET /ready
Authentication: none.
Request schema: none.
Response schema: ServiceReadinessPayload.
Error envelope: ExternalRestError (external-rest-error/v1).
curl --request GET \
--url https://testnet.edel-api.xyz/readyimport requests
url = "https://testnet.edel-api.xyz/ready"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://testnet.edel-api.xyz/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://testnet.edel-api.xyz/ready",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://testnet.edel-api.xyz/ready"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://testnet.edel-api.xyz/ready")
.asString();require 'uri'
require 'net/http'
url = URI("https://testnet.edel-api.xyz/ready")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"service": "<string>",
"status": "starting",
"degradedState": "none",
"journalSequence": 1,
"runtimePolicyVersion": "<string>",
"sourceDigest": "<string>",
"databasePool": {
"total": 1,
"idle": 1,
"waiting": 1,
"max": 1,
"reason": "database_pool_waiting",
"pools": {}
},
"keyVerifier": {
"state": "ready",
"reason": "none"
},
"edjcTail": {
"composed": true,
"reader": "directory",
"reasonCode": "realtime_edjc:engine_url_required",
"cursorOrdinal": 0,
"committedThroughOrdinal": 0
},
"replication": {
"read": true,
"leaderFailureDomainDeclared": true,
"hasQualifyingStandby": true,
"reportingStandbyCount": 1,
"refusedStandbyCount": 1,
"lastQualifyingObservationAgeMs": 1,
"appliedSequence": 1,
"replicatedSequence": 1,
"replicationStalledForMs": 1,
"committedUnavailableReason": "no_standby_configured",
"unavailableReason": "cpp_writer_front_not_composed"
},
"engineKillSwitch": {
"version": "engine-kill-switch-status/v1",
"authorityComposed": true,
"engaged": true,
"activeSinceEpochMs": 0,
"reasonCode": "active_claims",
"activeClaims": [
{
"actor": "worker",
"source": "ledger_reconciliation",
"activatedAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"recoveryCondition": "complete_reconciliation_pass",
"effectScope": "venue_wide",
"evidence": {
"kind": "ledger_reconciliation",
"classification": "consistent",
"accountsChecked": 0,
"consistentAccounts": 0,
"pendingExplainableAccounts": 0,
"divergentAccounts": 0,
"unknownAccounts": 0,
"coverage": {
"requestedAccounts": 0,
"readAccounts": 0,
"unreadableAccounts": 0,
"unaccountedAccounts": 0,
"legacyExcludedAccounts": 0
},
"unreadableReasons": {}
},
"persistence": {
"state": "pending"
}
}
],
"lastTransition": {
"actor": "worker",
"source": "ledger_reconciliation",
"engaged": true,
"occurredAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"persistence": {
"state": "pending"
}
}
},
"engineBootRecovery": {
"mode": "full_replay",
"reason": "snapshot_restored",
"logBase": "snapshot_anchored"
},
"engineHeldRowSettlement": {
"reason": "held_rows_settled",
"heldCommand": "applied",
"orderRoute": "settled",
"committedThroughOrdinal": 0,
"settledAtEpochMs": 0
},
"sequencerFence": {
"state": "clear",
"reason": "main_reply_ambiguous",
"sinceEpochMs": 1,
"settledBy": "core_log_applied"
},
"accountPositionCommitWait": {
"waits": 500000000,
"recoveries": 500000000,
"refusals": 500000000
},
"reconcilerEngineRead": {
"prefixBehindTipRetries": 500000000,
"prefixBehindTipRecoveries": 500000000
},
"reconciliationCommitLag": {
"sinceEpochMs": 0,
"passes": 500000000,
"committedVisibleOrdinal": 0,
"deferralsOpened": 500000000,
"deferralsExhausted": 500000000,
"haltEngagements": 500000000,
"haltReleases": 500000000
},
"marketBook": {
"composed": true,
"markets": [
{
"marketId": "<string>",
"lastPolledAtEpochMs": 1,
"lastPublishedAtEpochMs": 1,
"lastSnapshotSequence": 1,
"consecutiveFailures": 1,
"lastFailureReason": "market_book:request_failed"
}
]
},
"liveAccount": {
"composed": true,
"lastPassAtEpochMs": 1,
"trackedAccountCount": 1,
"consecutiveFailures": 1,
"lastFailureReason": "live_account:open_account_read_failed"
},
"degradedLeg": "databasePool",
"degradedLegState": "database_pool_waiting",
"degradedReason": "<string>",
"degradedReasonCode": "journal_configuration:accounting_epoch_missing",
"engineTransport": {
"active": "http",
"autoCloseRepairQuery": {
"reason": "none",
"httpStatus": 349,
"attempts": 2,
"sourceJournalSequence": 1,
"consequence": {
"keeperReason": "invalid_trigger",
"accountIdPrefix": "<string>",
"marketId": "<string>",
"sourceJournalSequence": 0,
"triggerKinds": [
"stop_loss"
],
"keeperError": {
"errorClass": "journal_append_refused",
"message": "<string>"
}
}
},
"autoCloseRepair": {
"sinceEpochMs": 0,
"pendingIntentCount": 0,
"committedWait": {
"sinceEpochMs": 0,
"reason": "no_standby_configured",
"refusals": 0
}
},
"requested": "aeron_ipc_cpp",
"composed": true
},
"cantonOffline": {
"policyReadable": true,
"policyVersion": "<string>",
"engaged": true,
"enforcing": true,
"enforcedLegs": [
"deposit_intake"
]
},
"apiReadinessLegs": [
{
"leg": "capability",
"gating": true,
"state": "ready",
"reason": "health_shell"
}
],
"cantonEgress": {
"intervalMs": 0,
"lastProbeAgeMs": 0,
"verification": {
"schema": "canton-egress-verification/v1",
"reachable": true,
"failedHop": "tcp→proxy",
"hops": [
{
"name": "tcp→proxy",
"latencyMs": 0,
"passed": true
}
]
}
},
"affiliateAccrualSkips": {
"total": 0,
"byReason": [
{
"reasonCode": "non_fill_event",
"count": 0,
"firstEventId": "<string>",
"lastEventId": "<string>"
}
]
},
"cantonStream": {
"state": "subscribing",
"reasonCode": "ledger_stream_unavailable",
"retryCount": 1,
"lastRetryAtEpochMs": 1,
"nextRetryAtEpochMs": 1,
"connected": true,
"sink": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"parkedObservationCount": 1,
"lastParked": {
"eventIdPrefix": "<string>",
"offset": "<string>",
"reasonCode": "malformed_command"
},
"pendingDeposits": {
"count": 0,
"oldestAgeMs": 0,
"byReason": [
{
"reasonCode": "malformed_command",
"count": 0
}
]
}
},
"depositReconciliation": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"pendingCoreMirrorFillCount": 0,
"transferReceiptConflictCount": 0,
"edjcFrontierWriter": "this_worker",
"edjcDeferralReason": "edjc_frontier_writer_held_by_peer",
"edjcDeferredGroups": [
"<string>"
],
"edjcBoot": {
"path": "fold_snapshot",
"snapshotOrdinal": 0,
"tailRecords": 0,
"reachedAfterMs": 0,
"discardReason": "edjc_fold_snapshot_missing",
"phase": "catching_up",
"foldOrdinal": 0,
"committedThroughOrdinal": 0,
"remainingRecords": 0,
"reason": "edjc_checkpoint_ahead_of_native_frontier"
},
"edjcTakeover": {
"groupId": "native-account-cash/v1",
"step": "initialize",
"state": "running",
"ageMs": 4503599627370495,
"noProgressMs": 4503599627370495,
"boundMs": 60000,
"page": {
"fromOrdinal": 4503599627370495,
"maxRecords": 4503599627370495,
"committedThroughOrdinal": 4503599627370495
}
},
"edjcFreshness": {
"boundRecords": 0,
"boundSeconds": 1,
"lagRecords": 0,
"provedAgeMs": 0,
"withinBound": true
},
"edjcFoldSnapshot": {
"ordinal": 0,
"ageMs": 0,
"skipReason": "edjc_fold_snapshot_checkpoint_moved"
},
"edjcRoutePace": {
"maxInFlight": 0,
"inFlight": 0,
"waiting": 0,
"pagesRead": 0,
"pacedPages": 0,
"lastPageMs": 0,
"slowPageMs": 0,
"gapAfterSlowPageMs": 0
},
"edjcArchiveRead": {
"kind": "edjc_archive_read/v1",
"configuration": "disabled",
"invalidVariables": [
"<string>"
],
"verification": {
"state": "not_composed",
"verifiedThroughOrdinal": 0,
"verifiedSegments": 0,
"verifiedAtEpochMs": 0,
"ageMs": 0,
"pendingSegments": 0,
"lastPass": {
"kind": "incremental",
"heads": 0,
"atEpochMs": 0,
"durationMs": 0
}
},
"pagesServed": 0,
"cache": {
"boundBytes": 0,
"cachedSegments": 0,
"cachedBytes": 0,
"baseCutoffOrdinal": 0,
"evictedSegments": 0,
"evictedBytes": 0,
"pageNeedsBytes": 0
},
"archivedThroughOrdinal": 0,
"engineBaseCutoffOrdinal": 0,
"lastRefusal": {
"name": "edjc_archive_prefix_missing",
"reason": "archive_log_not_found",
"atEpochMs": 0
}
},
"edjcGroupPageRoute": {
"windowMs": 0,
"pagesServed": 0,
"recordsServed": 0,
"maxPageMs": 0,
"eventLoopMaxBlockMs": 0,
"eventLoopBlockBudgetMs": 0,
"topBlockCause": "page_request",
"externalBytes": 0,
"externalDeltaBytes": 0,
"rssBytes": 0,
"peakRssBytes": 0,
"heapUsedBytes": 0,
"heapUsedDeltaBytes": 0,
"maxHeapDropBytes": 0,
"heapObjectDiagnostics": {
"enabled": true,
"sampleCount": -4503599627370495,
"sampleMaxMs": 0,
"sampleTotalMs": 0,
"firstHeapUsedBytes": 0,
"lastHeapUsedBytes": 0,
"growth": [
{
"objectType": "<string>",
"countGrowth": 0,
"protectedCountGrowth": 0
}
]
},
"gcPauseMaxMs": 0,
"eventLoopUtilization": 0.5,
"indexCheckpoints": 0,
"indexFallbacks": 0,
"lastIndexFallbackReason": "edjc_page_index_segment_list_changed"
},
"journalArchive": {
"leg": "journal_archive",
"enabled": true,
"legState": "archive_lag_exceeded",
"localBytes": 4503599627370495,
"segmentCount": 4503599627370495,
"oldestLocalOrdinal": 4503599627370495,
"volumeFreeBytes": 4503599627370495,
"archivedThroughOrdinal": 4503599627370495,
"snapshotArchivedCutoffOrdinal": 4503599627370495,
"releasedThroughOrdinal": 4503599627370495,
"releaseEligibleThroughOrdinal": 4503599627370495,
"releaseRefusal": "release_disabled",
"release": {
"enabled": true,
"pointOrdinal": 4503599627370496,
"binding": "core_snapshot",
"gateRefusal": "release_disabled",
"terms": {
"coreSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"runtimeSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"consumers": {
"retainFromOrdinal": 4503599627370495,
"bindingConsumer": "<string>",
"unproven": [
"<string>"
],
"bindingReason": "cold_catch_up_from_genesis"
},
"archivePrefix": {
"retainFromOrdinal": 4503599627370495,
"readerBaseCutoffOrdinal": 4503599627370495
}
},
"lagRecords": 4503599627370495,
"lastReleasedSegment": "<string>",
"lastReleasedAtEpochMs": 4503599627370495,
"releasedSegments": 4503599627370495,
"releasedBytes": 4503599627370495
},
"lagSegments": 4503599627370495,
"lagBytes": 4503599627370495,
"lastUploadAtEpochMs": 4503599627370495,
"lastError": "archive_configuration_incomplete",
"identity": {
"source": "genesis_segment",
"record": "recorded"
},
"bounds": {
"lagSegments": 4503599627370495,
"localBytes": 4503599627370495
},
"snapshots": {
"core": {
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffOrdinal": 4503599627370495,
"newestCutoffOrdinal": 4503599627370495,
"prunedAtStart": {
"links": 4503599627370495,
"releasedBytes": 4503599627370495
}
},
"runtime": {
"directoryState": "store_not_composed",
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffSequence": 4503599627370495,
"newestCutoffSequence": 4503599627370495,
"archivedCutoffSequence": 4503599627370495
}
}
},
"edjcReleaseWatermarks": [
{
"kind": "edjc_release_watermark/v1",
"consumer": "worker_cold_catch_up",
"state": "holding",
"reason": "cold_catch_up_from_genesis",
"retainFromOrdinal": 0,
"checkpointOrdinal": 0,
"logBase": "snapshot_anchored"
}
],
"runtimeSnapshot": {
"leg": "runtime_snapshot",
"storeKind": "volatile",
"cadenceRecords": 4503599627370495,
"lastCutoffSequence": 4503599627370495,
"lastWriteAtEpochMs": 4503599627370495,
"lastWriteDurationMs": 4503599627370495,
"writeInFlight": true,
"retainedSnapshots": 4503599627370495,
"retainBound": 4503599627370495,
"lastError": "snapshot_source_unavailable",
"boot": {
"mode": "full_replay",
"reason": "snapshot_restored",
"restoreEnabled": true,
"cutoffSequence": 4503599627370495,
"tailRecords": 4503599627370495,
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
},
"skipped": [
{
"cutoffSequence": 4503599627370495,
"reason": "snapshot_restored",
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
}
}
],
"skippedOmitted": 4503599627370495
},
"maxAgeMs": 4503599627370495,
"bootCapture": {
"status": "not_due",
"reason": "tail_within_cadence",
"cutoffSequence": 4503599627370495,
"rounds": 4503599627370495
},
"settledOrdinal": 4503599627370495,
"lastCutAgeMs": 4503599627370495,
"cutHeld": "no_main_row_above_cut"
},
"marketDataFace": {
"leg": "market_data_face",
"foldState": "folding",
"legState": "market_data_face_contradicted",
"frozenFaceCut": 4503599627370495,
"breach": {
"laterOfferOrdinal": 4503599627370495,
"earlierOfferOrdinal": 4503599627370495
}
},
"coreTreasury": {
"installed": true,
"accountId": "<string>",
"lastRefusal": "<string>"
},
"riskAccountingMarker": {
"markerOrdinal": 123,
"lastRefusal": {
"reason": "front_not_bound",
"detail": "<string>"
}
},
"bunFundingEngine": {
"composed": true,
"leg": "funding_engine",
"settlement": "bun_risk_engine",
"lastAppliedPeriods": [
{
"marketId": "<string>",
"checkpointSequence": 1,
"lastTickEpochMs": 123,
"recordedAnchorEpochMs": 123
}
],
"lastRefusal": "funding_checkpoint_invalid"
},
"mainCommandChain": "core_digest",
"coreMirror": {
"enabled": true,
"mirroredOrdinal": 1,
"edjcTipOrdinal": 1,
"lastRefusal": {
"reason": "duplicate_ordinal",
"ordinal": 1,
"stage": "history_audit",
"detail": "<string>"
},
"waiting": {
"reason": "sequencer_not_ready",
"stage": "history_audit",
"ordinal": 123,
"sequencerStatus": "replaying",
"sinceEpochMs": 123,
"ageMs": 1,
"attempts": 123
},
"lastPollAtEpochMs": 123,
"mirroredSinceStart": 1,
"historyAudit": {
"cursorOrdinal": 123,
"throughOrdinal": 123,
"sinceEpochMs": 123,
"ageMs": 1
},
"settleObserverFailures": 1
},
"marketData": {
"streams": {},
"referenceQuorum": {},
"markFreshness": {}
},
"chainlinkAdmission": {
"pending": [
{
"symbol": "<string>",
"state": "admission_reset_pending"
}
]
}
}{
"version": "external-rest-error/v1",
"requestId": "<string>",
"code": "invalid_request",
"safeMessage": "<string>",
"retryable": true,
"recoveryActions": [
"none"
],
"occurredAtEpochMs": 1,
"realtimeTicketFailure": "invalid",
"apiKeyRejection": "malformed",
"rejectionGuard": "amount_atoms_invalid",
"withdrawalFailure": "requested",
"dependency": "dfns"
}{
"version": "external-rest-error/v1",
"requestId": "<string>",
"code": "invalid_request",
"safeMessage": "<string>",
"retryable": true,
"recoveryActions": [
"none"
],
"occurredAtEpochMs": 1,
"realtimeTicketFailure": "invalid",
"apiKeyRejection": "malformed",
"rejectionGuard": "amount_atoms_invalid",
"withdrawalFailure": "requested",
"dependency": "dfns"
}{
"version": "external-rest-error/v1",
"requestId": "<string>",
"code": "invalid_request",
"safeMessage": "<string>",
"retryable": true,
"recoveryActions": [
"none"
],
"occurredAtEpochMs": 1,
"realtimeTicketFailure": "invalid",
"apiKeyRejection": "malformed",
"rejectionGuard": "amount_atoms_invalid",
"withdrawalFailure": "requested",
"dependency": "dfns"
}{
"service": "<string>",
"status": "starting",
"degradedState": "none",
"journalSequence": 1,
"runtimePolicyVersion": "<string>",
"sourceDigest": "<string>",
"databasePool": {
"total": 1,
"idle": 1,
"waiting": 1,
"max": 1,
"reason": "database_pool_waiting",
"pools": {}
},
"keyVerifier": {
"state": "ready",
"reason": "none"
},
"edjcTail": {
"composed": true,
"reader": "directory",
"reasonCode": "realtime_edjc:engine_url_required",
"cursorOrdinal": 0,
"committedThroughOrdinal": 0
},
"replication": {
"read": true,
"leaderFailureDomainDeclared": true,
"hasQualifyingStandby": true,
"reportingStandbyCount": 1,
"refusedStandbyCount": 1,
"lastQualifyingObservationAgeMs": 1,
"appliedSequence": 1,
"replicatedSequence": 1,
"replicationStalledForMs": 1,
"committedUnavailableReason": "no_standby_configured",
"unavailableReason": "cpp_writer_front_not_composed"
},
"engineKillSwitch": {
"version": "engine-kill-switch-status/v1",
"authorityComposed": true,
"engaged": true,
"activeSinceEpochMs": 0,
"reasonCode": "active_claims",
"activeClaims": [
{
"actor": "worker",
"source": "ledger_reconciliation",
"activatedAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"recoveryCondition": "complete_reconciliation_pass",
"effectScope": "venue_wide",
"evidence": {
"kind": "ledger_reconciliation",
"classification": "consistent",
"accountsChecked": 0,
"consistentAccounts": 0,
"pendingExplainableAccounts": 0,
"divergentAccounts": 0,
"unknownAccounts": 0,
"coverage": {
"requestedAccounts": 0,
"readAccounts": 0,
"unreadableAccounts": 0,
"unaccountedAccounts": 0,
"legacyExcludedAccounts": 0
},
"unreadableReasons": {}
},
"persistence": {
"state": "pending"
}
}
],
"lastTransition": {
"actor": "worker",
"source": "ledger_reconciliation",
"engaged": true,
"occurredAtEpochMs": 0,
"causeCode": "reconciliation_safety_proof_failed",
"persistence": {
"state": "pending"
}
}
},
"engineBootRecovery": {
"mode": "full_replay",
"reason": "snapshot_restored",
"logBase": "snapshot_anchored"
},
"engineHeldRowSettlement": {
"reason": "held_rows_settled",
"heldCommand": "applied",
"orderRoute": "settled",
"committedThroughOrdinal": 0,
"settledAtEpochMs": 0
},
"sequencerFence": {
"state": "clear",
"reason": "main_reply_ambiguous",
"sinceEpochMs": 1,
"settledBy": "core_log_applied"
},
"accountPositionCommitWait": {
"waits": 500000000,
"recoveries": 500000000,
"refusals": 500000000
},
"reconcilerEngineRead": {
"prefixBehindTipRetries": 500000000,
"prefixBehindTipRecoveries": 500000000
},
"reconciliationCommitLag": {
"sinceEpochMs": 0,
"passes": 500000000,
"committedVisibleOrdinal": 0,
"deferralsOpened": 500000000,
"deferralsExhausted": 500000000,
"haltEngagements": 500000000,
"haltReleases": 500000000
},
"marketBook": {
"composed": true,
"markets": [
{
"marketId": "<string>",
"lastPolledAtEpochMs": 1,
"lastPublishedAtEpochMs": 1,
"lastSnapshotSequence": 1,
"consecutiveFailures": 1,
"lastFailureReason": "market_book:request_failed"
}
]
},
"liveAccount": {
"composed": true,
"lastPassAtEpochMs": 1,
"trackedAccountCount": 1,
"consecutiveFailures": 1,
"lastFailureReason": "live_account:open_account_read_failed"
},
"degradedLeg": "databasePool",
"degradedLegState": "database_pool_waiting",
"degradedReason": "<string>",
"degradedReasonCode": "journal_configuration:accounting_epoch_missing",
"engineTransport": {
"active": "http",
"autoCloseRepairQuery": {
"reason": "none",
"httpStatus": 349,
"attempts": 2,
"sourceJournalSequence": 1,
"consequence": {
"keeperReason": "invalid_trigger",
"accountIdPrefix": "<string>",
"marketId": "<string>",
"sourceJournalSequence": 0,
"triggerKinds": [
"stop_loss"
],
"keeperError": {
"errorClass": "journal_append_refused",
"message": "<string>"
}
}
},
"autoCloseRepair": {
"sinceEpochMs": 0,
"pendingIntentCount": 0,
"committedWait": {
"sinceEpochMs": 0,
"reason": "no_standby_configured",
"refusals": 0
}
},
"requested": "aeron_ipc_cpp",
"composed": true
},
"cantonOffline": {
"policyReadable": true,
"policyVersion": "<string>",
"engaged": true,
"enforcing": true,
"enforcedLegs": [
"deposit_intake"
]
},
"apiReadinessLegs": [
{
"leg": "capability",
"gating": true,
"state": "ready",
"reason": "health_shell"
}
],
"cantonEgress": {
"intervalMs": 0,
"lastProbeAgeMs": 0,
"verification": {
"schema": "canton-egress-verification/v1",
"reachable": true,
"failedHop": "tcp→proxy",
"hops": [
{
"name": "tcp→proxy",
"latencyMs": 0,
"passed": true
}
]
}
},
"affiliateAccrualSkips": {
"total": 0,
"byReason": [
{
"reasonCode": "non_fill_event",
"count": 0,
"firstEventId": "<string>",
"lastEventId": "<string>"
}
]
},
"cantonStream": {
"state": "subscribing",
"reasonCode": "ledger_stream_unavailable",
"retryCount": 1,
"lastRetryAtEpochMs": 1,
"nextRetryAtEpochMs": 1,
"connected": true,
"sink": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"parkedObservationCount": 1,
"lastParked": {
"eventIdPrefix": "<string>",
"offset": "<string>",
"reasonCode": "malformed_command"
},
"pendingDeposits": {
"count": 0,
"oldestAgeMs": 0,
"byReason": [
{
"reasonCode": "malformed_command",
"count": 0
}
]
}
},
"depositReconciliation": {
"attemptCount": 1,
"httpStatus": 349,
"reasonCode": "sink_ready",
"engineReasonCode": "malformed_command"
},
"pendingCoreMirrorFillCount": 0,
"transferReceiptConflictCount": 0,
"edjcFrontierWriter": "this_worker",
"edjcDeferralReason": "edjc_frontier_writer_held_by_peer",
"edjcDeferredGroups": [
"<string>"
],
"edjcBoot": {
"path": "fold_snapshot",
"snapshotOrdinal": 0,
"tailRecords": 0,
"reachedAfterMs": 0,
"discardReason": "edjc_fold_snapshot_missing",
"phase": "catching_up",
"foldOrdinal": 0,
"committedThroughOrdinal": 0,
"remainingRecords": 0,
"reason": "edjc_checkpoint_ahead_of_native_frontier"
},
"edjcTakeover": {
"groupId": "native-account-cash/v1",
"step": "initialize",
"state": "running",
"ageMs": 4503599627370495,
"noProgressMs": 4503599627370495,
"boundMs": 60000,
"page": {
"fromOrdinal": 4503599627370495,
"maxRecords": 4503599627370495,
"committedThroughOrdinal": 4503599627370495
}
},
"edjcFreshness": {
"boundRecords": 0,
"boundSeconds": 1,
"lagRecords": 0,
"provedAgeMs": 0,
"withinBound": true
},
"edjcFoldSnapshot": {
"ordinal": 0,
"ageMs": 0,
"skipReason": "edjc_fold_snapshot_checkpoint_moved"
},
"edjcRoutePace": {
"maxInFlight": 0,
"inFlight": 0,
"waiting": 0,
"pagesRead": 0,
"pacedPages": 0,
"lastPageMs": 0,
"slowPageMs": 0,
"gapAfterSlowPageMs": 0
},
"edjcArchiveRead": {
"kind": "edjc_archive_read/v1",
"configuration": "disabled",
"invalidVariables": [
"<string>"
],
"verification": {
"state": "not_composed",
"verifiedThroughOrdinal": 0,
"verifiedSegments": 0,
"verifiedAtEpochMs": 0,
"ageMs": 0,
"pendingSegments": 0,
"lastPass": {
"kind": "incremental",
"heads": 0,
"atEpochMs": 0,
"durationMs": 0
}
},
"pagesServed": 0,
"cache": {
"boundBytes": 0,
"cachedSegments": 0,
"cachedBytes": 0,
"baseCutoffOrdinal": 0,
"evictedSegments": 0,
"evictedBytes": 0,
"pageNeedsBytes": 0
},
"archivedThroughOrdinal": 0,
"engineBaseCutoffOrdinal": 0,
"lastRefusal": {
"name": "edjc_archive_prefix_missing",
"reason": "archive_log_not_found",
"atEpochMs": 0
}
},
"edjcGroupPageRoute": {
"windowMs": 0,
"pagesServed": 0,
"recordsServed": 0,
"maxPageMs": 0,
"eventLoopMaxBlockMs": 0,
"eventLoopBlockBudgetMs": 0,
"topBlockCause": "page_request",
"externalBytes": 0,
"externalDeltaBytes": 0,
"rssBytes": 0,
"peakRssBytes": 0,
"heapUsedBytes": 0,
"heapUsedDeltaBytes": 0,
"maxHeapDropBytes": 0,
"heapObjectDiagnostics": {
"enabled": true,
"sampleCount": -4503599627370495,
"sampleMaxMs": 0,
"sampleTotalMs": 0,
"firstHeapUsedBytes": 0,
"lastHeapUsedBytes": 0,
"growth": [
{
"objectType": "<string>",
"countGrowth": 0,
"protectedCountGrowth": 0
}
]
},
"gcPauseMaxMs": 0,
"eventLoopUtilization": 0.5,
"indexCheckpoints": 0,
"indexFallbacks": 0,
"lastIndexFallbackReason": "edjc_page_index_segment_list_changed"
},
"journalArchive": {
"leg": "journal_archive",
"enabled": true,
"legState": "archive_lag_exceeded",
"localBytes": 4503599627370495,
"segmentCount": 4503599627370495,
"oldestLocalOrdinal": 4503599627370495,
"volumeFreeBytes": 4503599627370495,
"archivedThroughOrdinal": 4503599627370495,
"snapshotArchivedCutoffOrdinal": 4503599627370495,
"releasedThroughOrdinal": 4503599627370495,
"releaseEligibleThroughOrdinal": 4503599627370495,
"releaseRefusal": "release_disabled",
"release": {
"enabled": true,
"pointOrdinal": 4503599627370496,
"binding": "core_snapshot",
"gateRefusal": "release_disabled",
"terms": {
"coreSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"runtimeSnapshot": {
"retainFromOrdinal": 4503599627370495,
"retained": 4503599627370495
},
"consumers": {
"retainFromOrdinal": 4503599627370495,
"bindingConsumer": "<string>",
"unproven": [
"<string>"
],
"bindingReason": "cold_catch_up_from_genesis"
},
"archivePrefix": {
"retainFromOrdinal": 4503599627370495,
"readerBaseCutoffOrdinal": 4503599627370495
}
},
"lagRecords": 4503599627370495,
"lastReleasedSegment": "<string>",
"lastReleasedAtEpochMs": 4503599627370495,
"releasedSegments": 4503599627370495,
"releasedBytes": 4503599627370495
},
"lagSegments": 4503599627370495,
"lagBytes": 4503599627370495,
"lastUploadAtEpochMs": 4503599627370495,
"lastError": "archive_configuration_incomplete",
"identity": {
"source": "genesis_segment",
"record": "recorded"
},
"bounds": {
"lagSegments": 4503599627370495,
"localBytes": 4503599627370495
},
"snapshots": {
"core": {
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffOrdinal": 4503599627370495,
"newestCutoffOrdinal": 4503599627370495,
"prunedAtStart": {
"links": 4503599627370495,
"releasedBytes": 4503599627370495
}
},
"runtime": {
"directoryState": "store_not_composed",
"retained": 4503599627370495,
"bytes": 4503599627370495,
"oldestCutoffSequence": 4503599627370495,
"newestCutoffSequence": 4503599627370495,
"archivedCutoffSequence": 4503599627370495
}
}
},
"edjcReleaseWatermarks": [
{
"kind": "edjc_release_watermark/v1",
"consumer": "worker_cold_catch_up",
"state": "holding",
"reason": "cold_catch_up_from_genesis",
"retainFromOrdinal": 0,
"checkpointOrdinal": 0,
"logBase": "snapshot_anchored"
}
],
"runtimeSnapshot": {
"leg": "runtime_snapshot",
"storeKind": "volatile",
"cadenceRecords": 4503599627370495,
"lastCutoffSequence": 4503599627370495,
"lastWriteAtEpochMs": 4503599627370495,
"lastWriteDurationMs": 4503599627370495,
"writeInFlight": true,
"retainedSnapshots": 4503599627370495,
"retainBound": 4503599627370495,
"lastError": "snapshot_source_unavailable",
"boot": {
"mode": "full_replay",
"reason": "snapshot_restored",
"restoreEnabled": true,
"cutoffSequence": 4503599627370495,
"tailRecords": 4503599627370495,
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
},
"skipped": [
{
"cutoffSequence": 4503599627370495,
"reason": "snapshot_restored",
"cause": {
"class": "snapshot_schema_invalid",
"detail": "<string>"
}
}
],
"skippedOmitted": 4503599627370495
},
"maxAgeMs": 4503599627370495,
"bootCapture": {
"status": "not_due",
"reason": "tail_within_cadence",
"cutoffSequence": 4503599627370495,
"rounds": 4503599627370495
},
"settledOrdinal": 4503599627370495,
"lastCutAgeMs": 4503599627370495,
"cutHeld": "no_main_row_above_cut"
},
"marketDataFace": {
"leg": "market_data_face",
"foldState": "folding",
"legState": "market_data_face_contradicted",
"frozenFaceCut": 4503599627370495,
"breach": {
"laterOfferOrdinal": 4503599627370495,
"earlierOfferOrdinal": 4503599627370495
}
},
"coreTreasury": {
"installed": true,
"accountId": "<string>",
"lastRefusal": "<string>"
},
"riskAccountingMarker": {
"markerOrdinal": 123,
"lastRefusal": {
"reason": "front_not_bound",
"detail": "<string>"
}
},
"bunFundingEngine": {
"composed": true,
"leg": "funding_engine",
"settlement": "bun_risk_engine",
"lastAppliedPeriods": [
{
"marketId": "<string>",
"checkpointSequence": 1,
"lastTickEpochMs": 123,
"recordedAnchorEpochMs": 123
}
],
"lastRefusal": "funding_checkpoint_invalid"
},
"mainCommandChain": "core_digest",
"coreMirror": {
"enabled": true,
"mirroredOrdinal": 1,
"edjcTipOrdinal": 1,
"lastRefusal": {
"reason": "duplicate_ordinal",
"ordinal": 1,
"stage": "history_audit",
"detail": "<string>"
},
"waiting": {
"reason": "sequencer_not_ready",
"stage": "history_audit",
"ordinal": 123,
"sequencerStatus": "replaying",
"sinceEpochMs": 123,
"ageMs": 1,
"attempts": 123
},
"lastPollAtEpochMs": 123,
"mirroredSinceStart": 1,
"historyAudit": {
"cursorOrdinal": 123,
"throughOrdinal": 123,
"sinceEpochMs": 123,
"ageMs": 1
},
"settleObserverFailures": 1
},
"marketData": {
"streams": {},
"referenceQuorum": {},
"markFreshness": {}
},
"chainlinkAdmission": {
"pending": [
{
"symbol": "<string>",
"state": "admission_reset_pending"
}
]
}
}Response
Success
1starting, ready, degraded, unavailable none, warmup, paused, draining_to_journal, runtime_policy_unavailable, database_unavailable, journal_unavailable, projection_group_not_owned, projection_stale, replica_lagging, projector_backfilling, market_data_unavailable, canton_unavailable, signer_unavailable, reconciliation_blocked, kill_switch_active, authority_unreachable, unknown_command_outcome, action_requires_approval, dry_run_expired, unsafe_action_blocked x >= 011Show child attributes
Show child attributes
- Option 1
- Option 2
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
databasePool, projector, canton_stream, canton_runtime_identity, reconciliation, settlement, withdrawal_consume, jetstream_consumer, engine_cpp_transport, core_mirror, engine_replication, engine_kill_switch, funding_engine, market_mark_freshness, journal_archive, market_data_face, null database_pool_waiting, database_slots_exhausted, not_composed, run_failed, awaiting_first_run, not_caught_up, group_not_owned, ownership_unclaimed, identity_unverified, halt_engaged, halt_delivery_failed, margin_configuration_upgrade_pending, auto_close_repair_in_progress, auto_close_repair_awaiting_committed, refused_stopped, mark_stale, standby_absent, replication_stalled, stopped_awaiting_replacement, archive_lag_exceeded, local_journal_bytes_exceeded, market_data_face_contradicted, null 1journal_configuration:accounting_epoch_missing, journal_configuration:accounting_epoch_mismatch, journal_configuration:page_request_invalid, journal_configuration:service_identity_required, journal_configuration:writer_provenance_invalid, journal_configuration:per_record_fsync_required, journal_configuration:synchronous_commit_required, journal_configuration:engine_url_required, journal_configuration:engine_url_invalid, journal_configuration:service_secret_required, journal_configuration:service_secret_invalid, journal_lock:writer_lock_state_invalid, journal_lock:writer_lock_held, journal_lock:writer_lock_invalid, journal_lock:advisory_lock_held, journal_lock:operation_in_progress, journal_lock:projection_group_not_owned, journal_provenance:manifest_missing, journal_provenance:source_missing_for_manifest, journal_provenance:manifest_missing_for_history, journal_provenance:authoritative_manifest_requires_provenanced_writer, journal_provenance:writer_provenance_unavailable, journal_provenance:writer_provenance_invalid, journal_provenance:writer_provenance_mismatch, journal_provenance:journal_identity_changed, journal_provenance:writer_incarnation_mismatch, journal_provenance:manifest_tip_mismatch, journal_provenance:manifest_tip_changed, journal_provenance:manifest_compare_and_swap_failed, journal_provenance:identity_provisioning_compare_and_swap_failed, journal_provenance:source_identity_changed, journal_provenance:indexed_source_identity_changed, journal_provenance:snapshot_mismatch, journal_provenance:manifest_tip_regressed, journal_provenance:manifest_tip_unanchored, journal_provenance:manifest_commit_marker_unsafe, journal_provenance:command_link_profile_mismatch, journal_provenance:command_link_profile_not_consumed, journal_provenance:readiness_epoch_mismatch, journal_data:incomplete_tail, journal_data:invalid_json, journal_data:record_schema_invalid, journal_data:manifest_schema_invalid, journal_data:manifest_hash_invalid, journal_data:payload_hash_invalid, journal_data:record_hash_invalid, journal_data:hash_chain_invalid, journal_data:fork_invalid, journal_data:record_too_large, journal_data:page_too_large, journal_data:manifest_too_large, journal_data:sequence_out_of_range, journal_data:invalid_command_chain, journal_data:command_link_profile_invalid, journal_data:semantic_validation_failed, journal_data:page_record_count_invalid, journal_data:page_record_mismatch, journal_data:page_invalid, journal_availability:source_unavailable, journal_availability:manifest_unavailable, journal_availability:directory_unavailable, journal_availability:source_changed_during_read, journal_availability:source_changed_during_page, journal_availability:manifest_changed_during_read, journal_availability:writer_state_unavailable, journal_availability:writer_fenced_after_append_uncertainty, journal_availability:writer_closed, journal_availability:invalid_write_progress, journal_availability:database_unreachable_before_commit, journal_availability:database_commit_outcome_uncertain, journal_availability:database_provisioning_failed, journal_availability:range_unavailable, journal_availability:source_ended_before_committed_tip, journal_availability:page_offsets_unavailable, journal_availability:remote_response_status_invalid, journal_availability:remote_response_content_type_invalid, journal_availability:remote_response_too_large, journal_availability:remote_response_body_invalid, journal_availability:remote_response_json_invalid, journal_availability:remote_page_invalid, journal_availability:remote_request_timeout, journal_availability:remote_request_failed, journal_availability:page_build_failed, journal_projection:not_composed, journal_projection:run_failed, journal_projection:not_caught_up, journal_projection:iteration_in_progress, journal_projection:consumer_topology_invalid, journal_projection:source_consumer_missing, journal_projection:checkpoint_invalid, journal_projection:checkpoint_binding_failed, journal_projection:snapshot_mismatch, journal_projection:consumer_lagging, journal_projection:cursor_state_missing, journal_projection:preflight_page_missing, journal_projection:source_capture_missing, journal_projection:page_rejected, journal_projection:page_checkpoint_binding_mismatch, journal_projection:page_incomplete, journal_projection:page_group_invalid, journal_projection:waiting_for_dependency, journal_projection:source_provenance_missing, journal_data:private_file_invalid, journal_provenance:manifest_identity_changed, journal_availability:local_log_volume_exhausted, journal_retired:edj1_persistor_format, journal_retired:edj1_worker_projection, journal_retired:edj1_page_transport, journal_retired:edj1_market_data_stream, journal_retired:edj1_realtime_tail, null Show child attributes
Show child attributes
Show child attributes
Show child attributes
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
-9007199254740991 <= x <= 9007199254740991-9007199254740991 <= x <= 9007199254740991this_worker, peer_worker edjc_frontier_writer_held_by_peer 1Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
4Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
core_digest, bun_command_hash Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes