mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
b8852ef6a3
* Remove context.TODO() from services * Fix live test * Remove context.TODO
392 lines
11 KiB
Go
392 lines
11 KiB
Go
package rendering
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
"net/url"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/infra/metrics"
|
|
"github.com/grafana/grafana/pkg/infra/remotecache"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
)
|
|
|
|
func init() {
|
|
remotecache.Register(&RenderUser{})
|
|
}
|
|
|
|
const ServiceName = "RenderingService"
|
|
const renderKeyPrefix = "render-%s"
|
|
|
|
type RenderUser struct {
|
|
OrgID int64
|
|
UserID int64
|
|
OrgRole string
|
|
}
|
|
|
|
type RenderingService struct {
|
|
log log.Logger
|
|
pluginInfo *plugins.Plugin
|
|
renderAction renderFunc
|
|
renderCSVAction renderCSVFunc
|
|
domain string
|
|
inProgressCount int32
|
|
version string
|
|
versionMutex sync.RWMutex
|
|
|
|
Cfg *setting.Cfg
|
|
RemoteCacheService *remotecache.RemoteCache
|
|
RendererPluginManager plugins.RendererManager
|
|
}
|
|
|
|
func ProvideService(cfg *setting.Cfg, remoteCache *remotecache.RemoteCache, rm plugins.RendererManager) (*RenderingService, error) {
|
|
// ensure ImagesDir exists
|
|
err := os.MkdirAll(cfg.ImagesDir, 0700)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create images directory %q: %w", cfg.ImagesDir, err)
|
|
}
|
|
|
|
// ensure CSVsDir exists
|
|
err = os.MkdirAll(cfg.CSVsDir, 0700)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create CSVs directory %q: %w", cfg.CSVsDir, err)
|
|
}
|
|
|
|
var domain string
|
|
// set value used for domain attribute of renderKey cookie
|
|
switch {
|
|
case cfg.RendererUrl != "":
|
|
// RendererCallbackUrl has already been passed, it won't generate an error.
|
|
u, err := url.Parse(cfg.RendererCallbackUrl)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
domain = u.Hostname()
|
|
case cfg.HTTPAddr != setting.DefaultHTTPAddr:
|
|
domain = cfg.HTTPAddr
|
|
default:
|
|
domain = "localhost"
|
|
}
|
|
|
|
s := &RenderingService{
|
|
Cfg: cfg,
|
|
RemoteCacheService: remoteCache,
|
|
RendererPluginManager: rm,
|
|
log: log.New("rendering"),
|
|
domain: domain,
|
|
}
|
|
return s, nil
|
|
}
|
|
|
|
func (rs *RenderingService) Run(ctx context.Context) error {
|
|
if rs.remoteAvailable() {
|
|
rs.log = rs.log.New("renderer", "http")
|
|
|
|
rs.getRemotePluginVersionWithRetry(func(version string, err error) {
|
|
if err != nil {
|
|
rs.log.Info("Couldn't get remote renderer version", "err", err)
|
|
}
|
|
|
|
rs.log.Info("Backend rendering via external http server", "version", version)
|
|
|
|
rs.versionMutex.Lock()
|
|
defer rs.versionMutex.Unlock()
|
|
|
|
rs.version = version
|
|
})
|
|
rs.renderAction = rs.renderViaHTTP
|
|
rs.renderCSVAction = rs.renderCSVViaHTTP
|
|
<-ctx.Done()
|
|
return nil
|
|
}
|
|
|
|
if rs.pluginAvailable() {
|
|
rs.log = rs.log.New("renderer", "plugin")
|
|
rs.pluginInfo = rs.RendererPluginManager.Renderer()
|
|
|
|
if err := rs.startPlugin(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
rs.version = rs.pluginInfo.Info.Version
|
|
rs.renderAction = rs.renderViaPlugin
|
|
rs.renderCSVAction = rs.renderCSVViaPlugin
|
|
<-ctx.Done()
|
|
|
|
// On Windows, Chromium is generating a debug.log file that breaks signature check on next restart
|
|
debugFilePath := path.Join(rs.pluginInfo.PluginDir, "chrome-win/debug.log")
|
|
if _, err := os.Stat(debugFilePath); err == nil {
|
|
err = os.Remove(debugFilePath)
|
|
if err != nil {
|
|
rs.log.Warn("Couldn't remove debug.log file, the renderer plugin will not be able to pass the signature check until this file is deleted",
|
|
"err", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
rs.log.Debug("No image renderer found/installed. " +
|
|
"For image rendering support please install the grafana-image-renderer plugin. " +
|
|
"Read more at https://grafana.com/docs/grafana/latest/administration/image_rendering/")
|
|
|
|
<-ctx.Done()
|
|
return nil
|
|
}
|
|
|
|
func (rs *RenderingService) pluginAvailable() bool {
|
|
return rs.RendererPluginManager.Renderer() != nil
|
|
}
|
|
|
|
func (rs *RenderingService) remoteAvailable() bool {
|
|
return rs.Cfg.RendererUrl != ""
|
|
}
|
|
|
|
func (rs *RenderingService) IsAvailable() bool {
|
|
return rs.remoteAvailable() || rs.pluginAvailable()
|
|
}
|
|
|
|
func (rs *RenderingService) Version() string {
|
|
rs.versionMutex.RLock()
|
|
defer rs.versionMutex.RUnlock()
|
|
|
|
return rs.version
|
|
}
|
|
|
|
func (rs *RenderingService) RenderErrorImage(theme Theme, err error) (*RenderResult, error) {
|
|
if theme == "" {
|
|
theme = ThemeDark
|
|
}
|
|
imgUrl := "public/img/rendering_%s_%s.png"
|
|
if errors.Is(err, ErrTimeout) {
|
|
imgUrl = fmt.Sprintf(imgUrl, "timeout", theme)
|
|
} else {
|
|
imgUrl = fmt.Sprintf(imgUrl, "error", theme)
|
|
}
|
|
|
|
imgPath := filepath.Join(rs.Cfg.HomePath, imgUrl)
|
|
if _, err := os.Stat(imgPath); errors.Is(err, os.ErrNotExist) {
|
|
return nil, err
|
|
}
|
|
|
|
return &RenderResult{
|
|
FilePath: imgPath,
|
|
}, nil
|
|
}
|
|
|
|
func (rs *RenderingService) renderUnavailableImage() *RenderResult {
|
|
imgPath := "public/img/rendering_plugin_not_installed.png"
|
|
|
|
return &RenderResult{
|
|
FilePath: filepath.Join(setting.HomePath, imgPath),
|
|
}
|
|
}
|
|
|
|
func (rs *RenderingService) Render(ctx context.Context, opts Opts) (*RenderResult, error) {
|
|
startTime := time.Now()
|
|
result, err := rs.render(ctx, opts)
|
|
|
|
elapsedTime := time.Since(startTime).Milliseconds()
|
|
saveMetrics(elapsedTime, err, RenderPNG)
|
|
|
|
return result, err
|
|
}
|
|
|
|
func (rs *RenderingService) render(ctx context.Context, opts Opts) (*RenderResult, error) {
|
|
if int(atomic.LoadInt32(&rs.inProgressCount)) > opts.ConcurrentLimit {
|
|
theme := ThemeDark
|
|
if opts.Theme != "" {
|
|
theme = opts.Theme
|
|
}
|
|
filePath := fmt.Sprintf("public/img/rendering_limit_%s.png", theme)
|
|
return &RenderResult{
|
|
FilePath: filepath.Join(rs.Cfg.HomePath, filePath),
|
|
}, nil
|
|
}
|
|
|
|
if !rs.IsAvailable() {
|
|
rs.log.Warn("Could not render image, no image renderer found/installed. " +
|
|
"For image rendering support please install the grafana-image-renderer plugin. " +
|
|
"Read more at https://grafana.com/docs/grafana/latest/administration/image_rendering/")
|
|
return rs.renderUnavailableImage(), nil
|
|
}
|
|
|
|
rs.log.Info("Rendering", "path", opts.Path)
|
|
if math.IsInf(opts.DeviceScaleFactor, 0) || math.IsNaN(opts.DeviceScaleFactor) || opts.DeviceScaleFactor <= 0 {
|
|
opts.DeviceScaleFactor = 1
|
|
}
|
|
renderKey, err := rs.generateAndStoreRenderKey(ctx, opts.OrgID, opts.UserID, opts.OrgRole)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer rs.deleteRenderKey(ctx, renderKey)
|
|
|
|
defer func() {
|
|
metrics.MRenderingQueue.Set(float64(atomic.AddInt32(&rs.inProgressCount, -1)))
|
|
}()
|
|
|
|
metrics.MRenderingQueue.Set(float64(atomic.AddInt32(&rs.inProgressCount, 1)))
|
|
return rs.renderAction(ctx, renderKey, opts)
|
|
}
|
|
|
|
func (rs *RenderingService) RenderCSV(ctx context.Context, opts CSVOpts) (*RenderCSVResult, error) {
|
|
startTime := time.Now()
|
|
result, err := rs.renderCSV(ctx, opts)
|
|
|
|
elapsedTime := time.Since(startTime).Milliseconds()
|
|
saveMetrics(elapsedTime, err, RenderCSV)
|
|
|
|
return result, err
|
|
}
|
|
|
|
func (rs *RenderingService) renderCSV(ctx context.Context, opts CSVOpts) (*RenderCSVResult, error) {
|
|
if int(atomic.LoadInt32(&rs.inProgressCount)) > opts.ConcurrentLimit {
|
|
return nil, ErrConcurrentLimitReached
|
|
}
|
|
|
|
if !rs.IsAvailable() {
|
|
return nil, ErrRenderUnavailable
|
|
}
|
|
|
|
rs.log.Info("Rendering", "path", opts.Path)
|
|
renderKey, err := rs.generateAndStoreRenderKey(ctx, opts.OrgID, opts.UserID, opts.OrgRole)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer rs.deleteRenderKey(ctx, renderKey)
|
|
|
|
defer func() {
|
|
metrics.MRenderingQueue.Set(float64(atomic.AddInt32(&rs.inProgressCount, -1)))
|
|
}()
|
|
|
|
metrics.MRenderingQueue.Set(float64(atomic.AddInt32(&rs.inProgressCount, 1)))
|
|
return rs.renderCSVAction(ctx, renderKey, opts)
|
|
}
|
|
|
|
func (rs *RenderingService) GetRenderUser(ctx context.Context, key string) (*RenderUser, bool) {
|
|
val, err := rs.RemoteCacheService.Get(ctx, fmt.Sprintf(renderKeyPrefix, key))
|
|
if err != nil {
|
|
rs.log.Error("Failed to get render key from cache", "error", err)
|
|
}
|
|
|
|
if val != nil {
|
|
if user, ok := val.(*RenderUser); ok {
|
|
return user, true
|
|
}
|
|
}
|
|
|
|
return nil, false
|
|
}
|
|
|
|
func (rs *RenderingService) getNewFilePath(rt RenderType) (string, error) {
|
|
rand, err := util.GetRandomString(20)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
ext := "png"
|
|
folder := rs.Cfg.ImagesDir
|
|
if rt == RenderCSV {
|
|
ext = "csv"
|
|
folder = rs.Cfg.CSVsDir
|
|
}
|
|
|
|
return filepath.Abs(filepath.Join(folder, fmt.Sprintf("%s.%s", rand, ext)))
|
|
}
|
|
|
|
func (rs *RenderingService) getURL(path string) string {
|
|
if rs.Cfg.RendererUrl != "" {
|
|
// The backend rendering service can potentially be remote.
|
|
// So we need to use the root_url to ensure the rendering service
|
|
// can reach this Grafana instance.
|
|
|
|
// &render=1 signals to the legacy redirect layer to
|
|
return fmt.Sprintf("%s%s&render=1", rs.Cfg.RendererCallbackUrl, path)
|
|
}
|
|
|
|
protocol := rs.Cfg.Protocol
|
|
switch protocol {
|
|
case setting.HTTPScheme:
|
|
protocol = "http"
|
|
case setting.HTTP2Scheme, setting.HTTPSScheme:
|
|
protocol = "https"
|
|
default:
|
|
// TODO: Handle other schemes?
|
|
}
|
|
|
|
subPath := ""
|
|
if rs.Cfg.ServeFromSubPath {
|
|
subPath = rs.Cfg.AppSubURL
|
|
}
|
|
|
|
// &render=1 signals to the legacy redirect layer to
|
|
return fmt.Sprintf("%s://%s:%s%s/%s&render=1", protocol, rs.domain, rs.Cfg.HTTPPort, subPath, path)
|
|
}
|
|
|
|
func (rs *RenderingService) generateAndStoreRenderKey(ctx context.Context, orgId, userId int64, orgRole models.RoleType) (string, error) {
|
|
key, err := util.GetRandomString(32)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
err = rs.RemoteCacheService.Set(ctx, fmt.Sprintf(renderKeyPrefix, key), &RenderUser{
|
|
OrgID: orgId,
|
|
UserID: userId,
|
|
OrgRole: string(orgRole),
|
|
}, 5*time.Minute)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return key, nil
|
|
}
|
|
|
|
func (rs *RenderingService) deleteRenderKey(ctx context.Context, key string) {
|
|
err := rs.RemoteCacheService.Delete(ctx, fmt.Sprintf(renderKeyPrefix, key))
|
|
if err != nil {
|
|
rs.log.Error("Failed to delete render key", "error", err)
|
|
}
|
|
}
|
|
|
|
func isoTimeOffsetToPosixTz(isoOffset string) string {
|
|
// invert offset
|
|
if strings.HasPrefix(isoOffset, "UTC+") {
|
|
return strings.Replace(isoOffset, "UTC+", "UTC-", 1)
|
|
}
|
|
if strings.HasPrefix(isoOffset, "UTC-") {
|
|
return strings.Replace(isoOffset, "UTC-", "UTC+", 1)
|
|
}
|
|
return isoOffset
|
|
}
|
|
|
|
func saveMetrics(elapsedTime int64, err error, renderType RenderType) {
|
|
if err == nil {
|
|
metrics.MRenderingRequestTotal.WithLabelValues("success", string(renderType)).Inc()
|
|
metrics.MRenderingSummary.WithLabelValues("success", string(renderType)).Observe(float64(elapsedTime))
|
|
return
|
|
}
|
|
|
|
if errors.Is(err, ErrTimeout) {
|
|
metrics.MRenderingRequestTotal.WithLabelValues("timeout", string(renderType)).Inc()
|
|
metrics.MRenderingSummary.WithLabelValues("timeout", string(renderType)).Observe(float64(elapsedTime))
|
|
} else {
|
|
metrics.MRenderingRequestTotal.WithLabelValues("failure", string(renderType)).Inc()
|
|
metrics.MRenderingSummary.WithLabelValues("failure", string(renderType)).Observe(float64(elapsedTime))
|
|
}
|
|
}
|