@itentialopensource/adapter-redis_cloud 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +3 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +590 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +13 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +342 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +22 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +6554 -0
  23. package/adapterBase.js +1349 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +53 -0
  31. package/entities/.system/schemaTokenResp.json +53 -0
  32. package/entities/AccessControlList/action.json +268 -0
  33. package/entities/AccessControlList/schema.json +31 -0
  34. package/entities/Account/action.json +130 -0
  35. package/entities/Account/schema.json +24 -0
  36. package/entities/CloudAccounts/action.json +106 -0
  37. package/entities/CloudAccounts/schema.json +23 -0
  38. package/entities/DatabasesFixed/action.json +146 -0
  39. package/entities/DatabasesFixed/schema.json +25 -0
  40. package/entities/DatabasesFlexible/action.json +166 -0
  41. package/entities/DatabasesFlexible/schema.json +26 -0
  42. package/entities/SubscriptionsFixed/action.json +148 -0
  43. package/entities/SubscriptionsFixed/schema.json +25 -0
  44. package/entities/SubscriptionsFlexible/action.json +370 -0
  45. package/entities/SubscriptionsFlexible/schema.json +36 -0
  46. package/entities/Tasks/action.json +46 -0
  47. package/entities/Tasks/schema.json +20 -0
  48. package/entities/Users/action.json +86 -0
  49. package/entities/Users/schema.json +22 -0
  50. package/error.json +190 -0
  51. package/metadata.json +51 -0
  52. package/package.json +84 -0
  53. package/pronghorn.json +5835 -0
  54. package/propertiesDecorators.json +14 -0
  55. package/propertiesSchema.json +1588 -0
  56. package/refs?service=git-upload-pack +0 -0
  57. package/report/adapterInfo.json +10 -0
  58. package/report/creationReport.json +680 -0
  59. package/report/redis.json +8093 -0
  60. package/report/updateReport1692203021745.json +120 -0
  61. package/sampleProperties.json +244 -0
  62. package/test/integration/adapterTestBasicGet.js +83 -0
  63. package/test/integration/adapterTestConnectivity.js +142 -0
  64. package/test/integration/adapterTestIntegration.js +2535 -0
  65. package/test/unit/adapterBaseTestUnit.js +1024 -0
  66. package/test/unit/adapterTestUnit.js +3906 -0
  67. package/utils/adapterInfo.js +206 -0
  68. package/utils/addAuth.js +94 -0
  69. package/utils/artifactize.js +146 -0
  70. package/utils/basicGet.js +50 -0
  71. package/utils/checkMigrate.js +63 -0
  72. package/utils/entitiesToDB.js +179 -0
  73. package/utils/findPath.js +74 -0
  74. package/utils/methodDocumentor.js +225 -0
  75. package/utils/modify.js +152 -0
  76. package/utils/packModificationScript.js +35 -0
  77. package/utils/patches2bundledDeps.js +90 -0
  78. package/utils/pre-commit.sh +32 -0
  79. package/utils/removeHooks.js +20 -0
  80. package/utils/setup.js +33 -0
  81. package/utils/taskMover.js +309 -0
  82. package/utils/tbScript.js +239 -0
  83. package/utils/tbUtils.js +489 -0
  84. package/utils/testRunner.js +298 -0
  85. package/utils/troubleshootingAdapter.js +193 -0
