console
<svg width="1200" height="1200" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="coloredBlur">
</feGaussianBlur>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<path id="motionPath" d="M10,90 h80 a8,8 0 0 1 8,8 v74 a8,8 0 0 0 8,8 h80"
stroke="#ddd" fill="none" stroke-width="2"/>
<path id="motionPath2" d="M10,90 h170"
stroke="#ddd" fill="none" stroke-width="2"/>
<rect x="-6" y="-2" width="12" height="4" fill="orange" filter="url(#glow)">
<animateMotion dur="2s" repeatCount="indefinite" rotate="auto">
<mpath href="#motionPath"/>
</animateMotion>
</rect>
<rect x="-6" y="-2" width="12" height="4" fill="orange" filter="url(#glow)">
<animateMotion dur="2s" repeatCount="indefinite" rotate="auto">
<mpath href="#motionPath2"/>
</animateMotion>
</rect>
</svg>