Product Documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Product Management

flowchart TD


    subgraph Strategy
      goals --> initiatives & prioritize
      initiatives --> prioritize
    end

    subgraph Ideas 
        document_ideas --> ideas
        failed_file["Monitor Failed File/Message Type Gaps"] --> gaps
        custom_detection["Monitor Custom Detection Rule Gaps"] --> gaps
        standard_detection["Monitor Standard Detection Gaps"] --> gaps
        custom_elements["Monitor Custom Element Gaps"] --> gaps
    end
                  
    subgraph Discovery 
        gaps["Evaluate Gaps"] --> ideas["Add to Ideas"] & no["Will Not Do"]       
        ideas["Ideas Portal (AHA)"] --> prioritize
        prioritize["Prioritize Idea and Gaps"] --> create_feature["create new feature"] & update_feature["update feature"]  & no["Will Not Do"]
    end

    subgraph Roadmap
        update_feature --> update_story_board
        create_feature --> update_story_board

        
        support["JIRA Bug Tickets"] --> fix_feature
        security["Patch Management"] --> fix_feature
        
    end

    subgraph Design
        update_story_board["Update Story Board"]   --> create_test_scenarios
        update_story_board --> update_test_scenarios
        fix_feature --> fix_test_scenarios
        create_test_scenarios --> update_tests
        update_test_scenarios --> update_tests
        fix_test_scenarios  --> update_tests
        update_tests    
    end        

    subgraph Develop
        features
        update_tests --> execute_tests
        execute_tests --> pass & not_pass

    end
 
    subgraph Release
         pass --> schedule_release
    end