Skip to content

Commit 38e58b4

Browse files
author
dashuser1
committed
PR review
1 parent f783e2f commit 38e58b4

7 files changed

Lines changed: 25 additions & 120 deletions

File tree

packages/@squaredup/schema/schema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ export const dataStreamsSchema = {
591591
},
592592
provides: {
593593
type: 'string',
594-
enum: ['health', 'templateData','componentType']
594+
enum: ['health', 'templateData']
595595
},
596596
definition: {
597597
type: 'object',

plugins/eginnovations/v1/data_streams.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,8 +566,8 @@
566566
{ "label": "2 weeks", "value": "2 weeks" },
567567
{ "label": "4 weeks", "value": "4 weeks" }
568568
]
569-
},
570-
"defaultValue": "1 hour"
569+
}
570+
571571
}
572572
]
573573
},

plugins/eginnovations/v1/importObjects/components.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export async function stageComponents(context) {
7070
/**
7171
* Creates a vertex for SquaredUp graph.
7272
*/
73-
async function addVertexForApp(context, appObject) {
73+
function addVertexForApp(context, appObject) {
7474
const vertex = {
7575
sourceName: 'eG Enterprise',
7676
name: appObject.appName,

plugins/eginnovations/v1/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "eGInnovations",
33
"displayName": "eG Enterprise",
4-
"version": "1.1.4",
4+
"version": "1.1.5",
55
"author": "eG Innovations Pvt Ltd",
66
"description": "Monitor key application metrics from your eG environment",
77
"category": "APM",

plugins/eginnovations/v1/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"author": "eG innovations Pvt Ltd",
88
"license": "ISC",
99
"dependencies": {
10-
"axios": "1.9.0",
1110
"lodash": "^4.17.21",
1211
"node-fetch": "^3.3.2"
1312
},

pnpm-lock.yaml

Lines changed: 0 additions & 94 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/plugins-validator/validate.js

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2164,26 +2164,26 @@ const testPlugin = async () => {
21642164

21652165
// Dump mermaid
21662166
const source = mermaidForImportObjects(importedGraph).join('\n');
2167-
// console.log(
2168-
// '=========================== Mermaid Source ==================================================================='
2169-
// );
2170-
// console.log(source);
2171-
// console.log(
2172-
// '=========================== Copy/Paste the above into https://mermaid.live/edit =============================='
2173-
// );
2174-
// const mmUrl = `https://mermaid.ink/img/${Buffer.from(source).toString('base64')}`;
2175-
// console.log(`...or visit: ${mmUrl}`);
2176-
2177-
// const mmAnswer = await inquirer.prompt([
2178-
// {
2179-
// name: 'showMmd',
2180-
// type: 'confirm',
2181-
// message: 'visit Mermaid URL now (opens in default browser)?'
2182-
// }
2183-
// ]);
2184-
// if (mmAnswer.showMmd) {
2185-
// open(mmUrl);
2186-
// }
2167+
console.log(
2168+
'=========================== Mermaid Source ==================================================================='
2169+
);
2170+
console.log(source);
2171+
console.log(
2172+
'=========================== Copy/Paste the above into https://mermaid.live/edit =============================='
2173+
);
2174+
const mmUrl = `https://mermaid.ink/img/${Buffer.from(source).toString('base64')}`;
2175+
console.log(`...or visit: ${mmUrl}`);
2176+
2177+
const mmAnswer = await inquirer.prompt([
2178+
{
2179+
name: 'showMmd',
2180+
type: 'confirm',
2181+
message: 'visit Mermaid URL now (opens in default browser)?'
2182+
}
2183+
]);
2184+
if (mmAnswer.showMmd) {
2185+
open(mmUrl);
2186+
}
21872187

21882188
// Test data streams
21892189
console.log('\nTesting readDataSource()');

0 commit comments

Comments
 (0)