Socket
Socket
Sign inDemoInstall

apollo-server-plugin-operation-duration

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-server-plugin-operation-duration

This Apollo server plugin exposes an interface for instrumentation of query operation duration.


Version published
Maintainers
1
Created
Source

apollo-server-plugin-operation-duration Build Status

This Apollo server plugin exposes an interface for instrumentation of query operation duration.

The following information are exposed for instrumentation:

  • operationName
  • operationDuration
  • parsingDuration
  • validationDuration
  • executionDuration

Refer to Apollo server request lifecycle event flow.

Callback for instrumentation will only be executed for successful operations.

Usage

This is an example when instrumenting with Prometheus.

import ApolloServerOperationDuration from 'apollo-server-plugin-operation-duration';

import { ApolloServer, gql } from 'apollo-server';
import { Histogram, exponentialBuckets } from 'prom-client';

const operationDurationHistogram = new Histogram({
  name: 'operation_duration_histogram',
  help: 'GraphQL query operation duration histogram',
  labelNames: ['name'],
  buckets: exponentialBuckets(100, 2, 8),
});

const server = new ApolloServer({
  typeDefs: gql`
    type Book {
      title: String
      author: String
    }

    type Query {
      books: [Book]
    }
  `,
  mocks: true,
  mockEntireSchema: true,
  plugins: [
    ApolloServerOperationDuration({
      callback: ({ operationName, operationDuration, parsingDuration, validationDuration, executionDuration }) => {
        operationDurationHistogram.labels(operationName).observe(operationDuration);
      },
    })
  ],
});

server.listen().then(({ url }) => {
  console.log(`🚀  Server ready at ${url}`);
});

Keywords

FAQs

Package last updated on 12 Jul 2020

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