@@ -51,21 +51,27 @@ services that Sagittarius must implement as a server.
5151│ ├── data_type - DataType service
5252│ ├── execution - Execution service (handles internal execution calls)
5353│ ├── flow_definition - FlowType service (handles flow_type updates)
54- │ └── runtime_function - Service for updating the runtime functions
54+ │ ├── runtime_function - Service for updating the runtime functions
55+ │ ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)
56+ │ └── runtime_usage - Service for runtime usage (handles execution time of a flow)
5557├── sagittarius
5658│ ├── action - Action service (manages logon/logoff requests for action configurations)
5759│ ├── data_type - DataType service
5860│ ├── flow - Flow service (handles flow updates)
59- │ ├── flow_definition - FlowType service (handles flow_type updates)
61+ │ ├── flow_type - FlowType service (handles flow_type updates)
6062│ ├── ping - Ping service (performs life checks)
6163│ ├── runtime_function - Service for updating the runtime functions
64+ │ ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)
65+ │ ├── runtime_usage - Service for runtime usage (handles execution time of a flow)
6266│ └── test_execution - Service and Types for the test execution
6367└── shared
6468 ├── data_type - Defines types for data types
6569 ├── event - Defines types for events
6670 ├── flow - Defines types for flows
6771 ├── flow_definition - Defines a definition for a Flow
68- ├── runtime_function_definition - Defines types for runtime functions
72+ ├── runtime_function - Defines types for runtime functions
73+ ├── runtime_status - Defines types for runtime status (handles information about Draco and Taurus)
74+ ├── runtime_usage - Defines types for runtime usage (handles execution time of a flow)
6975 ├── struct - Defines types for json representations
7076 └── translation - Contains translations with country codes and translated messages
7177```
0 commit comments