VectorVue Documentation

Integration, platform operations, architecture, and assurance references

Phase 2 Sprint 2.1 - Queue Layer Architecture

Summary

Telemetry gateway now publishes accepted messages to an internal NATS subject and routes malformed payloads to a dedicated dead-letter subject.

Threat Model

Attack Vectors Considered

Mitigations Implemented

Residual Risk

Future Improvements

Architecture Diagram

flowchart LR
  SS[SpectraStrike]
  TG[Telemetry Gateway]
  NATS[(NATS Internal Queue)]
  DLQ[(NATS DLQ Subject)]
  PE[Processing Engine - Phase 3]

  SS --> TG
  TG -->|valid + hashed envelope| NATS
  TG -->|malformed + error envelope| DLQ
  NATS --> PE