Skip to content

Commit 7c68b4b

Browse files
committed
Add: Clarification on how to get Moesif Application Id
1 parent 186e03f commit 7c68b4b

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
[![Software License][ico-license]][link-license]
77
[![Source Code][ico-source]][link-source]
88

9-
Middleware (NodeJS) to automatically log _incoming_ API requests/responses from AWS Lambda functions
10-
and send to Moesif for debugging and API analytics. Designed for APIs that are hosted on AWS Lambda and using
9+
Middleware (NodeJS) to automatically log API calls from AWS Lambda functions
10+
and sends to [Moesif](https://www.moesif.com) for API analytics and log analysis.
11+
12+
Designed for APIs that are hosted on AWS Lambda and using
1113
Amazon API Gateway as a trigger.
1214

1315

@@ -49,7 +51,7 @@ The following shows how import the controllers and use:
4951
const moesif = require('moesif-aws-lambda');
5052

5153
const moesifOptions = {
52-
applicationId: 'Your Moesif application_id',
54+
applicationId: 'Your Moesif Application Id',
5355

5456
identifyUser: function (event, context) {
5557
return event.requestContext.identity.cognitoIdentityId
@@ -71,8 +73,13 @@ exports.handler = moesif(moesifOptions, exports.handler);
7173

7274
```
7375

74-
### 2. Enter Moesif Application Id.
75-
You can find your Application Id from [_Moesif Dashboard_](https://www.moesif.com/) -> _Top Right Menu_ -> _App Setup_
76+
### 2. Enter Moesif Application Id
77+
Your Moesif Application Id can be found in the [_Moesif Portal_](https://www.moesif.com/).
78+
After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps.
79+
80+
You can always find your Moesif Application Id at any time by logging
81+
into the [_Moesif Portal_](https://www.moesif.com/), click on the top right menu,
82+
and then clicking _Installation_.
7683

7784
## Repo file structure
7885

0 commit comments

Comments
 (0)