orchestration_executions_by_type

Column Type
exec_nature TEXT
execution_count

SQL DDL

CREATE VIEW orchestration_executions_by_type AS
 SELECT
     exec_nature,
     COUNT(*) AS execution_count
 FROM orchestration_session_exec
 GROUP BY exec_nature