package/README.md ADDED
@@ -0,0 +1,342 @@
1
+ # Adapter for Redis_cloud
2
+
3
+ ## Table of Contents
4
+
5
+ Some of the page links in this document and links to other GitLab files do not work in Confluence however, the information is available in other sections of the Confluence material.
6
+
7
+ - [Overview](./SUMMARY.md)
8
+ - [Versioning](#versioning)
9
+ - [Supported IAP Versions](#supported-iap-versions)
10
+ - [Getting Started](#getting-started)
11
+ - [Helpful Background Information](#helpful-background-information)
12
+ - [Prerequisites](#prerequisites)
13
+ - [How to Install](#how-to-install)
14
+ - [Testing](#testing)
15
+ - [Configuration](./PROPERTIES.md)
16
+ - [Using this Adapter](./CALLS.md)
17
+ - [Additional Information](#additional-information)
18
+ - [Enhancements](./ENHANCE.md)
19
+ - [Contributing](./CONTRIBUTING.md)
20
+ - [Helpful Links](#helpful-links)
21
+ - [Node Scripts](#node-scripts)
22
+ - [Troubleshoot](./TROUBLESHOOT.md)
23
+ - [License and Maintainers](#license-and-maintainers)
24
+ - [Product License](#product-license)
25
+
26
+ ## [Overview](./SUMMARY.md)
27
+
28
+ ## Versioning
29
+
30
+ Itential Product and opensource adapters utilize SemVer for versioning. The current version of the adapter can be found in the `package.json` file or viewed in the IAP GUI on the System page. All Itential opensource adapters can be found in the <a href="https://gitlab.com/itentialopensource/adapters" target="_blank">Itential OpenSource Repository</a>.
31
+
32
+ Any release prior to 1.0.0 is a pre-release. Initial builds of adapters are generally set up as pre-releases as there is often work that needs to be done to configure the adapter and make sure the authentication process to Redis_cloud works appropriately.
33
+
34
+ Release notes can be viewed in CHANGELOG.md.
35
+
36
+ ## Supported IAP Versions
37
+
38
+ Itential Product adapters are built for particular versions of IAP and packaged with the versions they work with.
39
+
40
+ Itential opensource adapter as well as custom adapters built with the Itential Adapter Builder work acoss many releases of IAP. As a result, it is not often necessary to modify an adapter when upgrading IAP. If IAP has changes that impact the pronghorn.json, like adding a new required section, this will most likely require changes to all adapters when upgrading IAP.
41
+
42
+ Many of the scripts that come with all adapters built using the Itential Adapter Builder do have some dependencies on IAP or the IAP database schema and so it is possible these scripts could stop working in different versions of IAP. If you notify Itential of any issues, the Adapter Team will attempt to fix the scripts for newer releases of IAP.
43
+
44
+ ## Getting Started
45
+
46
+ These instructions will help you get a copy of the project on your local machine for development and testing. Reading this section is also helpful for deployments as it provides you with pertinent information on prerequisites and properties.
47
+
48
+ ### Helpful Background Information
49
+
50
+ There is adapter documentation available on the Itential Developer Site <a href="https://docs.itential.com/opensource/docs/adapters" target="_blank">HERE</a>. This documentation includes information and examples that are helpful for:
51
+
52
+ ```text
53
+ Authentication
54
+ Properties
55
+ Code Files
56
+ Action Files
57
+ Schema Files
58
+ Mock Data Files
59
+ Linting and Testing
60
+ Troubleshooting
61
+ ```
62
+
63
+ Others will be added over time.
64
+ Want to build a new adapter? Use the <a href="https://adapters.itential.io" target="_blank">Itential Adapter Builder</a>
65
+
66
+ ### Prerequisites
67
+
68
+ The following is a list of required packages for installation on the system the adapter will run on:
69
+
70
+ ```text
71
+ Node.js
72
+ npm
73
+ Git
74
+ ```
75
+
76
+ The following list of packages are required for Itential opensource adapters or custom adapters that have been built utilizing the Itential Adapter Builder. You can install these packages by running npm install inside the adapter directory.
77
+
78
+ <table border="1" class="bordered-table">
79
+ <tr>
80
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Package</span></th>
81
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
82
+ </tr>
83
+ <tr>
84
+ <td style="padding:15px">@itentialopensource/adapter-utils</td>
85
+ <td style="padding:15px">Runtime library classes for all adapters; includes request handling, connection, authentication throttling, and translation.</td>
86
+ </tr>
87
+ <tr>
88
+ <td style="padding:15px">ajv</td>
89
+ <td style="padding:15px">Required for validation of adapter properties to integrate with Redis_cloud.</td>
90
+ </tr>
91
+ <tr>
92
+ <td style="padding:15px">axios</td>
93
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
94
+ </tr>
95
+ <tr>
96
+ <td style="padding:15px">commander</td>
97
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
98
+ </tr>
99
+ <tr>
100
+ <td style="padding:15px">dns-lookup-promise</td>
101
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
102
+ </tr>
103
+ <tr>
104
+ <td style="padding:15px">fs-extra</td>
105
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
106
+ </tr>
107
+ <tr>
108
+ <td style="padding:15px">mocha</td>
109
+ <td style="padding:15px">Testing library that is utilized by some of the node scripts that are included with the adapter.</td>
110
+ </tr>
111
+ <tr>
112
+ <td style="padding:15px">mocha-param</td>
113
+ <td style="padding:15px">Testing library that is utilized by some of the node scripts that are included with the adapter.</td>
114
+ </tr>
115
+ <tr>
116
+ <td style="padding:15px">mongodb</td>
117
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
118
+ </tr>
119
+ <tr>
120
+ <td style="padding:15px">nyc</td>
121
+ <td style="padding:15px">Testing coverage library that is utilized by some of the node scripts that are included with the adapter.</td>
122
+ </tr>
123
+ <tr>
124
+ <td style="padding:15px">ping</td>
125
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
126
+ </tr>
127
+ <tr>
128
+ <td style="padding:15px">readline-sync</td>
129
+ <td style="padding:15px">Utilized by the node script that comes with the adapter; helps to test unit and integration functionality.</td>
130
+ </tr>
131
+ <tr>
132
+ <td style="padding:15px">semver</td>
133
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
134
+ </tr>
135
+ <tr>
136
+ <td style="padding:15px">winston</td>
137
+ <td style="padding:15px">Utilized by the node scripts that are included with the adapter; helps to build and extend the functionality.</td>
138
+ </tr>
139
+ </table>
140
+ <br>
141
+
142
+ If you are developing and testing a custom adapter, or have testing capabilities on an Itential opensource adapter, you will need to install these packages as well.
143
+
144
+ ```text
145
+ chai
146
+ eslint
147
+ eslint-config-airbnb-base
148
+ eslint-plugin-import
149
+ eslint-plugin-json
150
+ testdouble
151
+ ```
152
+
153
+ ### How to Install
154
+
155
+ 1. Set up the name space location in your IAP node_modules.
156
+
157
+ ```bash
158
+ cd /opt/pronghorn/current/node_modules (* could be in a different place)
159
+ if the @itentialopensource directory does not exist, create it:
160
+ mkdir @itentialopensource
161
+ ```
162
+
163
+ 2. Clone/unzip/tar the adapter into your IAP environment.
164
+
165
+ ```bash
166
+ cd \@itentialopensource
167
+ git clone git@gitlab.com:\@itentialopensource/adapters/adapter-redis_cloud
168
+ or
169
+ unzip adapter-redis_cloud.zip
170
+ or
171
+ tar -xvf adapter-redis_cloud.tar
172
+ ```
173
+
174
+ 3. Run the adapter install script.
175
+
176
+ ```bash
177
+ cd adapter-redis_cloud
178
+ npm install
179
+ npm run lint:errors
180
+ npm run test
181
+ ```
182
+
183
+ 4. Restart IAP
184
+
185
+ ```bash
186
+ systemctl restart pronghorn
187
+ ```
188
+
189
+ 5. Create an adapter service instance configuration in IAP Admin Essentials GUI
190
+
191
+ 6. Copy the properties from the sampleProperties.json and paste them into the service instance configuration in the inner/second properties field.
192
+
193
+ 7. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI
194
+
195
+
196
+ For an easier install of the adapter use npm run adapter:install, it will install the adapter in IAP. Please note that it can be dependent on where the adapter is installed and on the version of IAP so it is subject to fail. If using this, you can replace step 3-5 above with these:
197
+
198
+ 3. Install adapter dependencies and check the adapter.
199
+
200
+ ```bash
201
+ cd adapter-redis_cloud
202
+ npm run adapter:install
203
+ ```
204
+
205
+ 4. Restart IAP
206
+
207
+ ```bash
208
+ systemctl restart pronghorn
209
+ ```
210
+
211
+ 5. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI
212
+
213
+
214
+ ### Testing
215
+
216
+ Mocha is generally used to test all Itential Opensource Adapters. There are unit tests as well as integration tests performed. Integration tests can generally be run as standalone using mock data and running the adapter in stub mode, or as integrated. When running integrated, every effort is made to prevent environmental failures, however there is still a possibility.
217
+
218
+ #### Unit Testing
219
+
220
+ Unit Testing includes testing basic adapter functionality as well as error conditions that are triggered in the adapter prior to any integration. There are two ways to run unit tests. The prefered method is to use the testRunner script; however, both methods are provided here.
221
+
222
+ ```bash
223
+ node utils/testRunner --unit
224
+
225
+ npm run test:unit
226
+ npm run test:baseunit
227
+ ```
228
+
229
+ To add new unit tests, edit the `test/unit/adapterTestUnit.js` file. The tests that are already in this file should provide guidance for adding additional tests.
230
+
231
+ #### Integration Testing - Standalone
232
+
233
+ Standalone Integration Testing requires mock data to be provided with the entities. If this data is not provided, standalone integration testing will fail. When the adapter is set to run in stub mode (setting the stub property to true), the adapter will run through its code up to the point of making the request. It will then retrieve the mock data and return that as if it had received that data as the response from Redis_cloud. It will then translate the data so that the adapter can return the expected response to the rest of the Itential software. Standalone is the default integration test.
234
+
235
+ Similar to unit testing, there are two ways to run integration tests. Using the testRunner script is better because it prevents you from having to edit the test script; it will also resets information after testing is complete so that credentials are not saved in the file.
236
+
237
+ ```bash
238
+ node utils/testRunner
239
+ answer no at the first prompt
240
+
241
+ npm run test:integration
242
+ ```
243
+
244
+ To add new integration tests, edit the `test/integration/adapterTestIntegration.js` file. The tests that are already in this file should provide guidance for adding additional tests.
245
+
246
+ #### Integration Testing
247
+
248
+ Integration Testing requires connectivity to Redis_cloud. By using the testRunner script it prevents you from having to edit the integration test. It also resets the integration test after the test is complete so that credentials are not saved in the file.
249
+
250
+ > **Note**: These tests have been written as a best effort to make them work in most environments. However, the Adapter Builder often does not have the necessary information that is required to set up valid integration tests. For example, the order of the requests can be very important and data is often required for `creates` and `updates`. Hence, integration tests may have to be enhanced before they will work (integrate) with Redis_cloud. Even after tests have been set up properly, it is possible there are environmental constraints that could result in test failures. Some examples of possible environmental issues are customizations that have been made within Redis_cloud which change order dependencies or required data.
251
+
252
+ ```bash
253
+ node utils/testRunner
254
+ answer yes at the first prompt
255
+ answer all other questions on connectivity and credentials
256
+ ```
257
+
258
+ Test should also be written to clean up after themselves. However, it is important to understand that in some cases this may not be possible. In addition, whenever exceptions occur, test execution may be stopped, which will prevent cleanup actions from running. It is recommended that tests be utilized in dev and test labs only.
259
+
260
+ > **Reminder**: Do not check in code with actual credentials to systems.
261
+
262
+ ## [Configuration](./PROPERTIES.md)
263
+
264
+ ## [Using this Adapter](./CALLS.md)
265
+
266
+ ### [Authentication](./AUTH.md)
267
+
268
+ ## Additional Information
269
+
270
+ ### [Enhancements](./ENHANCE.md)
271
+
272
+ ### [Contributing](./CONTRIBUTING.md)
273
+
274
+ ### Helpful Links
275
+
276
+ <a href="https://docs.itential.com/opensource/docs/adapters" target="_blank">Adapter Technical Resources</a>
277
+
278
+ ### Node Scripts
279
+
280
+ There are several node scripts that now accompany the adapter. These scripts are provided to make several activities easier. Many of these scripts can have issues with different versions of IAP as they have dependencies on IAP and Mongo. If you have issues with the scripts please report them to the Itential Adapter Team. Each of these scripts are described below.
281
+
282
+ <table border="1" class="bordered-table">
283
+ <tr>
284
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Run</span></th>
285
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
286
+ </tr>
287
+ <tr>
288
+ <td style="padding:15px">npm run adapter:install</td>
289
+ <td style="padding:15px">Provides an easier way to install the adapter.</td>
290
+ </tr>
291
+ <tr>
292
+ <td style="padding:15px">npm run adapter:checkMigrate</td>
293
+ <td style="padding:15px">Checks whether your adapter can and should be migrated to the latest foundation.</td>
294
+ </tr>
295
+ <tr>
296
+ <td style="padding:15px">npm run adapter:findPath</td>
297
+ <td style="padding:15px">Can be used to see if the adapter supports a particular API call.</td>
298
+ </tr>
299
+ <tr>
300
+ <td style="padding:15px">npm run adapter:migrate</td>
301
+ <td style="padding:15px">Provides an easier way to update your adapter after you download the migration zip from Itential DevSite.</td>
302
+ </tr>
303
+ <tr>
304
+ <td style="padding:15px">npm run adapter:update</td>
305
+ <td style="padding:15px">Provides an easier way to update your adapter after you download the update zip from Itential DevSite.</td>
306
+ </tr>
307
+ <tr>
308
+ <td style="padding:15px">npm run adapter:revert</td>
309
+ <td style="padding:15px">Allows you to revert after a migration or update if it resulted in issues.</td>
310
+ </tr>
311
+ <tr>
312
+ <td style="padding:15px">npm run troubleshoot</td>
313
+ <td style="padding:15px">Provides a way to troubleshoot the adapter - runs connectivity, healthcheck and basic get.</td>
314
+ </tr>
315
+ <tr>
316
+ <td style="padding:15px">npm run connectivity</td>
317
+ <td style="padding:15px">Provides a connectivity check to the Redis_cloud system.</td>
318
+ </tr>
319
+ <tr>
320
+ <td style="padding:15px">npm run healthcheck</td>
321
+ <td style="padding:15px">Checks whether the configured healthcheck call works to Redis_cloud.</td>
322
+ </tr>
323
+ <tr>
324
+ <td style="padding:15px">npm run basicget</td>
325
+ <td style="padding:15px">Checks whether the basic get calls works to Redis_cloud.</td>
326
+ </tr>
327
+ </table>
328
+ <br>
329
+
330
+ ## [Troubleshoot](./TROUBLESHOOT.md)
331
+
332
+ ## License and Maintainers
333
+
334
+ ```text
335
+ Itential Product Adapters are maintained by the Itential Product Team.
336
+ Itential OpenSource Adapters are maintained by the Itential Adapter Team and the community at large.
337
+ Custom Adapters are maintained by other sources.
338
+ ```
339
+
340
+ ## Product License
341
+
342
+ [Apache 2.0](./LICENSE)
package/SUMMARY.md ADDED
@@ -0,0 +1,9 @@
1
+ ## Overview
2
+
3
+ This adapter is used to integrate the Itential Automation Platform (IAP) with the Redis_cloud System. The API that was used to build the adapter for Redis_cloud is usually available in the report directory of this adapter. The adapter utilizes the Redis_cloud API to provide the integrations that are deemed pertinent to IAP. The ReadMe file is intended to provide information on this adapter it is generated from various other Markdown files.
4
+
5
+ >**Note**: It is possible that some integrations will be supported through the Redis_cloud adapter while other integrations will not. If you need additional API calls, you can use the Update capabilities provided by the Adapter Builder or request Itential to add them if the Adapter is an Itential opensourced adapter.
6
+
7
+ Itential provides information on all of its product adapters in the Customer Knowledge Base. Information in the <a href="https://itential.atlassian.net/servicedesk/customer/portals" target="_blank">Customer Knowledge Base</a> is consistently maintained and goes through documentation reviews. As a result, it should be the first place to go for information.
8
+
9
+ For opensourced and custom built adapters, the ReadMe is a starting point to understand what you have built, provide the information for you to be able to update the adapter, and assist you with deploying the adapter into IAP.
package/SYSTEMINFO.md ADDED
@@ -0,0 +1,22 @@
1
+ # Redis_cloud
2
+
3
+ Vendor: Redis
4
+ Homepage: https://redis.com/
5
+
6
+ Product: Redis
7
+ Product Page: https://redis.com/
8
+
9
+ ## Introduction
10
+ We classify Redis into the Persistence domain as it is a in-memory data store platform.
11
+
12
+ "It is designed to be used as a database, cache, streaming engine, and message broker"
13
+
14
+ ## Why Integrate
15
+ The Redis Cloud adapter from Itential is used to integrate the Itential Automation Platform (IAP) with Redis Cloud. With this adapter you have the ability to perform operations such as:
16
+
17
+ - Manage Accounts
18
+ - Manage Subscriptions
19
+ - Manage ACLs
20
+
21
+ ## Additional Product Documentation
22
+ The [API documents for Microsoft Teams](https://api.redislabs.com/v1/swagger-ui/index.html)
@@ -0,0 +1,47 @@
1
+ ## Troubleshoot
2
+
3
+ Run `npm run troubleshoot` to start the interactive troubleshooting process. The command allows you to verify and update connection, authentication as well as healthcheck configuration. After that it will test these properties by sending HTTP request to the endpoint. If the tests pass, it will persist these changes into IAP.
4
+
5
+ You also have the option to run individual commands to perform specific test:
6
+
7
+ - `npm run healthcheck` will perform a healthcheck request of with current setting.
8
+ - `npm run basicget` will perform some non-parameter GET request with current setting.
9
+ - `npm run connectivity` will perform networking diagnostics of the adatper endpoint.
10
+
11
+ ### Connectivity Issues
12
+
13
+ 1. You can run the adapter troubleshooting script which will check connectivity, run the healthcheck and run basic get calls.
14
+
15
+ ```bash
16
+ npm run troubleshoot
17
+ ```
18
+
19
+ 2. Verify the adapter properties are set up correctly.
20
+
21
+ ```text
22
+ Go into the Itential Platform GUI and verify/update the properties
23
+ ```
24
+
25
+ 3. Verify there is connectivity between the Itential Platform Server and Redis_cloud Server.
26
+
27
+ ```text
28
+ ping the ip address of Redis_cloud server
29
+ try telnet to the ip address port of Redis_cloud
30
+ execute a curl command to the other system
31
+ ```
32
+
33
+ 4. Verify the credentials provided for Redis_cloud.
34
+
35
+ ```text
36
+ login to Redis_cloud using the provided credentials
37
+ ```
38
+
39
+ 5. Verify the API of the call utilized for Redis_cloud Healthcheck.
40
+
41
+ ```text
42
+ Go into the Itential Platform GUI and verify/update the properties
43
+ ```
44
+
45
+ ### Functional Issues
46
+
47
+ Adapter logs are located in `/var/log/pronghorn`. In older releases of the Itential Platform, there is a `pronghorn.log` file which contains logs for all of the Itential Platform. In newer versions, adapters can be configured to log into their own files.