惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News | PayPal Newsroom
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
H
Hacker News: Front Page
Apple Machine Learning Research
Apple Machine Learning Research
TaoSecurity Blog
TaoSecurity Blog
Help Net Security
Help Net Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
Security Latest
Security Latest
Cloudbric
Cloudbric
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Know Your Adversary
Know Your Adversary
A
Arctic Wolf
L
LangChain Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
W
WeLiveSecurity
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
小众软件
小众软件
NISL@THU
NISL@THU
云风的 BLOG
云风的 BLOG
P
Privacy & Cybersecurity Law Blog
S
Security @ Cisco Blogs
博客园 - 【当耐特】
I
InfoQ
Vercel News
Vercel News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Proofpoint News Feed
O
OpenAI News
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
量子位
宝玉的分享
宝玉的分享

1.7.0 on CoreDNS: DNS and Service Discovery

暂无文章

CoreDNS-1.7.0 Release
coredns · 2020-06-15 · via 1.7.0 on CoreDNS: DNS and Service Discovery

The CoreDNS team has released CoreDNS-1.7.0.

This is a backwards-incompatible release. Major changes include:

  • Better metrics names.
  • The federation plugin (which allows for v1 Kubernetes federation) has been removed. We’ve also removed some supporting code from the kubernetes plugin, so it will not build as an external plugin (with this version of CoreDNS).

As this was already backwards-incompatible release, we took the liberty of stuffing as much in one release as possible to minimize the disruption going forward.

A new plugin, dns64, was promoted from external to a plugin that is included by default. This plugin “enables DNS64 IPv6 transition mechanism.”

Metric Changes

We mostly dropped count from _total metrics names:

  • coredns_request_block_count_total -> coredns_dns_blocked_requests_total

  • coredns_request_allow_count_total -> coredns_dns_allowed_requests_total

  • coredns_dns_acl_request_block_count_total -> coredns_acl_blocked_requests_total

  • coredns_dns_acl_request_allow_count_total -> coredns_acl_allowed_requests_total

  • coredns_autopath_success_count_total -> coredns_autopath_success_total

  • coredns_forward_request_count_total -> coredns_forward_requests_total

  • coredns_forward_response_rcode_count_total -> coredns_forward_responses_total

  • coredns_forward_healthcheck_failure_count_total -> coredns_forward_healthcheck_failures_total

  • coredns_forward_healthcheck_broken_count_total -> coredns_forward_healthcheck_broken_total

  • coredns_forward_max_concurrent_reject_count_total -> coredns_forward_max_concurrent_rejects_total

  • coredns_grpc_request_count_total -> coredns_grpc_requests_total

  • coredns_grpc_response_rcode_count_total -> coredns_grpc_responses_total

  • coredns_panic_count_total -> coredns_panics_total

  • coredns_dns_request_count_total -> coredns_dns_requests_total

  • coredns_dns_request_do_count_total -> coredns_dns_do_requests_total

  • coredns_dns_response_rcode_count_total -> coredns_dns_responses_total

  • coredns_reload_failed_count_total -> coredns_reload_failed_total

  • coredns_cache_size -> coredns_cache_entries

And note that coredns_dns_request_type_count_total is now part of coredns_dns_requests_total .

Brought to You By

Ambrose Chua, Ben Kochie, Catena cyber, Chanakya-Ekbote, Chris O’Haver, Daisuke TASAKI, Eli Lindsey, Erfan Besharat, Krzysztof Dąbrowski, Michael Kashin, Miek Gieben, Mirek S, Pablo Caderno, Sandeep Rajan, Tobias Schmidt, Yang Bo, Yong Tang, Zou Nengren.

Noteworthy Changes