[{"data":1,"prerenderedAt":1169},["ShallowReactive",2],{"/blog/monitor-application-performance-with-distributed-tracing":3,"navigation-en-us":390,"banner-en-us":818,"footer-en-us":828,"blog-post-authors-en-us-Sacha Guyon":1072,"blog-related-posts-en-us-monitor-application-performance-with-distributed-tracing":1087,"blog-promotions-en-us":1106,"next-steps-en-us":1159},{"id":4,"title":5,"authors":6,"body":8,"category":366,"date":367,"description":368,"extension":369,"externalUrl":370,"faq":370,"featured":371,"heroImage":372,"meta":373,"navigation":371,"path":374,"seo":375,"slug":380,"stem":381,"tags":382,"template":388,"updatedDate":370,"__hash__":389},"blogPosts/en-us/blog/monitor-application-performance-with-distributed-tracing.md","Monitor application performance with Distributed Tracing",[7],"Sacha Guyon",{"type":9,"value":10,"toc":348},"minimark",[11,22,25,40,45,48,51,55,58,61,70,77,80,115,118,124,128,131,136,151,154,160,164,179,183,186,219,225,229,237,241,256,263,267,276,291,294,300,307,312,316,325,329,338],[12,13,14,15,21],"p",{},"Downtime due to application defects or performance issues can have devastating financial consequences for businesses. An hour of downtime is estimated to cost firms $301,000 or more, according to ",[16,17,20],"a",{"href":18,"rel":19},"https://itic-corp.com/server-and-application-by-the-numbers-understanding-the-nines/",[],"Information Technology Intelligence Consulting's 2022 Global Server Hardware and Server OS Reliability Survey",". These issues often originate from human-introduced changes, such as code or configuration changes.",[12,23,24],{},"Resolving such incidents requires development and operations teams to collaborate closely, investigating the various components of the system to find the root cause change, and promptly restore the system back to normal operation. However, these teams commonly use separate tools to build, manage, and monitor their application services and infrastructure. This approach leads to siloed data, fragmented communication, and inefficient context switching, increasing the time spent to detect and resolve incidents.",[12,26,27,28,33,34,39],{},"GitLab aims to address this challenge by combining software delivery and monitoring functionalities within the same platform. Last year, we released ",[16,29,32],{"href":30,"rel":31},"https://docs.gitlab.com/operations/error_tracking/",[],"Error Tracking"," as a general availability feature in ",[16,35,38],{"href":36,"rel":37},"https://docs.gitlab.com/releases/16/gitlab-16-0-released/#error-tracking-is-now-generally-available",[],"GitLab 16.0",". Now, we're excited to announce the Beta release of Distributed Tracing, the next step toward a comprehensive observability offering seamlessly integrated into the GitLab DevSecOps platform.",[41,42,44],"h2",{"id":43},"a-new-era-of-efficiency-gitlab-observability","A new era of efficiency: GitLab Observability",[12,46,47],{},"GitLab Observability empowers development and operations teams to visualize and analyze errors, traces, logs, and metrics from their applications and infrastructure. By integrating application performance monitoring into existing software delivery workflows, context switching is minimized and productivity is increased, keeping teams focused and collaborative on a unified platform.",[12,49,50],{},"Additionally, GitLab Observability bridges the gap between development and operations by providing insights into application performance in production. This enhances transparency, information sharing, and communication between teams. Consequently, they can detect and resolve bugs and performance issues arising from new code or configuration changes sooner and more effectively, preventing those issues from escalating into major incidents that could negatively impact the business.",[41,52,54],{"id":53},"what-is-distributed-tracing","What is Distributed Tracing?",[12,56,57],{},"With Distributed Tracing, engineers can identify the source of application performance issues. A trace represents a single user request that moves through different services and systems. Engineers are able to analyze the timing of each operation and any errors as they occur.",[12,59,60],{},"Each trace is composed of one or more spans, which represent individual operations or units of work. Spans contain metadata like the name, timestamps, status, and relevant tags or logs. By examining the relationships between spans, developers can understand the request flow, identify performance bottlenecks, and pinpoint issues.",[12,62,63,64,69],{},"Distributed Tracing is especially valuable for ",[16,65,68],{"href":66,"rel":67},"https://about.gitlab.com/topics/microservices/",[],"microservices architecture",", where a single request may involve numerous service calls across a complex system. Tracing provides visibility into this interaction, empowering teams to quickly diagnose and resolve problems.",[12,71,72],{},[73,74],"img",{"alt":75,"src":76},"tracing example","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098009/Blog/Content%20Images/Blog/Content%20Images/image4_aHR0cHM6_1750098009139.png",[12,78,79],{},"For example, this trace illustrates a how a user request flows through difference services to fetch product recommendations on a e-commerce website:",[81,82,83,91,97,103,109],"ul",{},[84,85,86,90],"li",{},[87,88,89],"code",{},"User Action",": This indicates the user's initial action, such as clicking a button to request product recommendations on a product page.",[84,92,93,96],{},[87,94,95],{},"Web front-end",": The web front-end sends a request to the recommendation service to retrieve product recommendations.",[84,98,99,102],{},[87,100,101],{},"Recommendation service",": The request from the web front-end is handled by the recommendation service, which processes the request to generate a list of recommended products.",[84,104,105,108],{},[87,106,107],{},"Catalog service",": The recommendation service calls the catalog service to fetch details of the recommended products. An alert icon suggests an issue or delay at this stage, such as a slow response or error in fetching product details.",[84,110,111,114],{},[87,112,113],{},"Database",": The catalog service queries the database to retrieve the actual product details. This span shows the SQL query in the database.",[12,116,117],{},"By visualizing this end-to-end trace, developers can identify performance issues – here, an error in the Catalog service – and quickly diagnose and resolve issues across the distributed system.",[12,119,120],{},[73,121],{"alt":122,"src":123},"End-to-end trace","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098009/Blog/Content%20Images/Blog/Content%20Images/image1_aHR0cHM6_1750098009140.png",[41,125,127],{"id":126},"how-distributed-tracing-works","How Distributed Tracing works",[12,129,130],{},"Here is a breakdown of how Distributed Tracing works.",[132,133,135],"h3",{"id":134},"collect-data-from-any-application-with-opentelemetry","Collect data from any application with OpenTelemetry",[12,137,138,139,144,145,150],{},"Traces and spans can be collected using ",[16,140,143],{"href":141,"rel":142},"https://opentelemetry.io/docs/what-is-opentelemetry/",[],"OpenTelemetry",", an open-source observability framework that supports a wide array of SDKs and libraries across ",[16,146,149],{"href":147,"rel":148},"https://opentelemetry.io/docs/languages/",[],"major programming languages and frameworks",". This framework offers a vendor-neutral approach for collecting and exporting telemetry data, enabling developers to avoid vendor lock-in and choose the tools that best fit their needs.",[12,152,153],{},"This means that if you are already using OpenTelemetry with another vendor, you can send data to us simply by adding our endpoint to your configuration file, making it very easy to try out our features!",[12,155,156],{},[73,157],{"alt":158,"src":159},"Distributed tracing workflow diagram","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098009/Blog/Content%20Images/Blog/Content%20Images/image5_aHR0cHM6_1750098009141.png",[132,161,163],{"id":162},"ingest-and-retain-data-at-scale-with-fast-real-time-queries","Ingest and retain data at scale with fast, real-time queries",[12,165,166,167,172,173,178],{},"Observability requires the storage and querying of vast amounts of data while maintaining low latency for real-time analytics. To meet these needs, we developed a horizontally scalable, long-term storage solution using ClickHouse and Kubernetes, based on our ",[16,168,171],{"href":169,"rel":170},"https://about.gitlab.com/press/releases/2021-12-14-gitlab-acquires-opstrace-to-expand-its-devops-platform-with-open-source-observability-solution/",[],"acquisition of Opstrace",". This ",[16,174,177],{"href":175,"rel":176},"https://gitlab.com/gitlab-org/opstrace/opstrace",[],"open-source platform"," ensures rapid query performance and enterprise-grade scalability, all while minimizing costs.",[132,180,182],{"id":181},"explore-and-analyze-traces-effortlessly","Explore and analyze traces effortlessly",[12,184,185],{},"An advanced, native-level user interface is crucial for effective data exploration. We built such an interface from the ground up, starting with our Trace Explorer, which allows users to examine traces and understand their application's performance:",[81,187,188,195,201,207,213],{},[84,189,190,194],{},[191,192,193],"strong",{},"Advanced filtering:"," Filter by services, operation names, status, and time range. Autocomplete helps simplify querying.",[84,196,197,200],{},[191,198,199],{},"Error highlighting:"," Easily identify error spans in search results.",[84,202,203,206],{},[191,204,205],{},"RED metrics:"," Visualize the Requests rate, Errors rate, and average Duration as a time-series chart for any search in real-time.",[84,208,209,212],{},[191,210,211],{},"Timeline view:"," Individual traces are displayed as a waterfall diagram, providing a complete view of a request distributed across different services and operations.",[84,214,215,218],{},[191,216,217],{},"Historical data:"," Users can query traces up to 30 days in the past.",[12,220,221],{},[73,222],{"alt":223,"src":224},"Distributed Tracing - image 5","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098009/Blog/Content%20Images/Blog/Content%20Images/image3_aHR0cHM6_1750098009141.png",[41,226,228],{"id":227},"how-we-use-distributed-tracing-at-gitlab","How we use Distributed Tracing at GitLab",[12,230,231,236],{},[16,232,235],{"href":233,"rel":234},"https://handbook.gitlab.com/handbook/values/#dogfooding",[],"Dogfooding"," is a core value and practice at GitLab. We've been already using early versions of Distributed Tracing for our engineering and operations needs. Here are a couple example use cases from our teams:",[132,238,240],{"id":239},"_1-debug-errors-and-performance-issues-in-gitlab-agent-for-kubernetes","1. Debug errors and performance Issues in GitLab Agent for Kubernetes",[12,242,243,244,249,250,255],{},"The Environments group has been using Distributed Tracing to troubleshoot and resolve issues with the ",[16,245,248],{"href":246,"rel":247},"https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent",[],"GitLab Agent for Kubernetes",", such as timeouts or high latency issues. The Trace List and Trace Timeline views offer valuable insights for the team to address these concerns efficiently. These traces are shared and discussed in the ",[16,251,254],{"href":252,"rel":253},"https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent/-/issues/386#note_1576431796",[],"related GitLab issues",", where the team collaborates on resolution.",[257,258,259],"center",{},[260,261,262],"em",{},"\"The Distributed Tracing feature has been invaluable in pinpointing where latency issues are occurring, allowing us to focus on the root cause and resolve it faster.\" - Mikhail, GitLab Engineer",[132,264,266],{"id":265},"_2-optimize-gitlabs-build-pipeline-duration-by-identifying-performance-bottlenecks","2. Optimize GitLab’s build pipeline duration by identifying performance bottlenecks",[12,268,269,270,275],{},"Slow deployments of GitLab source code can significantly impact the productivity of the whole company, as well as our compute spending. Our main repository runs ",[16,271,274],{"href":272,"rel":273},"https://gitlab.com/gitlab-org/gitlab/-/pipelines/charts",[],"over 100,000 pipelines every month",". If the time it takes for these pipelines to run changes by just one minute, it can add or remove more than 2,000 hours of work time. That's 87 extra days!",[12,277,278,279,284,285,290],{},"To optimize pipeline execution time, GitLab's ",[16,280,283],{"href":281,"rel":282},"https://handbook.gitlab.com/handbook/engineering/infrastructure/",[],"platform engineering teams"," utilize a ",[16,286,289],{"href":287,"rel":288},"https://gitlab.com/gitlab-com/gl-infra/gitlab-pipeline-trace",[],"custom-built tool"," that converts GitLab deployment pipelines into traces.",[12,292,293],{},"The Trace Timeline view allows them to visualize the detailed execution timeline of complex pipelines and pinpoint which jobs are part of the critical path and slowing down the entire process. By identifying these bottlenecks, they can optimize job execution – for example, making the job fail faster, or running more jobs in parallel – to improve overall pipeline efficiency.",[12,295,296],{},[73,297],{"alt":298,"src":299},"Distributed Tracing - image 6","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098009/Blog/Content%20Images/Blog/Content%20Images/image2_aHR0cHM6_1750098009143.gif",[12,301,302,306],{},[16,303,305],{"href":287,"rel":304},[],"The script is freely available",", so you can adapt it for your own pipelines.",[257,308,309],{},[260,310,311],{},"\"Using Distributed Tracing for our deployment pipelines has been a game-changer. It's helped us quickly identify and eliminate bottlenecks, significantly reducing our deployment times.\"- Reuben, GitLab Engineer",[41,313,315],{"id":314},"whats-coming-next","What's coming next?",[12,317,318,319,324],{},"This release is just the start: In the next few months, we'll continue to expand our observability and monitoring features with the upcoming Metrics and Logging releases. Check out ",[16,320,323],{"href":321,"rel":322},"https://docs.gitlab.com/operations/",[],"our Observability direction page"," for more info, and keep an eye out for updates!",[41,326,328],{"id":327},"join-the-private-beta","Join the private Beta",[12,330,331,332,337],{},"Interested in being part of this exciting journey? ",[16,333,336],{"href":334,"rel":335},"https://docs.gitlab.com/operations/observability/",[],"Sign up to enroll in the private Beta"," and try out our features. Your contribution can help shape the future of observability within GitLab, ensuring our tools are perfectly aligned with your needs and challenges.",[339,340,341],"blockquote",{},[12,342,343,344],{},"Help shape the future of GitLab Observability. ",[16,345,347],{"href":334,"rel":346},[],"Join the Distributed Tracing Beta.",{"title":349,"searchDepth":350,"depth":350,"links":351},"",2,[352,353,354,360,364,365],{"id":43,"depth":350,"text":44},{"id":53,"depth":350,"text":54},{"id":126,"depth":350,"text":127,"children":355},[356,358,359],{"id":134,"depth":357,"text":135},3,{"id":162,"depth":357,"text":163},{"id":181,"depth":357,"text":182},{"id":227,"depth":350,"text":228,"children":361},[362,363],{"id":239,"depth":357,"text":240},{"id":265,"depth":357,"text":266},{"id":314,"depth":350,"text":315},{"id":327,"depth":350,"text":328},"product","2024-06-13","Learn how Distributed Tracing helps troubleshoot application performance issues by providing end-to-end visibility and seamless collaboration across your organization.","md",null,true,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098000/Blog/Hero%20Images/Blog/Hero%20Images/blog-image-template-1800x945%20%288%29_5x6kH5vwjz8cwKgSBh1w11_1750098000511.png",{},"/en-us/blog/monitor-application-performance-with-distributed-tracing",{"title":5,"description":368,"ogTitle":5,"ogDescription":368,"noIndex":376,"ogImage":372,"ogUrl":377,"ogSiteName":378,"ogType":379,"canonicalUrls":377},false,"https://about.gitlab.com/blog/monitor-application-performance-with-distributed-tracing","https://about.gitlab.com","article","monitor-application-performance-with-distributed-tracing","en-us/blog/monitor-application-performance-with-distributed-tracing",[383,384,385,386,387],"performance","features","news","DevSecOps platform","collaboration","BlogPost","2CaJQ1iS6rbIRfu55Eas9nrp06Khifppo8lJFZTqM5Q",{"logo":391,"freeTrial":396,"sales":401,"login":406,"items":411,"search":738,"minimal":769,"duo":788,"switchNav":797,"pricingDeployment":808},{"config":392},{"href":393,"dataGaName":394,"dataGaLocation":395},"/","gitlab logo","header",{"text":397,"config":398},"Get free trial",{"href":399,"dataGaName":400,"dataGaLocation":395},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":402,"config":403},"Request a demo",{"href":404,"dataGaName":405,"dataGaLocation":395},"/sales/?contact-topic=request-demo","sales",{"text":407,"config":408},"Sign in",{"href":409,"dataGaName":410,"dataGaLocation":395},"https://gitlab.com/users/sign_in/","sign in",[412,441,541,546,660,716],{"text":413,"config":414,"menu":416},"Platform",{"dataNavLevelOne":415},"platform",{"type":417,"columns":418},"cards",[419,425,433],{"title":413,"description":420,"link":421},"The intelligent orchestration platform for DevSecOps",{"text":422,"config":423},"Explore our Platform",{"href":424,"dataGaName":415,"dataGaLocation":395},"/platform/",{"title":426,"description":427,"link":428},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":429,"config":430},"Meet GitLab Duo",{"href":431,"dataGaName":432,"dataGaLocation":395},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":434,"description":435,"link":436},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":437,"config":438},"Learn more",{"href":439,"dataGaName":440,"dataGaLocation":395},"/why-gitlab/","why gitlab",{"text":442,"left":371,"config":443,"menu":445},"Product",{"dataNavLevelOne":444},"solutions",{"type":446,"link":447,"columns":451,"feature":520},"lists",{"text":448,"config":449},"View all Solutions",{"href":450,"dataGaName":444,"dataGaLocation":395},"/solutions/",[452,476,499],{"title":453,"description":454,"link":455,"items":460},"Automation","CI/CD and automation to accelerate deployment",{"config":456},{"icon":457,"href":458,"dataGaName":459,"dataGaLocation":395},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[461,465,468,472],{"text":462,"config":463},"CI/CD",{"href":464,"dataGaLocation":395,"dataGaName":462},"/solutions/continuous-integration/",{"text":426,"config":466},{"href":431,"dataGaLocation":395,"dataGaName":467},"gitlab duo agent platform - product menu",{"text":469,"config":470},"Source Code Management",{"href":471,"dataGaLocation":395,"dataGaName":469},"/solutions/source-code-management/",{"text":473,"config":474},"Automated Software Delivery",{"href":458,"dataGaLocation":395,"dataGaName":475},"Automated software delivery",{"title":477,"description":478,"link":479,"items":484},"Security","Deliver code faster without compromising security",{"config":480},{"href":481,"dataGaName":482,"dataGaLocation":395,"icon":483},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[485,489,494],{"text":486,"config":487},"Application Security Testing",{"href":481,"dataGaName":488,"dataGaLocation":395},"Application security testing",{"text":490,"config":491},"Software Supply Chain Security",{"href":492,"dataGaLocation":395,"dataGaName":493},"/solutions/supply-chain/","Software supply chain security",{"text":495,"config":496},"Software Compliance",{"href":497,"dataGaName":498,"dataGaLocation":395},"/solutions/software-compliance/","software compliance",{"title":500,"link":501,"items":506},"Measurement",{"config":502},{"icon":503,"href":504,"dataGaName":505,"dataGaLocation":395},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[507,511,515],{"text":508,"config":509},"Visibility & Measurement",{"href":504,"dataGaLocation":395,"dataGaName":510},"Visibility and Measurement",{"text":512,"config":513},"Value Stream Management",{"href":514,"dataGaLocation":395,"dataGaName":512},"/solutions/value-stream-management/",{"text":516,"config":517},"Analytics & Insights",{"href":518,"dataGaLocation":395,"dataGaName":519},"/solutions/analytics-and-insights/","Analytics and insights",{"title":521,"type":446,"items":522},"GitLab for",[523,529,535],{"text":524,"config":525},"Enterprise",{"icon":526,"href":527,"dataGaLocation":395,"dataGaName":528},"Building","/enterprise/","enterprise",{"text":530,"config":531},"Small Business",{"icon":532,"href":533,"dataGaLocation":395,"dataGaName":534},"Work","/small-business/","small business",{"text":536,"config":537},"Public Sector",{"icon":538,"href":539,"dataGaLocation":395,"dataGaName":540},"Organization","/solutions/public-sector/","public sector",{"text":542,"config":543},"Pricing",{"href":544,"dataGaName":545,"dataGaLocation":395,"dataNavLevelOne":545},"/pricing/","pricing",{"text":547,"config":548,"menu":550},"Resources",{"dataNavLevelOne":549},"resources",{"type":446,"link":551,"columns":555,"feature":649},{"text":552,"config":553},"View all resources",{"href":554,"dataGaName":549,"dataGaLocation":395},"/resources/",[556,589,616],{"title":557,"items":558},"Getting started",[559,564,569,574,579,584],{"text":560,"config":561},"Install",{"href":562,"dataGaName":563,"dataGaLocation":395},"/install/","install",{"text":565,"config":566},"Quick start guides",{"href":567,"dataGaName":568,"dataGaLocation":395},"/get-started/","quick setup checklists",{"text":570,"config":571},"Learn",{"href":572,"dataGaLocation":395,"dataGaName":573},"https://university.gitlab.com/","learn",{"text":575,"config":576},"Product documentation",{"href":577,"dataGaName":578,"dataGaLocation":395},"https://docs.gitlab.com/","product documentation",{"text":580,"config":581},"Best practice videos",{"href":582,"dataGaName":583,"dataGaLocation":395},"/getting-started-videos/","best practice videos",{"text":585,"config":586},"Integrations",{"href":587,"dataGaName":588,"dataGaLocation":395},"/integrations/","integrations",{"title":590,"items":591},"Discover",[592,597,602,607,611],{"text":593,"config":594},"Customer success stories",{"href":595,"dataGaName":596,"dataGaLocation":395},"/customers/","customer success stories",{"text":598,"config":599},"Blog",{"href":600,"dataGaName":601,"dataGaLocation":395},"/blog/","blog",{"text":603,"config":604},"Demo Hub",{"href":605,"dataGaName":606,"dataGaLocation":395},"/demo-hub/","demo hub",{"text":608,"config":609},"The Source",{"href":610,"dataGaName":601,"dataGaLocation":395},"/the-source/",{"text":612,"config":613},"Remote",{"href":614,"dataGaName":615,"dataGaLocation":395},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":617,"items":618},"Connect",[619,624,629,634,639,644],{"text":620,"config":621},"GitLab Services",{"href":622,"dataGaName":623,"dataGaLocation":395},"/services/","services",{"text":625,"config":626},"Contribute",{"href":627,"dataGaName":628,"dataGaLocation":395},"https://contributors.gitlab.com","contribute",{"text":630,"config":631},"Community",{"href":632,"dataGaName":633,"dataGaLocation":395},"/community/","community",{"text":635,"config":636},"Forum",{"href":637,"dataGaName":638,"dataGaLocation":395},"https://forum.gitlab.com/","forum",{"text":640,"config":641},"Events",{"href":642,"dataGaName":643,"dataGaLocation":395},"/events/","events",{"text":645,"config":646},"Partners",{"href":647,"dataGaName":648,"dataGaLocation":395},"/partners/","partners",{"config":650,"title":653,"text":654,"link":655},{"background":651,"textColor":652},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":656,"config":657},"Read the latest",{"href":658,"dataGaName":659,"dataGaLocation":395},"/whats-new/","whats new",{"text":661,"config":662,"menu":664},"Company",{"dataNavLevelOne":663},"company",{"type":446,"columns":665},[666],{"items":667},[668,673,679,681,686,691,696,701,706,711],{"text":669,"config":670},"About",{"href":671,"dataGaName":672,"dataGaLocation":395},"/company/","about",{"text":674,"config":675,"footerGa":678},"Jobs",{"href":676,"dataGaName":677,"dataGaLocation":395},"/jobs/","jobs",{"dataGaName":677},{"text":640,"config":680},{"href":642,"dataGaName":643,"dataGaLocation":395},{"text":682,"config":683},"Leadership",{"href":684,"dataGaName":685,"dataGaLocation":395},"/company/team/e-group/","leadership",{"text":687,"config":688},"Handbook",{"href":689,"dataGaName":690,"dataGaLocation":395},"https://handbook.gitlab.com/","handbook",{"text":692,"config":693},"Investor relations",{"href":694,"dataGaName":695,"dataGaLocation":395},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":697,"config":698},"Trust Center",{"href":699,"dataGaName":700,"dataGaLocation":395},"/security/","trust center",{"text":702,"config":703},"AI Transparency Center",{"href":704,"dataGaName":705,"dataGaLocation":395},"/ai-transparency-center/","ai transparency center",{"text":707,"config":708},"Newsletter",{"href":709,"dataGaName":710,"dataGaLocation":395},"/company/contact/#contact-forms","newsletter",{"text":712,"config":713},"Press",{"href":714,"dataGaName":715,"dataGaLocation":395},"/press/","press",{"text":717,"config":718,"menu":719},"Contact us",{"dataNavLevelOne":663},{"type":446,"columns":720},[721],{"items":722},[723,728,733],{"text":724,"config":725},"Talk to sales",{"href":726,"dataGaName":727,"dataGaLocation":395},"/sales/","talk to sales",{"text":729,"config":730},"Support portal",{"href":731,"dataGaName":732,"dataGaLocation":395},"https://support.gitlab.com/hc/en-us","support portal",{"text":734,"config":735},"Customer portal",{"href":736,"dataGaName":737,"dataGaLocation":395},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":739,"login":740,"suggestions":747},"Close",{"text":741,"link":742},"To search repositories and projects, login to",{"text":743,"config":744},"gitlab.com",{"href":409,"dataGaName":745,"dataGaLocation":746},"search login","search",{"text":748,"default":749},"Suggestions",[750,752,756,758,762,766],{"text":426,"config":751},{"href":431,"dataGaName":426,"dataGaLocation":746},{"text":753,"config":754},"Code Suggestions (AI)",{"href":755,"dataGaName":753,"dataGaLocation":746},"/solutions/code-suggestions/",{"text":462,"config":757},{"href":464,"dataGaName":462,"dataGaLocation":746},{"text":759,"config":760},"GitLab on AWS",{"href":761,"dataGaName":759,"dataGaLocation":746},"/partners/technology-partners/aws/",{"text":763,"config":764},"GitLab on Google Cloud",{"href":765,"dataGaName":763,"dataGaLocation":746},"/partners/technology-partners/google-cloud-platform/",{"text":767,"config":768},"Why GitLab?",{"href":439,"dataGaName":767,"dataGaLocation":746},{"freeTrial":770,"mobileIcon":775,"desktopIcon":780,"secondaryButton":783},{"text":771,"config":772},"Start free trial",{"href":773,"dataGaName":400,"dataGaLocation":774},"https://gitlab.com/-/trials/new/","nav",{"altText":776,"config":777},"Gitlab Icon",{"src":778,"dataGaName":779,"dataGaLocation":774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":776,"config":781},{"src":782,"dataGaName":779,"dataGaLocation":774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":784,"config":785},"Get Started",{"href":786,"dataGaName":787,"dataGaLocation":774},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":789,"mobileIcon":793,"desktopIcon":795},{"text":790,"config":791},"Learn more about GitLab Duo",{"href":431,"dataGaName":792,"dataGaLocation":774},"gitlab duo",{"altText":776,"config":794},{"src":778,"dataGaName":779,"dataGaLocation":774},{"altText":776,"config":796},{"src":782,"dataGaName":779,"dataGaLocation":774},{"button":798,"mobileIcon":803,"desktopIcon":805},{"text":799,"config":800},"/switch",{"href":801,"dataGaName":802,"dataGaLocation":774},"#contact","switch",{"altText":776,"config":804},{"src":778,"dataGaName":779,"dataGaLocation":774},{"altText":776,"config":806},{"src":807,"dataGaName":779,"dataGaLocation":774},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":809,"mobileIcon":814,"desktopIcon":816},{"text":810,"config":811},"Back to pricing",{"href":544,"dataGaName":812,"dataGaLocation":774,"icon":813},"back to pricing","GoBack",{"altText":776,"config":815},{"src":778,"dataGaName":779,"dataGaLocation":774},{"altText":776,"config":817},{"src":782,"dataGaName":779,"dataGaLocation":774},{"title":819,"titleMobile":820,"button":821,"config":826},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":437,"config":822},{"href":823,"dataGaName":824,"dataGaLocation":825},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":827,"disabled":376},"release",{"data":829},{"text":830,"source":831,"edit":837,"contribute":842,"config":847,"items":852,"minimal":1061},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":832,"config":833},"View page source",{"href":834,"dataGaName":835,"dataGaLocation":836},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":838,"config":839},"Edit this page",{"href":840,"dataGaName":841,"dataGaLocation":836},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":843,"config":844},"Please contribute",{"href":845,"dataGaName":846,"dataGaLocation":836},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":848,"facebook":849,"youtube":850,"linkedin":851},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[853,900,953,997,1029],{"title":542,"links":854,"subMenu":869},[855,859,864],{"text":856,"config":857},"View plans",{"href":544,"dataGaName":858,"dataGaLocation":836},"view plans",{"text":860,"config":861},"Why Premium?",{"href":862,"dataGaName":863,"dataGaLocation":836},"/pricing/premium/","why premium",{"text":865,"config":866},"Why Ultimate?",{"href":867,"dataGaName":868,"dataGaLocation":836},"/pricing/ultimate/","why ultimate",[870],{"title":871,"links":872},"Contact Us",[873,876,878,880,885,890,895],{"text":874,"config":875},"Contact sales",{"href":726,"dataGaName":405,"dataGaLocation":836},{"text":729,"config":877},{"href":731,"dataGaName":732,"dataGaLocation":836},{"text":734,"config":879},{"href":736,"dataGaName":737,"dataGaLocation":836},{"text":881,"config":882},"Status",{"href":883,"dataGaName":884,"dataGaLocation":836},"https://status.gitlab.com/","status",{"text":886,"config":887},"Terms of use",{"href":888,"dataGaName":889,"dataGaLocation":836},"/terms/","terms of use",{"text":891,"config":892},"Privacy statement",{"href":893,"dataGaName":894,"dataGaLocation":836},"/privacy/","privacy statement",{"text":896,"config":897},"Cookie preferences",{"dataGaName":898,"dataGaLocation":836,"id":899,"isOneTrustButton":371},"cookie preferences","ot-sdk-btn",{"title":442,"links":901,"subMenu":909},[902,905],{"text":386,"config":903},{"href":424,"dataGaName":904,"dataGaLocation":836},"devsecops platform",{"text":906,"config":907},"AI-Assisted Development",{"href":431,"dataGaName":908,"dataGaLocation":836},"ai-assisted development",[910],{"title":911,"links":912},"Topics",[913,918,923,928,933,938,943,948],{"text":914,"config":915},"CICD",{"href":916,"dataGaName":917,"dataGaLocation":836},"/topics/ci-cd/","cicd",{"text":919,"config":920},"GitOps",{"href":921,"dataGaName":922,"dataGaLocation":836},"/topics/gitops/","gitops",{"text":924,"config":925},"DevOps",{"href":926,"dataGaName":927,"dataGaLocation":836},"/topics/devops/","devops",{"text":929,"config":930},"Version Control",{"href":931,"dataGaName":932,"dataGaLocation":836},"/topics/version-control/","version control",{"text":934,"config":935},"DevSecOps",{"href":936,"dataGaName":937,"dataGaLocation":836},"/topics/devsecops/","devsecops",{"text":939,"config":940},"Cloud Native",{"href":941,"dataGaName":942,"dataGaLocation":836},"/topics/cloud-native/","cloud native",{"text":944,"config":945},"AI for Coding",{"href":946,"dataGaName":947,"dataGaLocation":836},"/topics/devops/ai-for-coding/","ai for coding",{"text":949,"config":950},"Agentic AI",{"href":951,"dataGaName":952,"dataGaLocation":836},"/topics/agentic-ai/","agentic ai",{"title":954,"links":955},"Solutions",[956,958,960,965,969,972,976,979,981,984,987,992],{"text":486,"config":957},{"href":481,"dataGaName":486,"dataGaLocation":836},{"text":475,"config":959},{"href":458,"dataGaName":459,"dataGaLocation":836},{"text":961,"config":962},"Agile development",{"href":963,"dataGaName":964,"dataGaLocation":836},"/solutions/agile-delivery/","agile delivery",{"text":966,"config":967},"SCM",{"href":471,"dataGaName":968,"dataGaLocation":836},"source code management",{"text":914,"config":970},{"href":464,"dataGaName":971,"dataGaLocation":836},"continuous integration & delivery",{"text":973,"config":974},"Value stream management",{"href":514,"dataGaName":975,"dataGaLocation":836},"value stream management",{"text":919,"config":977},{"href":978,"dataGaName":922,"dataGaLocation":836},"/solutions/gitops/",{"text":524,"config":980},{"href":527,"dataGaName":528,"dataGaLocation":836},{"text":982,"config":983},"Small business",{"href":533,"dataGaName":534,"dataGaLocation":836},{"text":985,"config":986},"Public sector",{"href":539,"dataGaName":540,"dataGaLocation":836},{"text":988,"config":989},"Education",{"href":990,"dataGaName":991,"dataGaLocation":836},"/solutions/education/","education",{"text":993,"config":994},"Financial services",{"href":995,"dataGaName":996,"dataGaLocation":836},"/solutions/finance/","financial services",{"title":547,"links":998},[999,1001,1003,1005,1008,1010,1013,1015,1017,1019,1021,1023,1025,1027],{"text":560,"config":1000},{"href":562,"dataGaName":563,"dataGaLocation":836},{"text":565,"config":1002},{"href":567,"dataGaName":568,"dataGaLocation":836},{"text":570,"config":1004},{"href":572,"dataGaName":573,"dataGaLocation":836},{"text":575,"config":1006},{"href":577,"dataGaName":1007,"dataGaLocation":836},"docs",{"text":598,"config":1009},{"href":600,"dataGaName":601,"dataGaLocation":836},{"text":1011,"config":1012},"What's new",{"href":658,"dataGaName":659,"dataGaLocation":836},{"text":593,"config":1014},{"href":595,"dataGaName":596,"dataGaLocation":836},{"text":612,"config":1016},{"href":614,"dataGaName":615,"dataGaLocation":836},{"text":620,"config":1018},{"href":622,"dataGaName":623,"dataGaLocation":836},{"text":625,"config":1020},{"href":627,"dataGaName":628,"dataGaLocation":836},{"text":630,"config":1022},{"href":632,"dataGaName":633,"dataGaLocation":836},{"text":635,"config":1024},{"href":637,"dataGaName":638,"dataGaLocation":836},{"text":640,"config":1026},{"href":642,"dataGaName":643,"dataGaLocation":836},{"text":645,"config":1028},{"href":647,"dataGaName":648,"dataGaLocation":836},{"title":661,"links":1030},[1031,1033,1035,1037,1039,1041,1045,1050,1052,1054,1056],{"text":669,"config":1032},{"href":671,"dataGaName":663,"dataGaLocation":836},{"text":674,"config":1034},{"href":676,"dataGaName":677,"dataGaLocation":836},{"text":682,"config":1036},{"href":684,"dataGaName":685,"dataGaLocation":836},{"text":687,"config":1038},{"href":689,"dataGaName":690,"dataGaLocation":836},{"text":692,"config":1040},{"href":694,"dataGaName":695,"dataGaLocation":836},{"text":1042,"config":1043},"Sustainability",{"href":1044,"dataGaName":1042,"dataGaLocation":836},"/sustainability/",{"text":1046,"config":1047},"Diversity, inclusion and belonging (DIB)",{"href":1048,"dataGaName":1049,"dataGaLocation":836},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":697,"config":1051},{"href":699,"dataGaName":700,"dataGaLocation":836},{"text":707,"config":1053},{"href":709,"dataGaName":710,"dataGaLocation":836},{"text":712,"config":1055},{"href":714,"dataGaName":715,"dataGaLocation":836},{"text":1057,"config":1058},"Modern Slavery Transparency Statement",{"href":1059,"dataGaName":1060,"dataGaLocation":836},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1062},[1063,1066,1069],{"text":1064,"config":1065},"Terms",{"href":888,"dataGaName":889,"dataGaLocation":836},{"text":1067,"config":1068},"Cookies",{"dataGaName":898,"dataGaLocation":836,"id":899,"isOneTrustButton":371},{"text":1070,"config":1071},"Privacy",{"href":893,"dataGaName":894,"dataGaLocation":836},[1073],{"id":1074,"title":7,"body":370,"config":1075,"content":1077,"description":370,"extension":1081,"meta":1082,"navigation":371,"path":1083,"seo":1084,"stem":1085,"__hash__":1086},"blogAuthors/en-us/blog/authors/sacha-guyon.yml",{"template":1076},"BlogAuthor",{"name":7,"config":1078},{"headshot":1079,"ctfId":1080},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664566/Blog/Author%20Headshots/sacha_guyon_headshot.png","24pBtwb7WTU9fJB9qfqJYu","yml",{},"/en-us/blog/authors/sacha-guyon",{},"en-us/blog/authors/sacha-guyon","ArrkSOttSU6u8-HHVl-cuDbowVMAdckhtczK3HErflo",[1088,1094,1098],{"title":1089,"description":1090,"heroImage":1091,"category":366,"date":1092,"authors":370,"slug":370,"externalUrl":1093},"GitLab Patch Release: 19.2.2, 19.1.4, 19.0.6","Learn about this latest patch release for Community Edition and Enterprise Edition.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661926/Blog/Hero%20Images/security-patch-blog-image-r2-0506-700x400-fy25_2x.jpg","2026-08-12","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-2-released/",{"title":1095,"description":1090,"heroImage":1091,"category":366,"date":1096,"authors":370,"slug":370,"externalUrl":1097}," GitLab Patch Release: 19.2.1, 19.1.3, 19.0.5","2026-07-29","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-1-released/",{"title":1099,"description":1100,"heroImage":1101,"category":366,"date":1102,"authors":1103,"slug":1105,"externalUrl":370},"Automate work item assignment with a \"Work item created\" trigger","Our step-by-step guide walks through this AI capability, which enables instant, scalable triage without manual intervention.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-07-20",[1104],"Cesar Saavedra","how-to-use-a-work-item-created-trigger",{"promotions":1107},[1108,1122,1133,1145],{"id":1109,"categories":1110,"header":1112,"text":1113,"button":1114,"image":1119},"ai-modernization",[1111],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1115,"config":1116},"Get your AI maturity score",{"href":1117,"dataGaName":1118,"dataGaLocation":601},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1120},{"src":1121},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1123,"categories":1124,"header":1125,"text":1113,"button":1126,"image":1130},"devops-modernization",[366,937],"Are you just managing tools or shipping innovation?",{"text":1127,"config":1128},"Get your DevOps maturity score",{"href":1129,"dataGaName":1118,"dataGaLocation":601},"/assessments/devops-modernization-assessment/",{"config":1131},{"src":1132},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1134,"categories":1135,"header":1137,"text":1113,"button":1138,"image":1142},"security-modernization",[1136],"security","Are you trading speed for security?",{"text":1139,"config":1140},"Get your security maturity score",{"href":1141,"dataGaName":1118,"dataGaLocation":601},"/assessments/security-modernization-assessment/",{"config":1143},{"src":1144},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1146,"paths":1147,"header":1150,"text":1151,"button":1152,"image":1157},"github-azure-migration",[1148,1149],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1153,"config":1154},"See how GitLab compares to GitHub",{"href":1155,"dataGaName":1156,"dataGaLocation":601},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1158},{"src":1132},{"header":1160,"blurb":1161,"button":1162,"secondaryButton":1167},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1163,"config":1164},"Get your free trial",{"href":1165,"dataGaName":400,"dataGaLocation":1166},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":874,"config":1168},{"href":726,"dataGaName":405,"dataGaLocation":1166},1786803771637]