[{"data":1,"prerenderedAt":1822},["ShallowReactive",2],{"/blog/docker-hub-rate-limit-monitoring":3,"navigation-en-us":1039,"banner-en-us":1465,"footer-en-us":1475,"blog-post-authors-en-us-Michael Friedrich":1717,"blog-related-posts-en-us-docker-hub-rate-limit-monitoring":1732,"blog-promotions-en-us":1758,"next-steps-en-us":1812},{"id":4,"title":5,"authors":6,"body":8,"category":1016,"date":1017,"description":1018,"extension":1019,"externalUrl":1020,"faq":1020,"featured":1021,"heroImage":1022,"meta":1023,"navigation":167,"path":1024,"seo":1025,"slug":1029,"stem":1030,"tags":1031,"template":1037,"updatedDate":1020,"__hash__":1038},"blogPosts/en-us/blog/docker-hub-rate-limit-monitoring.md","How to make Docker Hub rate limit monitoring a breeze",[7],"Michael Friedrich",{"type":9,"value":10,"toc":1008},"minimark",[11,31,36,57,60,63,68,86,93,115,118,180,201,236,251,259,265,269,272,298,307,331,340,345,365,562,569,646,668,742,756,827,837,841,860,866,885,894,926,933,940,943,947,950,964,967,990,1004],[12,13,14,15,20,21,25,26,30],"p",{},"When we learned about the ",[16,17,19],"a",{"href":18},"/blog/mitigating-the-impact-of-docker-hub-pull-requests-limits/","Docker Hub Rate Limit",", we thought about ways to mitigate and analyse the new situation. Container images are widely used and adopted for sandbox environments in ",[16,22,24],{"href":23},"/solutions/continuous-integration/","CI/CD pipelines"," and cloud-native production environments with app deployment in ",[16,27,29],{"href":28},"/solutions/kubernetes/","Kubernetes clusters",".",[32,33,35],"h2",{"id":34},"what-is-meant-by-docker-hub-limits","What is meant by Docker Hub limits?",[12,37,38,39,43,44,47,48,52,53,56],{},"Each ",[40,41,42],"code",{},"docker pull"," request toward the central ",[40,45,46],{},"hub.docker.com"," container registry is being counted. When a defined limit is reached, future requests are blocked and might be delayed into the next free window. ",[16,49,51],{"href":50},"/topics/ci-cd/","CI/CD"," jobs cannot be executed anymore after receiving a HTTP error ",[40,54,55],{},"429 - too many requests"," and similar errors will be seen in production deployment logs for Kubernetes.",[12,58,59],{},"Docker defines this limit with 100 anonymous requests every six hours for the client's source IP address. If you have multiple container deployments behind an IP address, for example a company DMZ using a NAT, this limit can be reached very fast. A similar problem happens with watchtower tools which try to keep your container images updated, for example on your self-managed GitLab Runner. The limit can be raised by logging in, and by getting a paid subscription.",[12,61,62],{},"The question is: Where can you see the current limit and the remaining pull requests?",[64,65,67],"h3",{"id":66},"how-to-check-the-docker-hub-request-limit","How to check the Docker Hub request limit?",[12,69,70,71,76,77,80,81,30],{},"The ",[16,72,75],{"href":73,"rel":74},"https://docs.docker.com/docker-hub/download-rate-limit/#how-can-i-check-my-current-rate",[],"Docker documentation"," suggests to use CLI commands which invoke ",[40,78,79],{},"curl"," HTTP requests against the Docker Hub registry and parse the JSON response with ",[16,82,85],{"href":83,"rel":84},"https://stedolan.github.io/jq/",[],"jq",[12,87,88,89,92],{},"Define the ",[40,90,91],{},"IMAGE"," variable once for the following CLI commands to use:",[94,95,100],"pre",{"className":96,"code":97,"language":98,"meta":99,"style":99},"language-shell shiki shiki-themes github-light","$ IMAGE=\"ratelimitpreview/test\"\n","shell","",[40,101,102],{"__ignoreMap":99},[103,104,107,111],"span",{"class":105,"line":106},"line",1,[103,108,110],{"class":109},"s7eDp","$",[103,112,114],{"class":113},"sYBdl"," IMAGE=\"ratelimitpreview/test\"\n",[12,116,117],{},"Obtain a token for authorization. Optionally print the variable value to verify its content.",[94,119,121],{"className":96,"code":120,"language":98,"meta":99,"style":99},"$ TOKEN=$(curl \"https://auth.docker.io/token?service=registry.docker.io&scope=repository:$IMAGE:pull\" | jq -r .token)\n\n$ echo $TOKEN\n",[40,122,123,162,169],{"__ignoreMap":99},[103,124,125,127,130,134,136,139,142,145,149,152,156,159],{"class":105,"line":106},[103,126,110],{"class":109},[103,128,129],{"class":113}," TOKEN=",[103,131,133],{"class":132},"sgsFI","$(",[103,135,79],{"class":109},[103,137,138],{"class":113}," \"https://auth.docker.io/token?service=registry.docker.io&scope=repository:",[103,140,141],{"class":132},"$IMAGE",[103,143,144],{"class":113},":pull\"",[103,146,148],{"class":147},"sD7c4"," |",[103,150,151],{"class":109}," jq",[103,153,155],{"class":154},"sYu0t"," -r",[103,157,158],{"class":113}," .token",[103,160,161],{"class":132},")\n",[103,163,165],{"class":105,"line":164},2,[103,166,168],{"emptyLinePlaceholder":167},true,"\n",[103,170,172,174,177],{"class":105,"line":171},3,[103,173,110],{"class":109},[103,175,176],{"class":113}," echo",[103,178,179],{"class":132}," $TOKEN\n",[12,181,182,183,185,186,189,190,193,194,197,198,30],{},"The next step is to simulate a ",[40,184,42],{}," request. Instead of using ",[40,187,188],{},"GET"," as HTTP request method, a ",[40,191,192],{},"HEAD"," request is sent which does not count toward the rate limit. The response headers contain the keys ",[40,195,196],{},"RateLimit-Limit"," and ",[40,199,200],{},"RateLimit-Remaining",[94,202,204],{"className":96,"code":203,"language":98,"meta":99,"style":99},"$ curl --head -H \"Authorization: Bearer $TOKEN\" https://registry-1.docker.io/v2/$IMAGE/manifests/latest\n",[40,205,206],{"__ignoreMap":99},[103,207,208,210,213,216,219,222,225,228,231,233],{"class":105,"line":106},[103,209,110],{"class":109},[103,211,212],{"class":113}," curl",[103,214,215],{"class":154}," --head",[103,217,218],{"class":154}," -H",[103,220,221],{"class":113}," \"Authorization: Bearer ",[103,223,224],{"class":132},"$TOKEN",[103,226,227],{"class":113},"\"",[103,229,230],{"class":113}," https://registry-1.docker.io/v2/",[103,232,141],{"class":132},[103,234,235],{"class":113},"/manifests/latest\n",[12,237,238,239,242,243,246,247,250],{},"The limit in the example is ",[40,240,241],{},"2500"," with remaining ",[40,244,245],{},"2495"," pull requests. ",[40,248,249],{},"21600"," defines the limit time window as six hours.",[94,252,257],{"className":253,"code":255,"language":256,"meta":99},[254],"language-text","RateLimit-Limit: 2500;w=21600\nRateLimit-Remaining: 2495;w=21600\n","text",[40,258,255],{"__ignoreMap":99},[12,260,261,264],{},[40,262,263],{},"RateLimit-Reset"," can be returned too, this will be the remaining time until the limits are reset.",[64,266,268],{"id":267},"create-a-monitoring-script","Create a monitoring script",[12,270,271],{},"The CLI commands can be turned into a programming language of your choice which provides methods for HTTP requests and better response parsing. The algorithm needs to follow these steps:",[273,274,275,279,288,295],"ul",{},[276,277,278],"li",{},"Obtain an authorization token from Docker Hub. Username/password credentials can be optionally provided, otherwise the request happens anonymously.",[276,280,281,282,284,285,287],{},"Send a ",[40,283,192],{}," request to the Docker Hub registry and simulate a ",[40,286,42],{}," request",[276,289,290,291,197,293],{},"Parse the response headers and extract the values for ",[40,292,196],{},[40,294,200],{},[276,296,297],{},"Print a summary of the received values",[12,299,300,301,306],{},"A plugin script which can be used by Nagios/Icinga/Sensu/Zabbix and others has additional requirements. It needs to implement the ",[16,302,305],{"href":303,"rel":304},"https://www.monitoring-plugins.org/doc/guidelines.html",[],"Monitoring Plugins API specification",":",[273,308,309,312,315,321,324],{},[276,310,311],{},"Print the limit and remaining count",[276,313,314],{},"Calculate a state: Ok, Warning, Critical, Unknown and print a helpful text on the shell",[276,316,317,318],{},"Add optional warning/critical thresholds for the remaining count. Whenever the count is lower than the threshold, the state changes to Warning/Critical and the exit code changes: ",[40,319,320],{},"OK=0, Warning=1, Critical=2, Unknown=3",[276,322,323],{},"Collect limit values as performance metrics for graphing and visualization",[276,325,326,327,330],{},"Add verbose mode and timeout parameters as plugin development best practices. If Docker Hub does not respond within 10 seconds as default, the plugin exits and returns ",[40,328,329],{},"Unknown"," as state.",[12,332,333,334,339],{},"You can download the ",[16,335,338],{"href":336,"rel":337},"https://gitlab.com/gitlab-com/marketing/corporate_marketing/developer-evangelism/code/check-docker-hub-limit",[],"check_docker_hub_limit.py plugin script"," and integrate it into your monitoring environment.",[341,342,344],"h4",{"id":343},"use-the-monitoring-plugin-script","Use the monitoring plugin script",[12,346,70,347,350,351,354,355,360,361,364],{},[16,348,338],{"href":336,"rel":349},[]," plugin is written in Python 3 and requires the ",[40,352,353],{},"requests"," library. Follow the ",[16,356,359],{"href":357,"rel":358},"https://gitlab.com/gitlab-com/marketing/corporate_marketing/developer-evangelism/code/check-docker-hub-limit#installation",[],"installation instructions"," and run the plugin script with the ",[40,362,363],{},"--help"," parameter to see all available options:",[94,366,368],{"className":96,"code":367,"language":98,"meta":99,"style":99},"$ python check_docker_hub_limit.py --help\n\nusage: check_docker_hub_limit.py [-h] [-w WARNING] [-c CRITICAL] [-v] [-t TIMEOUT]\n\nVersion: 2.0.0\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -w WARNING, --warning WARNING\n                        warning threshold for remaining\n  -c CRITICAL, --critical CRITICAL\n                        critical threshold for remaining\n  -v, --verbose         increase output verbosity\n  -t TIMEOUT, --timeout TIMEOUT\n                        Timeout in seconds (default 10s)\n",[40,369,370,383,387,397,402,411,416,425,452,467,482,497,509,527,542],{"__ignoreMap":99},[103,371,372,374,377,380],{"class":105,"line":106},[103,373,110],{"class":109},[103,375,376],{"class":113}," python",[103,378,379],{"class":113}," check_docker_hub_limit.py",[103,381,382],{"class":154}," --help\n",[103,384,385],{"class":105,"line":164},[103,386,168],{"emptyLinePlaceholder":167},[103,388,389,392,394],{"class":105,"line":171},[103,390,391],{"class":109},"usage:",[103,393,379],{"class":113},[103,395,396],{"class":132}," [-h] [-w WARNING] [-c CRITICAL] [-v] [-t TIMEOUT]\n",[103,398,400],{"class":105,"line":399},4,[103,401,168],{"emptyLinePlaceholder":167},[103,403,405,408],{"class":105,"line":404},5,[103,406,407],{"class":109},"Version:",[103,409,410],{"class":154}," 2.0.0\n",[103,412,414],{"class":105,"line":413},6,[103,415,168],{"emptyLinePlaceholder":167},[103,417,419,422],{"class":105,"line":418},7,[103,420,421],{"class":109},"optional",[103,423,424],{"class":113}," arguments:\n",[103,426,428,431,434,437,440,443,446,449],{"class":105,"line":427},8,[103,429,430],{"class":109},"  -h,",[103,432,433],{"class":154}," --help",[103,435,436],{"class":113},"            show",[103,438,439],{"class":113}," this",[103,441,442],{"class":113}," help",[103,444,445],{"class":113}," message",[103,447,448],{"class":113}," and",[103,450,451],{"class":113}," exit\n",[103,453,455,458,461,464],{"class":105,"line":454},9,[103,456,457],{"class":109},"  -w",[103,459,460],{"class":113}," WARNING,",[103,462,463],{"class":154}," --warning",[103,465,466],{"class":113}," WARNING\n",[103,468,470,473,476,479],{"class":105,"line":469},10,[103,471,472],{"class":109},"                        warning",[103,474,475],{"class":113}," threshold",[103,477,478],{"class":113}," for",[103,480,481],{"class":113}," remaining\n",[103,483,485,488,491,494],{"class":105,"line":484},11,[103,486,487],{"class":109},"  -c",[103,489,490],{"class":113}," CRITICAL,",[103,492,493],{"class":154}," --critical",[103,495,496],{"class":113}," CRITICAL\n",[103,498,500,503,505,507],{"class":105,"line":499},12,[103,501,502],{"class":109},"                        critical",[103,504,475],{"class":113},[103,506,478],{"class":113},[103,508,481],{"class":113},[103,510,512,515,518,521,524],{"class":105,"line":511},13,[103,513,514],{"class":109},"  -v,",[103,516,517],{"class":154}," --verbose",[103,519,520],{"class":113},"         increase",[103,522,523],{"class":113}," output",[103,525,526],{"class":113}," verbosity\n",[103,528,530,533,536,539],{"class":105,"line":529},14,[103,531,532],{"class":109},"  -t",[103,534,535],{"class":113}," TIMEOUT,",[103,537,538],{"class":154}," --timeout",[103,540,541],{"class":113}," TIMEOUT\n",[103,543,545,548,551,554,557,560],{"class":105,"line":544},15,[103,546,547],{"class":109},"                        Timeout",[103,549,550],{"class":113}," in",[103,552,553],{"class":113}," seconds",[103,555,556],{"class":132}," (default ",[103,558,559],{"class":113},"10s",[103,561,161],{"class":132},[12,563,564,565,568],{},"Run the script to fetch the current remaining count. The plugin script exit code returns ",[40,566,567],{},"0"," being OK.",[94,570,572],{"className":96,"code":571,"language":98,"meta":99,"style":99},"$ python3 check_docker_hub_limit.py\nOK - Docker Hub: Limit is 5000 remaining 4997|'limit'=5000 'remaining'=4997\n\n$ echo $?\n0\n",[40,573,574,584,628,632,641],{"__ignoreMap":99},[103,575,576,578,581],{"class":105,"line":106},[103,577,110],{"class":109},[103,579,580],{"class":113}," python3",[103,582,583],{"class":113}," check_docker_hub_limit.py\n",[103,585,586,589,592,595,598,601,604,607,610,613,616,619,622,625],{"class":105,"line":164},[103,587,588],{"class":109},"OK",[103,590,591],{"class":113}," -",[103,593,594],{"class":113}," Docker",[103,596,597],{"class":113}," Hub:",[103,599,600],{"class":113}," Limit",[103,602,603],{"class":113}," is",[103,605,606],{"class":154}," 5000",[103,608,609],{"class":113}," remaining",[103,611,612],{"class":154}," 4997",[103,614,615],{"class":147},"|",[103,617,618],{"class":109},"'limit'",[103,620,621],{"class":113},"=5000",[103,623,624],{"class":113}," 'remaining'=",[103,626,627],{"class":154},"4997\n",[103,629,630],{"class":105,"line":171},[103,631,168],{"emptyLinePlaceholder":167},[103,633,634,636,638],{"class":105,"line":399},[103,635,110],{"class":109},[103,637,176],{"class":113},[103,639,640],{"class":154}," $?\n",[103,642,643],{"class":105,"line":404},[103,644,645],{"class":109},"0\n",[12,647,648,649,652,653,656,657,660,661,664,665,30],{},"Specify the warning threshold with ",[40,650,651],{},"10000"," pulls, and the critical threshold with ",[40,654,655],{},"3000",".\nThe example shows how the state changes to ",[40,658,659],{},"WARNING"," with a current count of ",[40,662,663],{},"4999"," remaining\npull requests. The plugin script exit code changes to ",[40,666,667],{},"1",[94,669,671],{"className":96,"code":670,"language":98,"meta":99,"style":99},"$ python3 check_docker_hub_limit.py -w 10000 -c 3000\nWARNING - Docker Hub: Limit is 5000 remaining 4999|'limit'=5000 'remaining'=4999\n\n$ echo $?\n1\n",[40,672,673,693,725,729,737],{"__ignoreMap":99},[103,674,675,677,679,681,684,687,690],{"class":105,"line":106},[103,676,110],{"class":109},[103,678,580],{"class":113},[103,680,379],{"class":113},[103,682,683],{"class":154}," -w",[103,685,686],{"class":154}," 10000",[103,688,689],{"class":154}," -c",[103,691,692],{"class":154}," 3000\n",[103,694,695,697,699,701,703,705,707,709,711,714,716,718,720,722],{"class":105,"line":164},[103,696,659],{"class":109},[103,698,591],{"class":113},[103,700,594],{"class":113},[103,702,597],{"class":113},[103,704,600],{"class":113},[103,706,603],{"class":113},[103,708,606],{"class":154},[103,710,609],{"class":113},[103,712,713],{"class":154}," 4999",[103,715,615],{"class":147},[103,717,618],{"class":109},[103,719,621],{"class":113},[103,721,624],{"class":113},[103,723,724],{"class":154},"4999\n",[103,726,727],{"class":105,"line":171},[103,728,168],{"emptyLinePlaceholder":167},[103,730,731,733,735],{"class":105,"line":399},[103,732,110],{"class":109},[103,734,176],{"class":113},[103,736,640],{"class":154},[103,738,739],{"class":105,"line":404},[103,740,741],{"class":109},"1\n",[12,743,744,745,748,749,752,753,30],{},"Specify a higher critical threshold with ",[40,746,747],{},"5000",". When the remaining count goes below this value,\nthe plugin script returns ",[40,750,751],{},"CRITICAL"," and changes the exit state into ",[40,754,755],{},"2",[94,757,759],{"className":96,"code":758,"language":98,"meta":99,"style":99},"$ python3 check_docker_hub_limit.py -w 10000 -c 5000\nCRITICAL - Docker Hub: Limit is 5000 remaining 4998|'limit'=5000 'remaining'=4998\n\n$ echo $?\n2\n",[40,760,761,778,810,814,822],{"__ignoreMap":99},[103,762,763,765,767,769,771,773,775],{"class":105,"line":106},[103,764,110],{"class":109},[103,766,580],{"class":113},[103,768,379],{"class":113},[103,770,683],{"class":154},[103,772,686],{"class":154},[103,774,689],{"class":154},[103,776,777],{"class":154}," 5000\n",[103,779,780,782,784,786,788,790,792,794,796,799,801,803,805,807],{"class":105,"line":164},[103,781,751],{"class":109},[103,783,591],{"class":113},[103,785,594],{"class":113},[103,787,597],{"class":113},[103,789,600],{"class":113},[103,791,603],{"class":113},[103,793,606],{"class":154},[103,795,609],{"class":113},[103,797,798],{"class":154}," 4998",[103,800,615],{"class":147},[103,802,618],{"class":109},[103,804,621],{"class":113},[103,806,624],{"class":113},[103,808,809],{"class":154},"4998\n",[103,811,812],{"class":105,"line":171},[103,813,168],{"emptyLinePlaceholder":167},[103,815,816,818,820],{"class":105,"line":399},[103,817,110],{"class":109},[103,819,176],{"class":113},[103,821,640],{"class":154},[103,823,824],{"class":105,"line":404},[103,825,826],{"class":109},"2\n",[12,828,829,830,833,834,30],{},"When a timeout is reached, or another error is thrown, the exit state switches to ",[40,831,832],{},"3"," and the output state becomes ",[40,835,836],{},"UNKNOWN",[64,838,840],{"id":839},"use-a-prometheus-exporter-for-rate-limit-metrics","Use a Prometheus exporter for rate limit metrics",[12,842,843,848,849,854,855,30],{},[16,844,847],{"href":845,"rel":846},"https://prometheus.io/",[],"Prometheus"," scrapes metrics from HTTP endpoints. There is a variety of exporters for Prometheus to monitor host systems, HTTP endpoints, containers, databases, etc. Prometheus provides ",[16,850,853],{"href":851,"rel":852},"https://prometheus.io/docs/instrumenting/clientlibs/",[],"client libraries"," to make it easier to start writing your own custom exporter. The metrics need to be exported in a ",[16,856,859],{"href":857,"rel":858},"https://prometheus.io/docs/instrumenting/exposition_formats/",[],"defined format",[12,861,862,863,865],{},"The Docker Hub limit values can be fetched with obtaining an authorization token first, and then sending a ",[40,864,192],{}," request shown above. The code algorithm follows the ideas of the monitoring plugin. Instead of printing the values onto the shell, the metric values are exposed with an HTTP server. The Prometheus client libraries provide this functionality built-in.",[12,867,868,869,874,875,880,881,884],{},"We have created a ",[16,870,873],{"href":871,"rel":872},"https://gitlab.com/gitlab-com/marketing/corporate_marketing/developer-evangelism/code/docker-hub-limit-exporter",[],"Prometheus Exporter for Docker Hub Rate Limits"," using the ",[16,876,879],{"href":877,"rel":878},"https://github.com/prometheus/client_python",[],"Python client library",". The repository provides a demo environment with ",[40,882,883],{},"docker-compose"," which starts the exporter, Prometheus and Grafana.",[12,886,887,888,893],{},"Ensure that ",[16,889,892],{"href":890,"rel":891},"https://docs.docker.com/compose/install/",[],"docker-compose is installed"," and clone/download the repository. Then run the following commands:",[94,895,897],{"className":96,"code":896,"language":98,"meta":99,"style":99},"$ cd example/docker-compose\n\n$ docker-compose up -d\n",[40,898,899,909,913],{"__ignoreMap":99},[103,900,901,903,906],{"class":105,"line":106},[103,902,110],{"class":109},[103,904,905],{"class":113}," cd",[103,907,908],{"class":113}," example/docker-compose\n",[103,910,911],{"class":105,"line":164},[103,912,168],{"emptyLinePlaceholder":167},[103,914,915,917,920,923],{"class":105,"line":171},[103,916,110],{"class":109},[103,918,919],{"class":113}," docker-compose",[103,921,922],{"class":113}," up",[103,924,925],{"class":154}," -d\n",[12,927,928,929,932],{},"Navigate to ",[40,930,931],{},"http://localhost:3030"," to access Grafana and explore the demo environment with the pre-built dashboard.",[12,934,935],{},[936,937],"img",{"alt":938,"src":939},"Grafana dashboard for Docker Hub Limit Prometheus Exporter","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398193/blog/Content%20Images/docker-hub-limit-monitoring/grafana_prometheus_docker_hub_limit_exporter_demo.png",[12,941,942],{},"Grafana dashboard for Docker Hub Limits",[64,944,946],{"id":945},"more-monitoringobservability-ideas","More monitoring/observability ideas",[12,948,949],{},"Use the steps explained in this blog post to add Docker Hub limit monitoring. Evaluate the Prometheus exporter or the check plugin, or create your own monitoring scripts. Fork the repositories and send a MR our way!",[273,951,952,958],{},[276,953,954],{},[16,955,957],{"href":336,"rel":956},[],"check-docker-hub-limit for Nagios/Icinga/Zabbix/Sensu",[276,959,960],{},[16,961,963],{"href":871,"rel":962},[],"docker-hub-limit-exporter for Prometheus",[12,965,966],{},"The Prometheus exporter and the monitoring plugin script can help to see trends and calculate usage over time. Use your own local (GitLab) container registry or one of the available caching methods described in these blog posts:",[273,968,969,975,982],{},[276,970,971,974],{},[16,972,973],{"href":18},"Cache Docker images in your CI/CD infrastructure",". Use this resource for possible solutions around caching and proxying.",[276,976,977,981],{},[16,978,980],{"href":979},"/blog/minor-breaking-change-dependency-proxy/","Use the Dependency Proxy",". Learn more about the GitLab Dependency Proxy being made open source in the future.",[276,983,984,989],{},[16,985,988],{"href":986,"rel":987},"https://everyonecancontribute.com/post/2020-11-04-cafe-7-docker-hub-rate-limit-monitoring/",[],"#everyonecancontribute cafe: Docker Hub Rate Limit: Mitigation, Caching and Monitoring",". This is a community meetup hosted by Developer Evangelists at GitLab. The blog post includes a video with more insights and discussion.",[12,991,992,993,998,999,30],{},"Photo by ",[16,994,997],{"href":995,"rel":996},"https://unsplash.com/@vidarnm",[],"Vidar Nordli-Mathisen"," from ",[16,1000,1003],{"href":1001,"rel":1002},"https://www.unsplash.com",[],"Unsplash",[1005,1006,1007],"style",{},"html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sD7c4, html code.shiki .sD7c4{--shiki-default:#D73A49}html pre.shiki code .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}",{"title":99,"searchDepth":164,"depth":164,"links":1009},[1010],{"id":34,"depth":164,"text":35,"children":1011},[1012,1013,1014,1015],{"id":66,"depth":171,"text":67},{"id":267,"depth":171,"text":268},{"id":839,"depth":171,"text":840},{"id":945,"depth":171,"text":946},"engineering","2020-11-18","Docker Hub Rate Limits are enforced and we need to find ways to monitor the remaining pull requests. Explore some ways to create a monitoring plugin for Nagios/Icinga/Sensu/Zabbix and test-drive a new Prometheus exporter in combination with Grafana.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681749/Blog/Hero%20Images/vidarnm-unsplash.jpg",{},"/en-us/blog/docker-hub-rate-limit-monitoring",{"title":5,"description":1018,"ogTitle":5,"ogDescription":1018,"noIndex":1021,"ogImage":1022,"ogUrl":1026,"ogSiteName":1027,"ogType":1028,"canonicalUrls":1026},"https://about.gitlab.com/blog/docker-hub-rate-limit-monitoring","https://about.gitlab.com","article","docker-hub-rate-limit-monitoring","en-us/blog/docker-hub-rate-limit-monitoring",[1032,1033,1034,1035,1036],"cloud native","DevOps","kubernetes","open source","production","BlogPost","P9uh5hA6exc39vokndPUWr2FVSrcZM73cTWqSo2ePgY",{"logo":1040,"freeTrial":1045,"sales":1050,"login":1055,"items":1060,"search":1385,"minimal":1416,"duo":1435,"switchNav":1444,"pricingDeployment":1455},{"config":1041},{"href":1042,"dataGaName":1043,"dataGaLocation":1044},"/","gitlab logo","header",{"text":1046,"config":1047},"Get free trial",{"href":1048,"dataGaName":1049,"dataGaLocation":1044},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":1051,"config":1052},"Request a demo",{"href":1053,"dataGaName":1054,"dataGaLocation":1044},"/sales/?contact-topic=request-demo","sales",{"text":1056,"config":1057},"Sign in",{"href":1058,"dataGaName":1059,"dataGaLocation":1044},"https://gitlab.com/users/sign_in/","sign in",[1061,1090,1188,1193,1307,1363],{"text":1062,"config":1063,"menu":1065},"Platform",{"dataNavLevelOne":1064},"platform",{"type":1066,"columns":1067},"cards",[1068,1074,1082],{"title":1062,"description":1069,"link":1070},"The intelligent orchestration platform for DevSecOps",{"text":1071,"config":1072},"Explore our Platform",{"href":1073,"dataGaName":1064,"dataGaLocation":1044},"/platform/",{"title":1075,"description":1076,"link":1077},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":1078,"config":1079},"Meet GitLab Duo",{"href":1080,"dataGaName":1081,"dataGaLocation":1044},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":1083,"description":1084,"link":1085},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":1086,"config":1087},"Learn more",{"href":1088,"dataGaName":1089,"dataGaLocation":1044},"/why-gitlab/","why gitlab",{"text":1091,"left":167,"config":1092,"menu":1094},"Product",{"dataNavLevelOne":1093},"solutions",{"type":1095,"link":1096,"columns":1100,"feature":1167},"lists",{"text":1097,"config":1098},"View all Solutions",{"href":1099,"dataGaName":1093,"dataGaLocation":1044},"/solutions/",[1101,1123,1146],{"title":1102,"description":1103,"link":1104,"items":1109},"Automation","CI/CD and automation to accelerate deployment",{"config":1105},{"icon":1106,"href":1107,"dataGaName":1108,"dataGaLocation":1044},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[1110,1112,1115,1119],{"text":51,"config":1111},{"href":23,"dataGaLocation":1044,"dataGaName":51},{"text":1075,"config":1113},{"href":1080,"dataGaLocation":1044,"dataGaName":1114},"gitlab duo agent platform - product menu",{"text":1116,"config":1117},"Source Code Management",{"href":1118,"dataGaLocation":1044,"dataGaName":1116},"/solutions/source-code-management/",{"text":1120,"config":1121},"Automated Software Delivery",{"href":1107,"dataGaLocation":1044,"dataGaName":1122},"Automated software delivery",{"title":1124,"description":1125,"link":1126,"items":1131},"Security","Deliver code faster without compromising security",{"config":1127},{"href":1128,"dataGaName":1129,"dataGaLocation":1044,"icon":1130},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[1132,1136,1141],{"text":1133,"config":1134},"Application Security Testing",{"href":1128,"dataGaName":1135,"dataGaLocation":1044},"Application security testing",{"text":1137,"config":1138},"Software Supply Chain Security",{"href":1139,"dataGaLocation":1044,"dataGaName":1140},"/solutions/supply-chain/","Software supply chain security",{"text":1142,"config":1143},"Software Compliance",{"href":1144,"dataGaName":1145,"dataGaLocation":1044},"/solutions/software-compliance/","software compliance",{"title":1147,"link":1148,"items":1153},"Measurement",{"config":1149},{"icon":1150,"href":1151,"dataGaName":1152,"dataGaLocation":1044},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[1154,1158,1162],{"text":1155,"config":1156},"Visibility & Measurement",{"href":1151,"dataGaLocation":1044,"dataGaName":1157},"Visibility and Measurement",{"text":1159,"config":1160},"Value Stream Management",{"href":1161,"dataGaLocation":1044,"dataGaName":1159},"/solutions/value-stream-management/",{"text":1163,"config":1164},"Analytics & Insights",{"href":1165,"dataGaLocation":1044,"dataGaName":1166},"/solutions/analytics-and-insights/","Analytics and insights",{"title":1168,"type":1095,"items":1169},"GitLab for",[1170,1176,1182],{"text":1171,"config":1172},"Enterprise",{"icon":1173,"href":1174,"dataGaLocation":1044,"dataGaName":1175},"Building","/enterprise/","enterprise",{"text":1177,"config":1178},"Small Business",{"icon":1179,"href":1180,"dataGaLocation":1044,"dataGaName":1181},"Work","/small-business/","small business",{"text":1183,"config":1184},"Public Sector",{"icon":1185,"href":1186,"dataGaLocation":1044,"dataGaName":1187},"Organization","/solutions/public-sector/","public sector",{"text":1189,"config":1190},"Pricing",{"href":1191,"dataGaName":1192,"dataGaLocation":1044,"dataNavLevelOne":1192},"/pricing/","pricing",{"text":1194,"config":1195,"menu":1197},"Resources",{"dataNavLevelOne":1196},"resources",{"type":1095,"link":1198,"columns":1202,"feature":1296},{"text":1199,"config":1200},"View all resources",{"href":1201,"dataGaName":1196,"dataGaLocation":1044},"/resources/",[1203,1236,1263],{"title":1204,"items":1205},"Getting started",[1206,1211,1216,1221,1226,1231],{"text":1207,"config":1208},"Install",{"href":1209,"dataGaName":1210,"dataGaLocation":1044},"/install/","install",{"text":1212,"config":1213},"Quick start guides",{"href":1214,"dataGaName":1215,"dataGaLocation":1044},"/get-started/","quick setup checklists",{"text":1217,"config":1218},"Learn",{"href":1219,"dataGaLocation":1044,"dataGaName":1220},"https://university.gitlab.com/","learn",{"text":1222,"config":1223},"Product documentation",{"href":1224,"dataGaName":1225,"dataGaLocation":1044},"https://docs.gitlab.com/","product documentation",{"text":1227,"config":1228},"Best practice videos",{"href":1229,"dataGaName":1230,"dataGaLocation":1044},"/getting-started-videos/","best practice videos",{"text":1232,"config":1233},"Integrations",{"href":1234,"dataGaName":1235,"dataGaLocation":1044},"/integrations/","integrations",{"title":1237,"items":1238},"Discover",[1239,1244,1249,1254,1258],{"text":1240,"config":1241},"Customer success stories",{"href":1242,"dataGaName":1243,"dataGaLocation":1044},"/customers/","customer success stories",{"text":1245,"config":1246},"Blog",{"href":1247,"dataGaName":1248,"dataGaLocation":1044},"/blog/","blog",{"text":1250,"config":1251},"Demo Hub",{"href":1252,"dataGaName":1253,"dataGaLocation":1044},"/demo-hub/","demo hub",{"text":1255,"config":1256},"The Source",{"href":1257,"dataGaName":1248,"dataGaLocation":1044},"/the-source/",{"text":1259,"config":1260},"Remote",{"href":1261,"dataGaName":1262,"dataGaLocation":1044},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":1264,"items":1265},"Connect",[1266,1271,1276,1281,1286,1291],{"text":1267,"config":1268},"GitLab Services",{"href":1269,"dataGaName":1270,"dataGaLocation":1044},"/services/","services",{"text":1272,"config":1273},"Contribute",{"href":1274,"dataGaName":1275,"dataGaLocation":1044},"https://contributors.gitlab.com","contribute",{"text":1277,"config":1278},"Community",{"href":1279,"dataGaName":1280,"dataGaLocation":1044},"/community/","community",{"text":1282,"config":1283},"Forum",{"href":1284,"dataGaName":1285,"dataGaLocation":1044},"https://forum.gitlab.com/","forum",{"text":1287,"config":1288},"Events",{"href":1289,"dataGaName":1290,"dataGaLocation":1044},"/events/","events",{"text":1292,"config":1293},"Partners",{"href":1294,"dataGaName":1295,"dataGaLocation":1044},"/partners/","partners",{"config":1297,"title":1300,"text":1301,"link":1302},{"background":1298,"textColor":1299},"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":1303,"config":1304},"Read the latest",{"href":1305,"dataGaName":1306,"dataGaLocation":1044},"/whats-new/","whats new",{"text":1308,"config":1309,"menu":1311},"Company",{"dataNavLevelOne":1310},"company",{"type":1095,"columns":1312},[1313],{"items":1314},[1315,1320,1326,1328,1333,1338,1343,1348,1353,1358],{"text":1316,"config":1317},"About",{"href":1318,"dataGaName":1319,"dataGaLocation":1044},"/company/","about",{"text":1321,"config":1322,"footerGa":1325},"Jobs",{"href":1323,"dataGaName":1324,"dataGaLocation":1044},"/jobs/","jobs",{"dataGaName":1324},{"text":1287,"config":1327},{"href":1289,"dataGaName":1290,"dataGaLocation":1044},{"text":1329,"config":1330},"Leadership",{"href":1331,"dataGaName":1332,"dataGaLocation":1044},"/company/team/e-group/","leadership",{"text":1334,"config":1335},"Handbook",{"href":1336,"dataGaName":1337,"dataGaLocation":1044},"https://handbook.gitlab.com/","handbook",{"text":1339,"config":1340},"Investor relations",{"href":1341,"dataGaName":1342,"dataGaLocation":1044},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":1344,"config":1345},"Trust Center",{"href":1346,"dataGaName":1347,"dataGaLocation":1044},"/security/","trust center",{"text":1349,"config":1350},"AI Transparency Center",{"href":1351,"dataGaName":1352,"dataGaLocation":1044},"/ai-transparency-center/","ai transparency center",{"text":1354,"config":1355},"Newsletter",{"href":1356,"dataGaName":1357,"dataGaLocation":1044},"/company/contact/#contact-forms","newsletter",{"text":1359,"config":1360},"Press",{"href":1361,"dataGaName":1362,"dataGaLocation":1044},"/press/","press",{"text":1364,"config":1365,"menu":1366},"Contact us",{"dataNavLevelOne":1310},{"type":1095,"columns":1367},[1368],{"items":1369},[1370,1375,1380],{"text":1371,"config":1372},"Talk to sales",{"href":1373,"dataGaName":1374,"dataGaLocation":1044},"/sales/","talk to sales",{"text":1376,"config":1377},"Support portal",{"href":1378,"dataGaName":1379,"dataGaLocation":1044},"https://support.gitlab.com/hc/en-us","support portal",{"text":1381,"config":1382},"Customer portal",{"href":1383,"dataGaName":1384,"dataGaLocation":1044},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":1386,"login":1387,"suggestions":1394},"Close",{"text":1388,"link":1389},"To search repositories and projects, login to",{"text":1390,"config":1391},"gitlab.com",{"href":1058,"dataGaName":1392,"dataGaLocation":1393},"search login","search",{"text":1395,"default":1396},"Suggestions",[1397,1399,1403,1405,1409,1413],{"text":1075,"config":1398},{"href":1080,"dataGaName":1075,"dataGaLocation":1393},{"text":1400,"config":1401},"Code Suggestions (AI)",{"href":1402,"dataGaName":1400,"dataGaLocation":1393},"/solutions/code-suggestions/",{"text":51,"config":1404},{"href":23,"dataGaName":51,"dataGaLocation":1393},{"text":1406,"config":1407},"GitLab on AWS",{"href":1408,"dataGaName":1406,"dataGaLocation":1393},"/partners/technology-partners/aws/",{"text":1410,"config":1411},"GitLab on Google Cloud",{"href":1412,"dataGaName":1410,"dataGaLocation":1393},"/partners/technology-partners/google-cloud-platform/",{"text":1414,"config":1415},"Why GitLab?",{"href":1088,"dataGaName":1414,"dataGaLocation":1393},{"freeTrial":1417,"mobileIcon":1422,"desktopIcon":1427,"secondaryButton":1430},{"text":1418,"config":1419},"Start free trial",{"href":1420,"dataGaName":1049,"dataGaLocation":1421},"https://gitlab.com/-/trials/new/","nav",{"altText":1423,"config":1424},"Gitlab Icon",{"src":1425,"dataGaName":1426,"dataGaLocation":1421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":1423,"config":1428},{"src":1429,"dataGaName":1426,"dataGaLocation":1421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":1431,"config":1432},"Get Started",{"href":1433,"dataGaName":1434,"dataGaLocation":1421},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":1436,"mobileIcon":1440,"desktopIcon":1442},{"text":1437,"config":1438},"Learn more about GitLab Duo",{"href":1080,"dataGaName":1439,"dataGaLocation":1421},"gitlab duo",{"altText":1423,"config":1441},{"src":1425,"dataGaName":1426,"dataGaLocation":1421},{"altText":1423,"config":1443},{"src":1429,"dataGaName":1426,"dataGaLocation":1421},{"button":1445,"mobileIcon":1450,"desktopIcon":1452},{"text":1446,"config":1447},"/switch",{"href":1448,"dataGaName":1449,"dataGaLocation":1421},"#contact","switch",{"altText":1423,"config":1451},{"src":1425,"dataGaName":1426,"dataGaLocation":1421},{"altText":1423,"config":1453},{"src":1454,"dataGaName":1426,"dataGaLocation":1421},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":1456,"mobileIcon":1461,"desktopIcon":1463},{"text":1457,"config":1458},"Back to pricing",{"href":1191,"dataGaName":1459,"dataGaLocation":1421,"icon":1460},"back to pricing","GoBack",{"altText":1423,"config":1462},{"src":1425,"dataGaName":1426,"dataGaLocation":1421},{"altText":1423,"config":1464},{"src":1429,"dataGaName":1426,"dataGaLocation":1421},{"title":1466,"titleMobile":1467,"button":1468,"config":1473},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":1086,"config":1469},{"href":1470,"dataGaName":1471,"dataGaLocation":1472},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":1474,"disabled":1021},"release",{"data":1476},{"text":1477,"source":1478,"edit":1484,"contribute":1489,"config":1494,"items":1499,"minimal":1706},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":1479,"config":1480},"View page source",{"href":1481,"dataGaName":1482,"dataGaLocation":1483},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1485,"config":1486},"Edit this page",{"href":1487,"dataGaName":1488,"dataGaLocation":1483},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1490,"config":1491},"Please contribute",{"href":1492,"dataGaName":1493,"dataGaLocation":1483},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1495,"facebook":1496,"youtube":1497,"linkedin":1498},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1500,1547,1598,1642,1674],{"title":1189,"links":1501,"subMenu":1516},[1502,1506,1511],{"text":1503,"config":1504},"View plans",{"href":1191,"dataGaName":1505,"dataGaLocation":1483},"view plans",{"text":1507,"config":1508},"Why Premium?",{"href":1509,"dataGaName":1510,"dataGaLocation":1483},"/pricing/premium/","why premium",{"text":1512,"config":1513},"Why Ultimate?",{"href":1514,"dataGaName":1515,"dataGaLocation":1483},"/pricing/ultimate/","why ultimate",[1517],{"title":1518,"links":1519},"Contact Us",[1520,1523,1525,1527,1532,1537,1542],{"text":1521,"config":1522},"Contact sales",{"href":1373,"dataGaName":1054,"dataGaLocation":1483},{"text":1376,"config":1524},{"href":1378,"dataGaName":1379,"dataGaLocation":1483},{"text":1381,"config":1526},{"href":1383,"dataGaName":1384,"dataGaLocation":1483},{"text":1528,"config":1529},"Status",{"href":1530,"dataGaName":1531,"dataGaLocation":1483},"https://status.gitlab.com/","status",{"text":1533,"config":1534},"Terms of use",{"href":1535,"dataGaName":1536,"dataGaLocation":1483},"/terms/","terms of use",{"text":1538,"config":1539},"Privacy statement",{"href":1540,"dataGaName":1541,"dataGaLocation":1483},"/privacy/","privacy statement",{"text":1543,"config":1544},"Cookie preferences",{"dataGaName":1545,"dataGaLocation":1483,"id":1546,"isOneTrustButton":167},"cookie preferences","ot-sdk-btn",{"title":1091,"links":1548,"subMenu":1557},[1549,1553],{"text":1550,"config":1551},"DevSecOps platform",{"href":1073,"dataGaName":1552,"dataGaLocation":1483},"devsecops platform",{"text":1554,"config":1555},"AI-Assisted Development",{"href":1080,"dataGaName":1556,"dataGaLocation":1483},"ai-assisted development",[1558],{"title":1559,"links":1560},"Topics",[1561,1565,1570,1574,1579,1584,1588,1593],{"text":1562,"config":1563},"CICD",{"href":50,"dataGaName":1564,"dataGaLocation":1483},"cicd",{"text":1566,"config":1567},"GitOps",{"href":1568,"dataGaName":1569,"dataGaLocation":1483},"/topics/gitops/","gitops",{"text":1033,"config":1571},{"href":1572,"dataGaName":1573,"dataGaLocation":1483},"/topics/devops/","devops",{"text":1575,"config":1576},"Version Control",{"href":1577,"dataGaName":1578,"dataGaLocation":1483},"/topics/version-control/","version control",{"text":1580,"config":1581},"DevSecOps",{"href":1582,"dataGaName":1583,"dataGaLocation":1483},"/topics/devsecops/","devsecops",{"text":1585,"config":1586},"Cloud Native",{"href":1587,"dataGaName":1032,"dataGaLocation":1483},"/topics/cloud-native/",{"text":1589,"config":1590},"AI for Coding",{"href":1591,"dataGaName":1592,"dataGaLocation":1483},"/topics/devops/ai-for-coding/","ai for coding",{"text":1594,"config":1595},"Agentic AI",{"href":1596,"dataGaName":1597,"dataGaLocation":1483},"/topics/agentic-ai/","agentic ai",{"title":1599,"links":1600},"Solutions",[1601,1603,1605,1610,1614,1617,1621,1624,1626,1629,1632,1637],{"text":1133,"config":1602},{"href":1128,"dataGaName":1133,"dataGaLocation":1483},{"text":1122,"config":1604},{"href":1107,"dataGaName":1108,"dataGaLocation":1483},{"text":1606,"config":1607},"Agile development",{"href":1608,"dataGaName":1609,"dataGaLocation":1483},"/solutions/agile-delivery/","agile delivery",{"text":1611,"config":1612},"SCM",{"href":1118,"dataGaName":1613,"dataGaLocation":1483},"source code management",{"text":1562,"config":1615},{"href":23,"dataGaName":1616,"dataGaLocation":1483},"continuous integration & delivery",{"text":1618,"config":1619},"Value stream management",{"href":1161,"dataGaName":1620,"dataGaLocation":1483},"value stream management",{"text":1566,"config":1622},{"href":1623,"dataGaName":1569,"dataGaLocation":1483},"/solutions/gitops/",{"text":1171,"config":1625},{"href":1174,"dataGaName":1175,"dataGaLocation":1483},{"text":1627,"config":1628},"Small business",{"href":1180,"dataGaName":1181,"dataGaLocation":1483},{"text":1630,"config":1631},"Public sector",{"href":1186,"dataGaName":1187,"dataGaLocation":1483},{"text":1633,"config":1634},"Education",{"href":1635,"dataGaName":1636,"dataGaLocation":1483},"/solutions/education/","education",{"text":1638,"config":1639},"Financial services",{"href":1640,"dataGaName":1641,"dataGaLocation":1483},"/solutions/finance/","financial services",{"title":1194,"links":1643},[1644,1646,1648,1650,1653,1655,1658,1660,1662,1664,1666,1668,1670,1672],{"text":1207,"config":1645},{"href":1209,"dataGaName":1210,"dataGaLocation":1483},{"text":1212,"config":1647},{"href":1214,"dataGaName":1215,"dataGaLocation":1483},{"text":1217,"config":1649},{"href":1219,"dataGaName":1220,"dataGaLocation":1483},{"text":1222,"config":1651},{"href":1224,"dataGaName":1652,"dataGaLocation":1483},"docs",{"text":1245,"config":1654},{"href":1247,"dataGaName":1248,"dataGaLocation":1483},{"text":1656,"config":1657},"What's new",{"href":1305,"dataGaName":1306,"dataGaLocation":1483},{"text":1240,"config":1659},{"href":1242,"dataGaName":1243,"dataGaLocation":1483},{"text":1259,"config":1661},{"href":1261,"dataGaName":1262,"dataGaLocation":1483},{"text":1267,"config":1663},{"href":1269,"dataGaName":1270,"dataGaLocation":1483},{"text":1272,"config":1665},{"href":1274,"dataGaName":1275,"dataGaLocation":1483},{"text":1277,"config":1667},{"href":1279,"dataGaName":1280,"dataGaLocation":1483},{"text":1282,"config":1669},{"href":1284,"dataGaName":1285,"dataGaLocation":1483},{"text":1287,"config":1671},{"href":1289,"dataGaName":1290,"dataGaLocation":1483},{"text":1292,"config":1673},{"href":1294,"dataGaName":1295,"dataGaLocation":1483},{"title":1308,"links":1675},[1676,1678,1680,1682,1684,1686,1690,1695,1697,1699,1701],{"text":1316,"config":1677},{"href":1318,"dataGaName":1310,"dataGaLocation":1483},{"text":1321,"config":1679},{"href":1323,"dataGaName":1324,"dataGaLocation":1483},{"text":1329,"config":1681},{"href":1331,"dataGaName":1332,"dataGaLocation":1483},{"text":1334,"config":1683},{"href":1336,"dataGaName":1337,"dataGaLocation":1483},{"text":1339,"config":1685},{"href":1341,"dataGaName":1342,"dataGaLocation":1483},{"text":1687,"config":1688},"Sustainability",{"href":1689,"dataGaName":1687,"dataGaLocation":1483},"/sustainability/",{"text":1691,"config":1692},"Diversity, inclusion and belonging (DIB)",{"href":1693,"dataGaName":1694,"dataGaLocation":1483},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":1344,"config":1696},{"href":1346,"dataGaName":1347,"dataGaLocation":1483},{"text":1354,"config":1698},{"href":1356,"dataGaName":1357,"dataGaLocation":1483},{"text":1359,"config":1700},{"href":1361,"dataGaName":1362,"dataGaLocation":1483},{"text":1702,"config":1703},"Modern Slavery Transparency Statement",{"href":1704,"dataGaName":1705,"dataGaLocation":1483},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1707},[1708,1711,1714],{"text":1709,"config":1710},"Terms",{"href":1535,"dataGaName":1536,"dataGaLocation":1483},{"text":1712,"config":1713},"Cookies",{"dataGaName":1545,"dataGaLocation":1483,"id":1546,"isOneTrustButton":167},{"text":1715,"config":1716},"Privacy",{"href":1540,"dataGaName":1541,"dataGaLocation":1483},[1718],{"id":1719,"title":7,"body":1020,"config":1720,"content":1722,"description":1020,"extension":1726,"meta":1727,"navigation":167,"path":1728,"seo":1729,"stem":1730,"__hash__":1731},"blogAuthors/en-us/blog/authors/michael-friedrich.yml",{"template":1721},"BlogAuthor",{"name":7,"config":1723},{"headshot":1724,"ctfId":1725},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659879/Blog/Author%20Headshots/dnsmichi-headshot.jpg","dnsmichi","yml",{},"/en-us/blog/authors/michael-friedrich",{},"en-us/blog/authors/michael-friedrich","lJ-nfRIhdG49Arfrxdn1Vv4UppwD51BB13S3HwIswt4",[1733,1742,1750],{"title":1734,"description":1735,"heroImage":1736,"category":1016,"date":1737,"authors":1738,"slug":1741,"externalUrl":1020},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[1739,1740],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1743,"description":1744,"heroImage":1745,"category":1016,"date":1746,"authors":1747,"slug":1749,"externalUrl":1020},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[1748],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1751,"description":1752,"heroImage":1753,"category":1016,"date":1754,"authors":1755,"slug":1757,"externalUrl":1020},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[1756],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1759},[1760,1774,1786,1798],{"id":1761,"categories":1762,"header":1764,"text":1765,"button":1766,"image":1771},"ai-modernization",[1763],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1767,"config":1768},"Get your AI maturity score",{"href":1769,"dataGaName":1770,"dataGaLocation":1248},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1772},{"src":1773},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1775,"categories":1776,"header":1778,"text":1765,"button":1779,"image":1783},"devops-modernization",[1777,1583],"product","Are you just managing tools or shipping innovation?",{"text":1780,"config":1781},"Get your DevOps maturity score",{"href":1782,"dataGaName":1770,"dataGaLocation":1248},"/assessments/devops-modernization-assessment/",{"config":1784},{"src":1785},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1787,"categories":1788,"header":1790,"text":1765,"button":1791,"image":1795},"security-modernization",[1789],"security","Are you trading speed for security?",{"text":1792,"config":1793},"Get your security maturity score",{"href":1794,"dataGaName":1770,"dataGaLocation":1248},"/assessments/security-modernization-assessment/",{"config":1796},{"src":1797},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1799,"paths":1800,"header":1803,"text":1804,"button":1805,"image":1810},"github-azure-migration",[1801,1802],"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":1806,"config":1807},"See how GitLab compares to GitHub",{"href":1808,"dataGaName":1809,"dataGaLocation":1248},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1811},{"src":1785},{"header":1813,"blurb":1814,"button":1815,"secondaryButton":1820},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1816,"config":1817},"Get your free trial",{"href":1818,"dataGaName":1049,"dataGaLocation":1819},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":1521,"config":1821},{"href":1373,"dataGaName":1054,"dataGaLocation":1819},1786803768209]