Skip to content
Documentation/canton-network-docs/Admin APIgRPC APIPackagescom.digitalasset.canton.admin.participant.v30ServicesParticipantInspectionServiceView on canton-network-docs
canton-network-docs/Admin APIgRPC APIPackagescom.digitalasset.canton.admin.participant.v30ServicesParticipantInspectionService

GetIntervalsBehindForCounterParticipants

Participant AdministrationProtobufcom.digitalasset.canton.admin.participant.v30GetIntervalsBehindForCounterParticipants

com.digitalasset.canton.admin.participant.v30

GetIntervalsBehindForCounterParticipants

gRPCSince 3.4.0
RPC/com.digitalasset.canton.admin.participant.v30.ParticipantInspectionService/GetIntervalsBehindForCounterParticipants

Protocol Details

Inputs

GetIntervalsBehindForCounterParticipantsRequest

counter_participant_idsrepeated string
synchronizer_idsrepeated string
thresholduint64

Outputs

GetIntervalsBehindForCounterParticipantsResponse

intervals_behindrepeated CounterParticipantInfo

Lifecycle Changes

3.4.0introduced

com.digitalasset.canton.admin.participant.v30.GetIntervalsBehindForCounterParticipantsRequest

counter_participant_idsrepeated string
synchronizer_idsrepeated string
thresholduint64

com.digitalasset.canton.admin.participant.v30.GetIntervalsBehindForCounterParticipantsResponse

intervals_behindrepeated CounterParticipantInfo

com.digitalasset.canton.admin.participant.v30.CounterParticipantInfo

counter_participant_uidstring
synchronizer_idstring
intervals_behinduint64
behind_sinceDuration
as_of_sequencing_timestampTimestamp
grpcurl
grpcurl
# Add -plaintext if the server is not using TLS.
grpcurl \
  -d @ \
  <HOST:PORT> \
  com.digitalasset.canton.admin.participant.v30.ParticipantInspectionService/GetIntervalsBehindForCounterParticipants <<'EOF'
{
  "counterParticipantIds": [
    "string"
  ],
  "synchronizerIds": [
    "string"
  ],
  "threshold": "0"
}
EOF
OKapplication/json
OK
{
  "intervalsBehind": [
    {
      "counterParticipantUid": "string",
      "synchronizerId": "string",
      "intervalsBehind": "0",
      "behindSince": "string",
      "asOfSequencingTimestamp": "string"
    }
  ]
}