├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gulpfile.js ├── lib └── appinsights.ts ├── package.json ├── tests └── appinsights.test.ts ├── tsconfig.json ├── tslint.json └── typings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/appinsights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/lib/appinsights.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/package.json -------------------------------------------------------------------------------- /tests/appinsights.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/tests/appinsights.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-statsd/HEAD/typings.json --------------------------------------------------------------------------------