1local loki = import 'loki/loki.libsonnet';23loki {4 _config+:: {5 namespace: 'loki',6 cluster: 'loki-bench',7 storage_backend: 's3',8 s3_address: 's3.example.com',9 s3_bucket_name: 'loki-bench',10 s3_access_key: 'AKIA',11 s3_secret_access_key: 'SECRET',12 boltdb_shipper_shared_store: 's3',1314 using_boltdb_shipper: false,15 using_tsdb_shipper: true,16 use_index_gateway: true,1718 loki+: {19 schema_config+: {20 configs: [{21 from: '2024-01-01',22 store: 'tsdb',23 object_store: 's3',24 schema: 'v13',25 index: { prefix: 'loki_index_', period: '24h' },26 }],27 },28 },29 },30}