How to list your mainnet project in telemetry.polkadot.io?

Thanks in advance. Can someone show us the ropes on how to include our nodes in the telemetry.polkadot.io site.

1 Like

Polkadot SDK based chains have flags for handling submission to the telemetry site:

      --no-telemetry
          Disable connecting to the Substrate telemetry server.
          
          Telemetry is on by default on global chains.

      --telemetry-url <URL VERBOSITY>
          The URL of the telemetry server to connect to.
          
          This flag can be passed multiple times as a means to specify multiple
          telemetry endpoints. Verbosity levels range from 0-9, with 0 denoting
          the least verbosity.
          
          Expected format is 'URL VERBOSITY', e.g. `--telemetry-url
          'wss://foo/bar 0'`.

You want to pass:

--telemetry-url "wss://telemetry.polkadot.io/submit/ 0"

Closing this thread as we would prefer these kinds of technical questions to live on the Polkadot StackExchange: https://substrate.stackexchange.com/

You can earn some free StackExchange points by creating a self-answered question with this exact question and answer :slight_smile:

1 Like