README
smetrics
Records metrics to your Google Sheets spreadsheet
smetrics
is designed to persist metrics (test runs, test coverage, build times, load times, etc) using Google Sheets.
Google Sheets provides cloud-storage for the data, allowing you to see the changes in the metrics over time (and graph them yourself).
Install
npm install smetrics --dev
Usage
// File: processMetrics.js
// Lets say you've just built your code, run your unit and performance tests.
// Now you want to persist the results somewhere so you can see the changes over time.
const fs = require('fs');
const smetrics = require('smetrics');
function addUnitTestMetrics() {
const stats = require('./test-reports/unit.json');
const tabName = 'My Stats';
smetrics.addMetric(tabName, 'Total tests', stats.numTotalTests);
smetrics.addMetric(tabName, 'Passed tests', stats.numPassedTests);
}
// Gather all the metrics then commit them to Google Sheets
addUnitTestMetrics();
...
// See Authentication section for how to generate this information
const creds = require('./google-generated-creds.json');
// OR, if you cannot save the file locally (like on heroku)
const options = {
clientEmail: process.env.SMETRICS_GOOGLE_SERVICE_ACCOUNT_CLIENT_EMAIL,
privateKey: process.env.SMETRICS_GOOGLE_SERVICE_ACCOUNT_PRIVATE_KEY,
dateTimeFormat: 'googleDate', // defaults to 'milliseconds',
filePath: '/tmp/yourfile.json' // defaults to CWD + 'smetrics.json'
}
smetrics.commit('<spreadsheet key>', options); // Async - returns a promise
Important
The order that metrics are added is significant. If you decide to change the order that you add metrics, you should open the corresponding Google Sheet and change the column-order to match your new metric-capturing order.
Usage within AWS Lambda functions
Because this library persists state to a file, you need to specify the filePath
when calling addMetric
and commit
with a path underneath the /tmp
directory:
const fs = require('fs');
const smetrics = require('smetrics');
// NOTE: filePath is specified explicitly, under the '/tmp' folder
smetrics.addMetric(tabName, 'Total tests', stats.numTotalTests, { filePath: '/tmp/smetrics.json' });
// See Authentication section for how to generate this information
const creds = require('./google-generated-creds.json');
// OR, if you cannot save the file locally (like on heroku)
const options = {
clientEmail: process.env.SMETRICS_GOOGLE_SERVICE_ACCOUNT_CLIENT_EMAIL,
privateKey: process.env.SMETRICS_GOOGLE_SERVICE_ACCOUNT_PRIVATE_KEY,
dateTimeFormat: 'googleDate',
// NOTE: filePath is specified explicitly:
filePath: '/tmp/smetrics.json'
}
smetrics.commit('<spreadsheet key>', options); // Async - returns a promise
API
addMetric(sheetName, column, value, options) : object
Adds a metric to the temporary metric-file
sheetName
The name of the sheet within the spreadsheet column
The name of the column within the sheet value
The value to store options
commit(spreadsheetKey, options) : void
spreadsheetId
The SpreadsheetId
Reads the metrics in the metric-data file ('smetrics.json') and persists it to the designated Google Sheet.
sheetName
The name of the sheet within the spreadsheet options
The default format for DateTime columns is milliseconds
, which is the number of milliseconds since the epoch (e.g. 1537165777561,
which is equivalent to Mon Sep 17 2018 16:29:37 GMT+1000 (Australian Eastern Standard Time)).
Alternately, you can specify the format as googleDate
, which formats the date as dd-mon-yyyy hh:mm:ss
.
Google sheets interprets this string as a date, and can be used correctly when the data is charted. You
may need to manually format the DateTime column as a 'Date Time' in the Google Sheet (once-only).
Lastly, you can supply a function for dateFormat
, which has the signature (timeMillis: Number) => any
.
How it works
Every time a metric is added, a temporary file (smetrics.json
, example) is created/updated in your
current working directory with the metric name and a value:
// smetrics.json:
[
[
{ metric: 'Test Time (s)', value: 26 },
{ metric: 'Time to Interactive (ms)', value: 503 },
// ...
]
]
When commit(spreadsheet, creds)
is called, the smetrics.json
file is appended to the specified spreadsheet as
a new row, with the first column containing a date-time stamp (generated using Date.now()
).
smetrics
Hacking Since this package ultimately processes a file called smetrics.json
when smetrics.commit(...)
is called,
you are welcome to write to this file yourself, rather than call smetrics.addMetric(...)
. If you stick to the same
format as this example, and follow the authentication process, you
may even add multiple rows of metrics in one go (Why would you want to? I'm not sure).
Authentication
Service Account (recommended method)
This is a 2-legged OAuth method and designed to be "an account that belongs to your application instead of to an individual end user". Use this for an app that needs to access a set of documents that you have full access to. (read more)
Setup Instructions
- Go to the Google Developers Console
- Select your project or create a new one (and then select it)
- Enable the Drive API for your project
- In the sidebar on the left, expand APIs & auth > APIs
- Search for "sheets"
- Click on "Google Sheets API"
- Click the blue "Enable API" button
- Create a service account for your project:
- In the sidebar on the left, expand IAM & Admin > Service Accounts
- Click "Create Service Account" button
- Enter the service account name & a description for step 1 and press Create.
- Skip steps 2 & 3 by pressing Cancel
- In the Service Accounts panel, select Actions > Manages Key
- Press Add Key > Create New Key
- Select the "JSON" key type option
- Click blue "Create" button.
Your JSON key file is generated and downloaded to your machine (it is the only copy!) note your service account's email address (also available in the JSON key file) Share the doc (or docs) with your service account using the email noted above.
The private_key
field in the JSON file that is the private key.
Sharing the sheet with the service account
- Open the Google Sheet
- Press the Share button.
- In the Share dialog, type the service accounts email: your-service-account-name@google-app.iam.gserviceaccount.com
- Press Send.
Spreadsheet ID
The Spreadsheet ID can be found in the URL of the spreadsheet.
E.g. docs.google.com/spreadsheets/d/:spreadsheetID:/edit#gid=0
Graphing the results
Once you have the data in your spreadsheet, you can provide read-access to allow other tools
Contributing
See CONTRIBUTING.md.
License
This software is licensed under the MIT Licence. See LICENSE.