Sha256: 7e23ab7bcf76d7721484437c9dfcdd48b20f506183ccf50c635ab6f10d6ed876

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

# API Analytics

A lightweight API analytics solution, complete with a dashboard.

## Getting Started

### 1. Generate a new API key

Head to https://my-api-analytics.vercel.app/generate to generate your unique API key with a single click. This key is used to monitor your specific API, so keep it secret! It's also required in order to view your APIs analytics dashboard.

### 2. Add middleware to your API

Add our lightweight middleware to your API. Almost all processing is handled by our servers so there should be virtually no impact on your APIs performance.

```bash
gem install api_analytics
```

#### Rails

Assign your API key to `ANALYTICS_API_KEY` in `config/secrets.yml`.

```yml
development:
  ANALYTICS_API_KEY: <api_key>
production:
  ANALYTICS_API_KEY: <api_key>
```

Require `api_analytics` and add the analytics middleware to your rails application in `config/application.rb`.

```ruby
require "api_analytics"

Bundler.require(*Rails.groups)

module RailsMiddleware
  class Application < Rails::Application
    config.load_defaults 6.1
    config.api_only = true

    config.middleware.use ::Analytics::Middleware  # Add middleware
  end
end
```

### 3. View your analytics

Your API will log requests on all valid routes. Head over to https://my-api-analytics.vercel.app/dashboard and paste in your API key to view your dashboard.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
api_analytics-1.0.2 README.md