Len
You can use a second eDMA channel to use the GPIO trigger to write a value to a GPIO toggle register. Like this it will cause an output to change state on each trigger.
There are however three things to be aware of:
1. Although it works to trigger 2 DMA channels from the same port it is not recommended in the user guides (it would need the same signal connected in parallel to two different ones to be "clean").
2. This doesn't prove that the other channel is actually operating since it may be that the other channel has stalled due to some reason.
3. Don't underestimate the extra bus load due to continuous fast DMA. I have seen Ethernet and USB start to overflow due to other DMA operations slowing access overall - and the processor instruction core ill also be waiting more for the bus.
Assuming that the main channel would only stop due to some form of error you can also use the eDMA error interrupt to display that something is wrong. You could then have a free running timer output showing is is well and stop it if the eDAM error interrupt fires (if a toggling signal is to indicate OK).
In software you could also periodically check the eDMA counter - if you poll it (slowly) and see that it hasn't changed there is possibly something wrong. The reaction time to detecting an anomaly would however be determined by the polling rate.
Regards
Mark