github.com/yankunsam/loki/v2@v2.6.3-0.20220817130409-389df5235c27/production/loki-mixin/config.libsonnet (about) 1 { 2 _config+:: { 3 // Tags for dashboards. 4 tags: ['loki'], 5 6 // The label used to differentiate between different application instances (i.e. 'pod' in a kubernetes install). 7 per_instance_label: 'pod', 8 9 // The label used to differentiate between different nodes (i.e. servers). 10 per_node_label: 'instance', 11 12 // The label used to differentiate between different clusters. 13 per_cluster_label: 'cluster', 14 15 // Enable dashboard and panels for Grafana Labs internal components. 16 internal_components: false, 17 18 // SSD related configuration for dashboards. 19 ssd: { 20 // Support Loki SSD mode on dashboards. 21 enabled: false, 22 23 // The prefix used to match the write and read pods on SSD mode. 24 pod_prefix_matcher: '(loki|enterprise-logs)', 25 }, 26 }, 27 }