Skip to content
This repository was archived by the owner on Jan 21, 2022. It is now read-only.

Enable tracing #126

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,20 @@ don't, you should sign up for one!) you can set it like this:
$ INFURA_ID=myid yarn run dev
```

## Development
All of the regular tasks you need to develop are available as package.json scripts.

Running tests:
```
$ yarn test
```

Tracing is a nice feature to give you field level timing metrics and discover bottlenecks in the code. Enable Graphql tracing
```
$ TRACING=true yarn dev
```


## Query Handbook

We suggest fiddling with some [Example Use Cases](https://github.com/ConsenSys/ethql/wiki/Example-Use-Cases) to see some
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"packages": [
"packages/*"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/base",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"description": "EthQL :: Base",
"author": "ConsenSys",
"license": "Apache-2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/core",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"description": "EthQL :: Plugins :: Core",
"author": "ConsenSys",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,8 +34,8 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@ethql/base": "^0.1.2-alpha.0",
"@ethql/plugin": "^0.1.2-alpha.0",
"@ethql/base": "^0.1.2",
"@ethql/plugin": "^0.1.2",
"@types/graphql": "^14.0.7",
"abi-decoder": "^1.2.0",
"bluebird": "^3.5.3",
Expand Down
8 changes: 4 additions & 4 deletions packages/ens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/ens",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"main": "dist/index.js",
"description": "EthQL :: Plugins :: ENS",
"author": "ConsenSys",
Expand Down Expand Up @@ -33,9 +33,9 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@ethql/base": "^0.1.2-alpha.0",
"@ethql/core": "^0.1.2-alpha.0",
"@ethql/plugin": "^0.1.2-alpha.0",
"@ethql/base": "^0.1.2",
"@ethql/core": "^0.1.2",
"@ethql/plugin": "^0.1.2",
"@types/graphql": "^14.0.7",
"ez-ens": "^1.0.4",
"graphql": "^14.0.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/erc20/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/erc20",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"main": "dist/index.js",
"description": "EthQL :: Plugins :: ERC20",
"author": "ConsenSys",
Expand Down Expand Up @@ -33,9 +33,9 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@ethql/base": "^0.1.2-alpha.0",
"@ethql/core": "^0.1.2-alpha.0",
"@ethql/plugin": "^0.1.2-alpha.0",
"@ethql/base": "^0.1.2",
"@ethql/core": "^0.1.2",
"@ethql/plugin": "^0.1.2",
"@types/graphql": "^14.0.7",
"graphql": "^14.1.1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/plugin",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"description": "EthQL :: Base :: Plugin",
"author": "Kris Shinn <[email protected]>",
"homepage": "https://github.com/kshinn/ethql#readme",
Expand All @@ -26,7 +26,7 @@
"url": "https://github.com/kshinn/ethql/issues"
},
"dependencies": {
"@ethql/base": "^0.1.2-alpha.0",
"@ethql/base": "^0.1.2",
"@types/graphql": "^14.0.7",
"@types/node": "^11.9.4",
"deepmerge": "^3.2.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/server",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"description": "EthQL :: Server",
"author": "ConsenSys",
"license": "Apache-2.0",
Expand Down Expand Up @@ -38,11 +38,11 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@ethql/base": "^0.1.2-alpha.0",
"@ethql/core": "^0.1.2-alpha.0",
"@ethql/ens": "^0.1.2-alpha.0",
"@ethql/erc20": "^0.1.2-alpha.0",
"@ethql/plugin": "^0.1.2-alpha.0",
"@ethql/base": "^0.1.2",
"@ethql/core": "^0.1.2",
"@ethql/ens": "^0.1.2",
"@ethql/erc20": "^0.1.2",
"@ethql/plugin": "^0.1.2",
"@types/graphql": "^14.0.7",
"apollo-server": "^2.4.2",
"axios": "^0.18.0",
Expand Down
6 changes: 4 additions & 2 deletions packages/server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export class EthqlServer {
this.server = server;
this._address = { address, family, port: Number(port) };
this._status = 'started';

console.log(`🚀 Running a GraphQL API server at ${url}\nMerry querying!`);
}

Expand All @@ -58,11 +57,14 @@ export class EthqlServer {

protected createServer() {
const result = bootstrap(this.opts);

if (!!process.env.TRACING) {
console.log('Tracing enabled...');
}
return new ApolloServer({
schema: result.schema,
context: () => new EthqlContext(this.opts.config, result.serviceFactories),
playground,
tracing: !!process.env.TRACING
});
}

Expand Down
2 changes: 1 addition & 1 deletion packages/web3-typings/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethql/web3-typings",
"version": "0.1.2-alpha.0",
"version": "0.1.2",
"description": "EthQL :: Typings :: web3.js",
"author": "ConsenSys",
"license": "Apache-2.0",
Expand Down