@@ -30,40 +30,40 @@ func mustHexDecode(s string) []byte {
30
30
31
31
var exploreProfileReleases = releaseArtifacts {
32
32
{
33
- URL : "https://github.com/grafana/explore- profiles/releases/download/v0.1.5 /grafana-pyroscope-app-405 .zip" ,
34
- Sha256Sum : mustHexDecode ("6e133f49b0528633146ccf77bb07f09ea1e4aaac3ce9563df42cfd54f6f7e753 " ),
33
+ URL : "https://github.com/grafana/profiles-drilldown /releases/download/v1.5.0 /grafana-pyroscope-app-v1.5.0 .zip" ,
34
+ Sha256Sum : mustHexDecode ("0b74db5c96b5edc8849af9ca830ff98ba6eaff96f30deda225e6cd68514cc574 " ),
35
35
CompressType : CompressTypeZip ,
36
36
},
37
37
}
38
38
39
39
var grafanaReleases = releaseArtifacts {
40
40
{
41
- URL : "https://dl.grafana.com/oss/release/grafana-11.1.0 .linux-amd64.tar.gz" ,
42
- Sha256Sum : mustHexDecode ("33822a0b275ea4f216c9a3bdda53d1dba668e3e9873dc52104bc565bcbd8d856 " ),
41
+ URL : "https://dl.grafana.com/oss/release/grafana-12.0.2 .linux-amd64.tar.gz" ,
42
+ Sha256Sum : mustHexDecode ("c1755b4da918edfd298d5c8d5f1ffce35982ad10e1640ec356570cfb8c34b3e8 " ),
43
43
OS : "linux" ,
44
44
Arch : "amd64" ,
45
45
CompressType : CompressTypeGzip ,
46
46
StripComponents : 1 ,
47
47
},
48
48
{
49
- URL : "https://dl.grafana.com/oss/release/grafana-11.1.0 .linux-arm64.tar.gz" ,
50
- Sha256Sum : mustHexDecode ("80b36751c29593b8fdb72906bd05f8833631dd826b8447bcdc9ba9bb0f6122aa " ),
49
+ URL : "https://dl.grafana.com/oss/release/grafana-12.0.2 .linux-arm64.tar.gz" ,
50
+ Sha256Sum : mustHexDecode ("bc0b186458cc91e2f96a06ecff2b3b4033b1a6ffd2449817e2a430a0b4ae4f12 " ),
51
51
OS : "linux" ,
52
52
Arch : "arm64" ,
53
53
CompressType : CompressTypeGzip ,
54
54
StripComponents : 1 ,
55
55
},
56
56
{
57
- URL : "https://dl.grafana.com/oss/release/grafana-11.1.0 .darwin-amd64.tar.gz" ,
58
- Sha256Sum : mustHexDecode ("96984def29a8d2d2f93471b2f012e9750deb54ab54b41272dc0cd9fc481e0c7d " ),
57
+ URL : "https://dl.grafana.com/oss/release/grafana-12.0.2 .darwin-amd64.tar.gz" ,
58
+ Sha256Sum : mustHexDecode ("ca2e97682149e482813c343f6b6d93e2f67dea33eae9a808513c7c62457c66e9 " ),
59
59
OS : "darwin" ,
60
60
Arch : "amd64" ,
61
61
CompressType : CompressTypeGzip ,
62
62
StripComponents : 1 ,
63
63
},
64
64
{
65
- URL : "https://dl.grafana.com/oss/release/grafana-11.1.0 .darwin-arm64.tar.gz" ,
66
- Sha256Sum : mustHexDecode ("a7498744d8951c46f742bdc56d429473912fed6daa81fdba9711f2cfc51b8143 " ),
65
+ URL : "https://dl.grafana.com/oss/release/grafana-12.0.2 .darwin-arm64.tar.gz" ,
66
+ Sha256Sum : mustHexDecode ("3f162ba5dc3bbd0133055ecd40f4f1f791b287bee8e0487449f001b6e1c11a4f " ),
67
67
OS : "darwin" ,
68
68
Arch : "arm64" ,
69
69
CompressType : CompressTypeGzip ,
@@ -280,13 +280,15 @@ func (a *app) starting(ctx context.Context) error {
280
280
cmd .Env = append (cmd .Env , fmt .Sprintf ("%s=%s" , key , value ))
281
281
}
282
282
}
283
+ setIfNotExists ("GF_PLUGINS_PREINSTALL_DISABLED" , "true" ) // required so we can load the version we have bundled
283
284
setIfNotExists ("GF_PATHS_DATA" , a .dataPath )
284
285
setIfNotExists ("GF_PATHS_PLUGINS" , a .pluginsPath )
285
286
setIfNotExists ("GF_PATHS_PROVISIONING" , a .provisioningPath )
286
287
setIfNotExists ("GF_AUTH_ANONYMOUS_ENABLED" , "true" )
287
288
setIfNotExists ("GF_AUTH_ANONYMOUS_ORG_ROLE" , "Admin" )
288
289
setIfNotExists ("GF_AUTH_DISABLE_LOGIN_FORM" , "true" )
289
290
setIfNotExists ("GF_SERVER_HTTP_PORT" , strconv .Itoa (a .cfg .ListenPort ))
291
+ setIfNotExists ("GF_LOG_LEVEL" , "error" )
290
292
291
293
a .g , _ = errgroup .WithContext (ctx )
292
294
0 commit comments