How can i access the built in graphite dashboard using the docker swarm scheduler?

All Replicated installations come with a StatsD/Graphite/Carbon container that can be used by your application containers to report data.

https://help.replicated.com/docs/swarm/packaging-an-application/custom-metrics/

How can I access the built in graphite dashboard?

The graphite dashboard port can be published to the host network by running the following command:

docker service update --publish-add published=<host port>,target=2443 statsd_replicated

Substitute <host port> for the port onto which you would like to publish the service.