diff --git a/README.md b/README.md index f4babe067..764e52cb6 100644 --- a/README.md +++ b/README.md @@ -1094,14 +1094,16 @@ xatu_sentry_params: # Beacon event stream topics to subscribe to beacon_subscriptions: - attestation + - single_attestation - block + - block_gossip - chain_reorg - finalized_checkpoint - head - voluntary_exit - contribution_and_proof - blob_sidecar - + - data_column_sidecar # Apache params # Apache public port to port forward to local machine # Default to port None, only set if apache additional service is activated diff --git a/network_params.yaml b/network_params.yaml index 1ae668bde..091746613 100644 --- a/network_params.yaml +++ b/network_params.yaml @@ -208,13 +208,16 @@ xatu_sentry_params: xatu_server_headers: {} beacon_subscriptions: - attestation + - single_attestation - block + - block_gossip - chain_reorg - finalized_checkpoint - head - voluntary_exit - contribution_and_proof - blob_sidecar + - data_column_sidecar apache_port: 40000 nginx_port: 50000 global_tolerations: [] diff --git a/src/package_io/input_parser.star b/src/package_io/input_parser.star index 811689843..51d5e2a16 100644 --- a/src/package_io/input_parser.star +++ b/src/package_io/input_parser.star @@ -1561,13 +1561,16 @@ def get_default_xatu_sentry_params(): "xatu_server_tls": False, "beacon_subscriptions": [ "attestation", + "single_attestation", "block", + "block_gossip", "chain_reorg", "finalized_checkpoint", "head", "voluntary_exit", "contribution_and_proof", "blob_sidecar", + "data_column_sidecar", ], } diff --git a/static_files/xatu-sentry-config/config.yaml.tmpl b/static_files/xatu-sentry-config/config.yaml.tmpl index 5be3ab05c..6046f77fd 100644 --- a/static_files/xatu-sentry-config/config.yaml.tmpl +++ b/static_files/xatu-sentry-config/config.yaml.tmpl @@ -45,6 +45,18 @@ attestationData: beaconCommittees: enabled: true +validatorBlock: + at: + enabled: true + slotTimes: + - 0.1s + enabled: true + interval: + enabled: false + +proposerDuty: + enabled: true + outputs: - name: xatu-server type: xatu @@ -60,4 +72,4 @@ outputs: {{- range $key, $value := .XatuServerHeaders }} {{ $key }}: "{{ $value }}" {{- end }} - {{- end }} \ No newline at end of file + {{- end }}