New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pl.datart:http4s-timer-newrelic_3.0.0-RC1

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pl.datart:http4s-timer-newrelic_3.0.0-RC1

http4s-timer-newrelic

  • 0.1.13-RC2
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

http4s-timer Maven Central Build Status Scala Steward badge License: GPL v3

Introduction

This adds timing capability to http4s, with a possible concrete implementation for New Relic

New Relic Usage

Add to your library dependencies:

"pl.datart" %% "http4s-timer-newrelic" % <version>

You should have the New Relic agent installed, with custom annotations enabled.

Changes to HttpRoutes[F]

If your initial version looks like:

val routes = HttpRoutes[IO] {
  case GET -> Root / "hello" / name =>
    Ok(Json.obj("message" -> Json.fromString(s"Hello, ${name}")))
}

then this should be modified to:

import pl.datart.http4s.timer._
import pl.datart.http4s.timer.newrelic._

val routes = TimedRoutes[IO]("my_routes") {
  case GET -> Root / "hello" / name =>
    "hello/:name" ->
      Ok(Json.obj("message" -> Json.fromString(s"Hello, ${name}")))
}

The body of each partial function now returns a tuple of path name, and the contents of the resulting HTTP response. The path name cannot be taken directly from the requested path, as many paths vary in such things like user ID, but these should not be included in the path sent to monitoring.

Changes to AuthedRoutes[F]

Similarly, you should modify any AuthedRoutes to use TimedAuthedRoutes.

Library Dependencies

The core library is dependent on "org.http4s" %% "http4s-core" % "1.0.0-M10".

The newrelic library is also dependent on "com.newrelic.agent.java" % "newrelic-api" % "6.3.0"

Origin & credits

This repo is a fork of the original library from @fiadliel available at https://github.com/fiadliel/http4s-timer

FAQs

Package last updated on 12 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc