@pb33f/cowboy-components 0.6.3 → 0.6.4
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.
- package/dist/components/rodeo/rodeo.js +11 -1
- package/dist/components/rodeo/roundup.d.ts +4 -0
- package/dist/components/rodeo/roundup.js +24 -1
- package/dist/model/platform-events.d.ts +5 -1
- package/dist/model/platform-events.js +4 -0
- package/dist/model/roundup-stats.d.ts +4 -0
- package/package.json +1 -1
|
@@ -45,7 +45,7 @@ let Rodeo = class Rodeo extends LitElement {
|
|
|
45
45
|
if (useTLS && useTLS == 'true') {
|
|
46
46
|
this.useTLS = true;
|
|
47
47
|
}
|
|
48
|
-
this.authController = new AuthController(this
|
|
48
|
+
this.authController = new AuthController(this);
|
|
49
49
|
}
|
|
50
50
|
connectToBroker() {
|
|
51
51
|
let protocol = "ws://";
|
|
@@ -111,10 +111,20 @@ let Rodeo = class Rodeo extends LitElement {
|
|
|
111
111
|
break;
|
|
112
112
|
case PlatformEventType.SessionStarted:
|
|
113
113
|
this.roundupComponent.numSessionsActive++;
|
|
114
|
+
this.roundupComponent.numHttpSessions++;
|
|
114
115
|
break;
|
|
115
116
|
case PlatformEventType.UserCreated:
|
|
116
117
|
this.roundupComponent.numUsers++;
|
|
117
118
|
break;
|
|
119
|
+
case PlatformEventType.FileCreated:
|
|
120
|
+
this.roundupComponent.numFiles++;
|
|
121
|
+
break;
|
|
122
|
+
case PlatformEventType.FileRevisionCreated:
|
|
123
|
+
this.roundupComponent.numFileRevisions++;
|
|
124
|
+
break;
|
|
125
|
+
case PlatformEventType.RulesetCreated:
|
|
126
|
+
this.roundupComponent.numRuleSets++;
|
|
127
|
+
break;
|
|
118
128
|
}
|
|
119
129
|
}
|
|
120
130
|
rodeoServiceStream() {
|
|
@@ -12,6 +12,10 @@ export declare class RodeoRoundup extends LitElement {
|
|
|
12
12
|
numAuthenticatedSessions: number;
|
|
13
13
|
numUsers: number;
|
|
14
14
|
numBrokerAssociations: number;
|
|
15
|
+
numHttpSessions: number;
|
|
16
|
+
numFiles: number;
|
|
17
|
+
numFileRevisions: number;
|
|
18
|
+
numRuleSets: number;
|
|
15
19
|
private terminalEmulator;
|
|
16
20
|
constructor();
|
|
17
21
|
firstUpdated(): void;
|
|
@@ -28,6 +28,10 @@ let RodeoRoundup = class RodeoRoundup extends LitElement {
|
|
|
28
28
|
this.numAuthenticatedSessions = stats.sessionsAuthenticated;
|
|
29
29
|
this.numUsers = stats.users;
|
|
30
30
|
this.numBrokerAssociations = stats.brokerAssociations;
|
|
31
|
+
this.numHttpSessions = stats.httpSessions;
|
|
32
|
+
this.numFiles = stats.files;
|
|
33
|
+
this.numFileRevisions = stats.fileRevisions;
|
|
34
|
+
this.numRuleSets = stats.ruleSets;
|
|
31
35
|
});
|
|
32
36
|
}
|
|
33
37
|
pushConsoleEventInfoMessage(evt) {
|
|
@@ -56,7 +60,14 @@ let RodeoRoundup = class RodeoRoundup extends LitElement {
|
|
|
56
60
|
value="${this.numBrokerAssociations}"></pb33f-rodeo-statistic>
|
|
57
61
|
<pb33f-rodeo-statistic title="Users"
|
|
58
62
|
value="${this.numUsers}"></pb33f-rodeo-statistic>
|
|
59
|
-
|
|
63
|
+
<pb33f-rodeo-statistic title="HTTP Sessions"
|
|
64
|
+
value="${this.numHttpSessions}"></pb33f-rodeo-statistic>
|
|
65
|
+
<pb33f-rodeo-statistic title="Files"
|
|
66
|
+
value="${this.numFiles}"></pb33f-rodeo-statistic>
|
|
67
|
+
<pb33f-rodeo-statistic title="File Revisions"
|
|
68
|
+
value="${this.numFileRevisions}"></pb33f-rodeo-statistic>
|
|
69
|
+
<pb33f-rodeo-statistic title="Rulesets"
|
|
70
|
+
value="${this.numRuleSets}"></pb33f-rodeo-statistic>
|
|
60
71
|
</div>
|
|
61
72
|
<div class="emulator">
|
|
62
73
|
${this.terminalEmulator}
|
|
@@ -90,6 +101,18 @@ __decorate([
|
|
|
90
101
|
__decorate([
|
|
91
102
|
property({ type: Number })
|
|
92
103
|
], RodeoRoundup.prototype, "numBrokerAssociations", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
property({ type: Number })
|
|
106
|
+
], RodeoRoundup.prototype, "numHttpSessions", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
property({ type: Number })
|
|
109
|
+
], RodeoRoundup.prototype, "numFiles", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
property({ type: Number })
|
|
112
|
+
], RodeoRoundup.prototype, "numFileRevisions", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
property({ type: Number })
|
|
115
|
+
], RodeoRoundup.prototype, "numRuleSets", void 0);
|
|
93
116
|
RodeoRoundup = __decorate([
|
|
94
117
|
customElement('pb33f-rodeo-home')
|
|
95
118
|
], RodeoRoundup);
|
|
@@ -2,7 +2,11 @@ export declare enum PlatformEventType {
|
|
|
2
2
|
AssociateBroker = "broker-associated",
|
|
3
3
|
UserAuthenticated = "user-authenticated",
|
|
4
4
|
UserCreated = "user-created",
|
|
5
|
-
SessionStarted = "session-started"
|
|
5
|
+
SessionStarted = "session-started",
|
|
6
|
+
FileCreated = "file=created",
|
|
7
|
+
FileRevisionCreated = "file-revision-created",
|
|
8
|
+
RulesetCreated = "ruleset-created",
|
|
9
|
+
RulesetUpdated = "ruleset-updated"
|
|
6
10
|
}
|
|
7
11
|
export interface PlatformEvent {
|
|
8
12
|
id?: string;
|
|
@@ -4,4 +4,8 @@ export var PlatformEventType;
|
|
|
4
4
|
PlatformEventType["UserAuthenticated"] = "user-authenticated";
|
|
5
5
|
PlatformEventType["UserCreated"] = "user-created";
|
|
6
6
|
PlatformEventType["SessionStarted"] = "session-started";
|
|
7
|
+
PlatformEventType["FileCreated"] = "file=created";
|
|
8
|
+
PlatformEventType["FileRevisionCreated"] = "file-revision-created";
|
|
9
|
+
PlatformEventType["RulesetCreated"] = "ruleset-created";
|
|
10
|
+
PlatformEventType["RulesetUpdated"] = "ruleset-updated";
|
|
7
11
|
})(PlatformEventType || (PlatformEventType = {}));
|
package/package.json
CHANGED