GraphQL Hive: graphql-ruby integration
GraphQL Hive provides all the tools to get visibility of your GraphQL architecture at all stages, from standalone APIs to composed schemas (Federation, Stitching):
- Schema Registry with custom breaking changes detection
- Monitoring of RPM, latency, error rate, and more
- Integrations with your favorite tools (Slack, Github Actions, and more)
Getting started
0. Get your Hive token
If you are using Hive as a service, please refer to our documentation: https://docs.graphql-hive.com/features/tokens.
1. Install the graphql-hive gem
gem install graphql-hive
2. Configure GraphQL::Hive in your Schema
Add GraphQL::Hive at the end of your schema definition:
class Schema < GraphQL::Schema
query QueryType
use(
GraphQL::Hive,
{
token: '<YOUR_TOKEN>',
reporting: {
author: ENV['GITHUB_USER'],
commit: ENV['GITHUB_COMMIT']
},
}
)
end
The reporting configuration is required to push your GraphQL Schema to the Hive registry.
Doing so will help better detect breaking changes and more upcoming features.
If you only want to use the operations monitoring, replace the reporting option with the following report_schema: false.
You are all set! 🚀
When deploying or starting up your GraphQL API, graphql-hive will immediately:
- publish the schema to the Hive registry
- forward the operations metrics to Hive
3. See how your GraphQL API is operating
You should now see operations information (RPM, error rate, queries performed) on your GraphQL Hive dashboard:
4. Going further: use the Hive Github app
Stay on top of your GraphQL Schema changes by installing the Hive Github Application and enabling Slack notifications about breaking changes:
https://docs.graphql-hive.com/features/integrations#github
Configuration
You will find below the complete list of options of GraphQL::Hive:
class MySchema < GraphQL::Schema
use(
GraphQL::Hive,
{
token: 'YOUR-TOKEN',
collect_usage: true, # optional
report_schema: true, # optional
enabled: true, # Enable/Disable Hive Client (optional)
debug: false, # verbose logs
logger: MyLogger.new, # optional
endpoint: 'app.graphql-hive.com', # optional
port: 80, # optional
buffer_size: 50, # forward the operations data to Hive every 50 requests
reporting: { # mandatory if `report_schema: true`
# mandatory member of `reporting`
author: 'Author of the latest change',
# mandatory member of `reporting`
commit: 'git sha or any identifier',
service_name: '', # optional
service_url: '', # optional
},
# you can pass an optional proc that will help identify the client (ex: Apollo web app) that performed the query
client_info: Proc.new { |context| { name: context.client_name, version: context.client_version } }
}
)
# ...
end
A note on buffer_size and performances
The graphql-hive usage reporter, responsible for sending the operations data to Hive, is running in a separate Thread to avoid any significant impact on your GraphQL API performances.
The performance overhead (with the default buffer_size option) is around 1% and is constantly evaluated for new PR.
If your GraphQL API has a high RPM, we encourage you to increase the buffer_size value.
However, please note that a higher buffer_size value will introduce some peak of increase in memory consumption.