Add link guide for installing new renderer (#21702)

This commit is contained in:
Carl Bergquist 2020-01-28 10:57:55 +01:00 committed by GitHub
parent ea18779781
commit 5dbd7c9e58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,8 @@ func (rs *RenderingService) Run(ctx context.Context) error {
rs.log = rs.log.New("renderer", "phantomJS")
rs.log.Info("Backend rendering via phantomJS")
rs.log.Warn("phantomJS is deprecated and will be removed in a future release. " +
"You should consider migrating from phantomJS to grafana-image-renderer plugin.")
"You should consider migrating from phantomJS to grafana-image-renderer plugin. " +
"Read more at https://grafana.com/docs/grafana/latest/administration/image_rendering/")
rs.renderAction = rs.renderViaPhantomJS
<-ctx.Done()
return nil