All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.atlas.webapi.GraphApi.scala Maven / Gradle / Ivy

There is a newer version: 1.8.0-rc.19
Show newest version
/*
 * Copyright 2014-2024 Netflix, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.netflix.atlas.webapi

import org.apache.pekko.actor.ActorRefFactory
import org.apache.pekko.actor.Props
import org.apache.pekko.http.scaladsl.server.Directives.*
import org.apache.pekko.http.scaladsl.server.Route
import com.netflix.atlas.core.model.*
import com.netflix.atlas.eval.graph.GraphConfig
import com.netflix.atlas.eval.graph.Grapher
import com.netflix.atlas.pekko.CustomDirectives.*
import com.netflix.atlas.pekko.ImperativeRequestContext
import com.netflix.atlas.pekko.WebApi
import com.netflix.spectator.api.Spectator
import com.typesafe.config.Config

class GraphApi(config: Config, implicit val actorRefFactory: ActorRefFactory) extends WebApi {

  private val grapher: Grapher = Grapher(config)

  private val registry = Spectator.globalRegistry()

  def routes: Route = {
    endpointPath("api" / "v1" / "graph") {
      get { ctx =>
        val reqHandler = actorRefFactory.actorOf(Props(new GraphRequestActor(grapher, registry)))
        val graphCfg = grapher.toGraphConfig(ctx.request)
        val rc = ImperativeRequestContext(graphCfg, ctx)
        reqHandler ! rc
        rc.promise.future
      }
    } ~
    endpointPath("api" / "v2" / "fetch") {
      get {
        extractRequest { request =>
          val graphCfg = grapher.toGraphConfig(request)
          complete(FetchRequestSource.createResponse(actorRefFactory, graphCfg))
        }
      }
    }
  }
}

object GraphApi {

  case class DataRequest(
    context: EvalContext,
    exprs: List[DataExpr],
    config: Option[GraphConfig] = None
  )

  object DataRequest {

    def apply(config: GraphConfig): DataRequest = {
      val dataExprs = config.exprs.flatMap(_.expr.dataExprs)
      val deduped = dataExprs.distinct
      DataRequest(config.evalContext, deduped, Option(config))
    }
  }

  case class DataResponse(ts: Map[DataExpr, List[TimeSeries]])
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy