No problem. Be sure, however, you're not re-exporting things like the static default route. If you're redistributing statics, then specify the interface in the same routemap ID with a second match clause. Same goes for a directly-connected interface; no need to redistribute the external/Internet-facing interface.
Assuming eth0 is your external-facing interface (likely the interface facing your peer as well):
set routemap bgp_export id 10 match protocol direct
set routemap bgp_export id 10 match interface eth1
set routemap bgp_export id 10 match interface eth2
You can see what's being received, but hidden by the local FIB manager when routes are offered by each routing protocol:
show route bgp all
Routes with code 'i' are inactive, usually because a better route is already installed or otherwise available from another routing source (such as an existing local static route).
Otherwise, enjoy! Glad you got it working; nice job!