ceph config set mgr mgr/telemetry/description 'My first Ceph cluster'
ceph config set mgr mgr/telemetry/channel_ident true
+Leaderboard
+-----------
+
+Users who are interested in participating in a leaderboard in the `public
+dashboards <https://telemetry-public.ceph.com/>`_ can do so with::
+
+ ceph config set mgr mgr/telemetry/leaderboard true
+
+The leaderboard displays basic information about the cluster, like total
+storage capacity, number of OSDs, etc. A description of the cluster can be
+added with::
+
+ ceph config set mgr mgr/telemetry/leaderboard_description 'Ceph cluster for Computational Biology at the University of XYZ'
+
+In case the 'ident' channel is enabled, its details will not be displayed in
+the leaderboard.
+
Option(name='leaderboard',
type='bool',
default=False),
+ Option(name='leaderboard_description',
+ type='str',
+ default=None),
Option(name='description',
type='str',
default=None),
self.enabled = False
self.last_opt_revision = 0
self.leaderboard = ''
+ self.leaderboard_description = ''
self.interval = 0
self.proxy = ''
self.channel_basic = True
channels = self.get_active_channels()
report = {
'leaderboard': self.leaderboard,
+ 'leaderboard_description': self.leaderboard_description,
'report_version': 1,
'report_timestamp': datetime.utcnow().isoformat(),
'report_id': self.report_id,