Skip to content

Commit f6792ba

Browse files
warwickschroederjasontaylordev
authored andcommitted
WIP
1 parent 74b3e27 commit f6792ba

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

src/Frontend/public/js/app.constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ window.defaultConfig = {
22
default_route: '/dashboard',
33
version: '1.2.0',
44
service_control_url: 'http://localhost:33333/api/',
5-
monitoring_urls: ['http://localhost:33633/'],
5+
monitoring_urls: ['http://localhost:33633/','http://localhost:33634/'],
66
showPendingRetry: false,
77
};

src/Frontend/src/components/platformcapabilities/capabilities/AuditingCapability.ts

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,44 @@ import { useAuditStore } from "@/stores/AuditStore";
88
import { AuditingCardDescription, AuditingIndicatorTooltip } from "@/components/platformcapabilities/constants";
99
import { MessageStatus } from "@/resources/Message";
1010

11+
// http://localhost:33333/api/configuration/remotes
12+
/**
13+
[
14+
{
15+
"api_uri": "http://servicecontrol-audit:44444",
16+
"version": "6.7.6",
17+
"status": "online",
18+
"configuration": {
19+
"host": {
20+
"instance_name": "Particular.ServiceControl.Audit",
21+
"logging": {
22+
"log_path": "/app/.logs",
23+
"logging_level": "information"
24+
}
25+
},
26+
"data_retention": {
27+
"audit_retention_period": "7.00:00:00"
28+
},
29+
"performance_tunning": {
30+
"max_body_size_to_store": 102400
31+
},
32+
"transport": {
33+
"transport_type": "RabbitMQ.QuorumConventionalRouting",
34+
"audit_log_queue": "audit.log",
35+
"audit_queue": "audit",
36+
"forward_audit_messages": false
37+
},
38+
"peristence": {
39+
"persistence_type": "RavenDB"
40+
},
41+
"plugins": {
42+
43+
}
44+
}
45+
}
46+
]
47+
*/
48+
1149
export function useAuditingCapability(testResults: Ref<ConnectionTestResults | null>) {
1250
const auditStore = useAuditStore();
1351
// this gives us the messages array which includes all messages (successful and failed)

0 commit comments

Comments
 (0)