0.0.8 • Published 2 years ago

@fforres/vite-plugin-dx v0.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

DX-analytics-vite-plugin

Github test badge npm version

This vite plugin is written in typescript, and serves as a way to quickly gather meaningful information on a vite project's DX usage and sending it to datadog via datadog-metrics.

Plugin keeps track of execution of different vite hooks, and using some timers, calculates and reports on things like compilation or recompilation time.

So... What can I do with it?

Adding it to your vite's config, it will track every module compilation and recompilation times, so you can see how your project's developer experience is performing in your teammate's machines.

For example, this is a screenshot a datadog dashboard created with this plugin.

Example of a datadog dashboard

Install

If your are using yarn

yarn add --dev @fforres/vite-plugin-dx

or if you use npm

npm install --save-dev @fforres/vite-plugin-dx

Usage

you can see some usage of it in the ./vite.config.ts file. But in essence you require the @fforres/vite-plugin-dx and wrap your vite plugins in your vite.config file. At a bare minimum you need to pass you datadog api key, you can get it from https://<YOUR_ORG>.datadoghq.com/account/settings#api

/* eslint-disable import/no-extraneous-dependencies */
import { defineConfig } from 'vite';
import DXVitePlugin from './build/src/index.js';

const { dxMetricsWrapper } = new DXVitePlugin({
  projectName: 'some-name',
  dryRun: true,
  datadogConfig: {
    apiKey: 'some-key',
    /* SOME DATADOG API KEY FROM https://<YOUR_ORG>.datadoghq.com/account/settings#api */
  },
});

// https://vitejs.dev/config/
export default defineConfig({
  plugins: dxMetricsWrapper([aPlugin, anotherPlugin]),
});

Plugin Options

Options are defined by DXVitePluginProps

Object KeyRequiredDefault ValueDescription
projectNameyesDatadog's project name, will be added to each track call as projectName tag
datadogConfigno{"prefix":"ux.vite.","flushIntervalSeconds":2}Config object for Datadog Metrics - Typescript Type here
enabledKeysToTrackno['recompile','recompile_session','compile','compile_session']An array of keys that will define what "keys" will be tracked. By Default we track all the keys
tagsno{}Extra tags to be added to Datadog Metrics - An object shape of { tagName: "tagValue", environment: "production" }
dryRunnofalseIf true, will not send tracking events to datadog.
{
  projectName: string;
  datadogConfig?: BufferedMetricsLoggerOptions;
  enabledKeysToTrack?: TrackingMetricKeys[];
  tags?: { [key: string]: string };
  dryRun?: boolean;
}

Development

  • git clone
  • yarn
  • yarn dev to run a super-simple vite-server with the plugin debug enabled
  • or yarn debug to run vite with node --inspect-brk flag, and be able to debug using the NIM - Node Inspector Manager chrome extension
  • Once you have this running, go ahead and change (and save) a file inside ./app/

Deploy

To deploy, create a PR and bump the the version in package.json. Once the PR is merged it will deploy a new version of the package.

Current things being tracked

MetricTracking keyDescriptionHow are we tracking
compilationSessioncompile_sessionTracks the time from when a "compilation" process starts, until it finishes.histogram & increment
recompilationSessionrecompile_sessionTracks the time when module recompilation starts, until it finishes.histogram & increment

Things we might want to track but no decision yet

  • System info 🔗

    Creepy factor. 😬 However maybe useful on companies/internally. Being able to debug, or on bigger companies it would be useful to figurwe out hat type of devices are slower/faster.

  • git commit sha.

    Creepy factor. 🤔

  • branch

    Creepy factor. 🤔

0.0.6-next

3 years ago

0.0.9-next

2 years ago

0.0.4-next

3 years ago

0.0.7-next

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.8

2 years ago

0.0.10-next

2 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.2-next

3 years ago

0.0.7

3 years ago

0.0.8-next

3 years ago

0.0.5-next

3 years ago

0.0.1-next

3 years ago

0.0.1

3 years ago