File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
src/components/platformcapabilities/capabilities Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff 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} ;
Original file line number Diff line number Diff line change @@ -8,6 +8,44 @@ import { useAuditStore } from "@/stores/AuditStore";
88import { AuditingCardDescription , AuditingIndicatorTooltip } from "@/components/platformcapabilities/constants" ;
99import { 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+
1149export function useAuditingCapability ( testResults : Ref < ConnectionTestResults | null > ) {
1250 const auditStore = useAuditStore ( ) ;
1351 // this gives us the messages array which includes all messages (successful and failed)
You can’t perform that action at this time.
0 commit comments