-
Notifications
You must be signed in to change notification settings - Fork 842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing plugins in README.md for tracing the sample app #1509
Conversation
When I followed this guide I got some errors after running ```sh $ npm install \ @opentelemetry/core \ @opentelemetry/node \ @opentelemetry/plugin-http ``` The errors: PluginLoader#load: could not load plugin @opentelemetry/plugin-https of module https. Error: Cannot find module '@opentelemetry/plugin-https' and PluginLoader#load: could not load plugin @opentelemetry/plugin-express of module express. Error: Cannot find module '@opentelemetry/plugin-express' By adding those 2 plugins to the `npm install` I got that step working.
|
Codecov Report
@@ Coverage Diff @@
## master #1509 +/- ##
=======================================
Coverage 93.82% 93.82%
=======================================
Files 154 154
Lines 4762 4762
Branches 951 951
=======================================
Hits 4468 4468
Misses 294 294 |
@dyladan @mayurkale22 sorry for asking this stupid question, but since this is my first pull request: is there anything I need to do? Also, I found 1 or 2 other things that might need to be changed in the getting started guide: should I put everything in one big PR or open multiple? |
I'd suggest to combine similar set of changes in one PR. |
When I followed this guide I got some errors after running ```sh $ npm install \ @opentelemetry/core \ @opentelemetry/node \ @opentelemetry/plugin-http ``` The errors: PluginLoader#load: could not load plugin @opentelemetry/plugin-https of module https. Error: Cannot find module '@opentelemetry/plugin-https' and PluginLoader#load: could not load plugin @opentelemetry/plugin-express of module express. Error: Cannot find module '@opentelemetry/plugin-express' By adding those 2 plugins to the `npm install` I got that step working. Co-authored-by: Mayur Kale <[email protected]>
When I followed this guide I got some errors after running
The errors:
PluginLoader#load: could not load plugin @opentelemetry/plugin-https of module https. Error: Cannot find module '@opentelemetry/plugin-https'
and
PluginLoader#load: could not load plugin @opentelemetry/plugin-express of module express. Error: Cannot find module '@opentelemetry/plugin-express'
By adding those 2 plugins to the
npm install
I got that step working.I tried it with Node v10 and Node v14 and got the same results.