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

推荐订阅源

D
Docker
U
Unit 42
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
L
LangChain Blog
Engineering at Meta
Engineering at Meta
量子位
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
A
About on SuperTechFans
Y
Y Combinator Blog

VictoriaMetrics: Simple & Reliable Monitoring for Everyone on VictoriaMetrics

Operator now has Long-Term Support (LTS) version Multi-tiered Observability: A Practical Way to Handle Diverse Workloads VictoriaMetrics April 2026 Ecosystem Updates Not All Telemetry Requires Premium Pricing VictoriaMetrics at KubeCon Amsterdam: Community Highlights What's new in VictoriaMetrics Anomaly Detection (Q1 2026) What's New in VictoriaMetrics Cloud Q1 2026? Logs, MCP Server, Better Alerting, and... a Secret Project VictoriaMetrics at KubeCon: Optimizing Tail Sampling in OpenTelemetry with Retroactive Sampling VictoriaMetrics March 2026 Ecosystem Updates Observability Lessons From OpenAI Benchmarking Kubernetes Log Collectors: vlagent, Vector, Fluent Bit, OpenTelemetry Collector, and more VictoriaMetrics February 2026 Ecosystem Updates VictoriaMetrics at FOSDEM, Cloud Native Days France, and CfgMgmtCamp Ghent VictoriaLogs in VictoriaMetrics Cloud: Fast, Cost-Effective Log Management is Here What’s new in VictoriaMetrics Anomaly Detection (2025) VictoriaMetrics January 2026 Ecosystem Updates VictoriaLogs Basics: What You Need to Know, with Examples & Visuals What's New in VictoriaMetrics Cloud Q4 2025? New tiers, more deployment options, IaC and alerting rules. Vibe coding tools observability with VictoriaMetrics Stack and OpenTelemetry How a US Software Provider Improved Traffic Alerting with VictoriaMetrics Anomaly Detection VictoriaMetrics 2025 Developer Experience: A Year in Review Spotify’s performance & control across large monitoring environments with VictoriaMetrics VictoriaMetrics Achieves Red Hat OpenShift Operator Certification Our latest updates across the VictoriaMetrics Observability ecosystem New Capacity Tiers in VictoriaMetrics Cloud Announcing 1B+ Downloads & Product Development With Logs, Traces, Metrics AI Agents Observability with OpenTelemetry and the VictoriaMetrics Stack Discarding gRPC-Go: The Story Behind OTLP/gRPC Support in VictoriaTraces What's New in VictoriaMetrics Cloud Q3 2025? From new region in Asia to proactive alerts How DreamHost Slashed Memory Usage by 80% and Scaled to 76 Million Time Series
What’s new in VictoriaMetrics 2021?
Aliaksandr Valialkin · 2022-01-07 · via VictoriaMetrics: Simple & Reliable Monitoring for Everyone on VictoriaMetrics

The 2021 year is finished, so it’s time to look at changes VictoriaMetrics has gained during the past year. The first release in 2021 was v1.52.0. The last release in 2021 was v1.71.0. More than 20 new releases of VictoriaMetrics were published during the 2021. The full changelog is available at this page. Let’s look at the most interesting changes.

Querying Graphite data

#

VictoriaMetrics was able to accept Graphite data from 2019 - see these docs. It provides much lower disk space usage for the ingested Graphite data and uses much lower disk IO compared to the default Graphite database - Whisper. The ingested Graphite data could be queried via MetricsQL - PromQL-compatible query language. While MetricsQL and PromQL are powerful query languages, Graphite users wanted to use Graphite query language directly from VictoriaMetrics, since this allows seamless migration from Graphite to VictoriaMetrics without the need to modify dashboards and alerting rules in Grafana. So we added support for Graphite query language into VictoriaMetrics at the beginning of 2021 - see these docs for details. This allows using VictoriaMetrics as a drop-in replacement for other Graphite backends.

Additionally, we introduced the following Graphite-related features to VictoriaMetrics in 2021:

  • __graphite__ pseudo-label in MetricsQL, which allows selecting metrics with Graphite query paths and wildcards. For example, {__graphite__=~"dc*.{appA,appB}.host*.memory"} matches Graphite metrics for the following Graphite wildcard - dc*.{appA,appB}.host*.memory. See these docs for more details.
  • label_graphite_group(q, groupNum1, …, groupNumN) function, which allows selecting particular groups from Graphite metric names. See these docs.
  • Ability to use Graphite queries for alerting and recording rules in vmalert. See these docs.

Downsampling for the stored data

#

Downsampling automatically reduces the number of stored raw samples per time series. This may help to reduce disk space usage, since a lower number of samples are stored to disk. This also may improve performance for queries over long time ranges, since a lower number of samples are scanned during the query. VictoriaMetrics gained support for downampling in 2021 - see these docs for details.

Web UI for data exploring and troubleshooting

#

VictoriaMetrics now supports web UI for data exploring and troubleshooting - see vmui docs. It supports the same set of query args as /graph web UI in Prometheus, so it can be seamlessly used for query troubleshooting when editing graphs in Grafana.

Prometheus-compatible staleness markers

#

Prometheus-compatible staleness markers fix many edge cases when monitoring highly dynamic environments with frequently changed Prometheus-compatible scrape targets (for example, Kubernetes monitoring). See these docs for details.

Horizontally scalable scraping for Prometheus-compatible targets

#

vmagent gained the ability to spread scrape targets among multiple vmagent instances. This may be useful if you need to scrape tens of thousands of targets. In this case a single vmagent instance can reach scalability limits, so the solution is to spread the targets among multiple vmagent instances. This is easy to do now according to these instructions.

Backfilling for recording rules in vmalert

#

vmalert gained support for backfilling historical data for recording rules in 2021. See these docs.

#

vmctl tool has been introduced in 2020 in a separate Github project. This tool can be used for migrating data from other monitoring systems to VictoriaMetrics. vmctl has been moved into the main VictoriaMetrics repository in 2021, so it is released together with other VictoriaMetrics components. See vmctl docs for more details.

vmctl tool gained support for data migration from OpenTSDB to VictoriaMetrics in 2021 thanks to John Seekins.

Other interesting features

#

VictoriaMetrics gained many other features during 2021. Below is a list of the most interesting features:

Conclusion

#

There were many useful changes in VictoriaMetrics during 2021, thanks to our users and customers. The full changelog is available here. Probably it is time to upgrade VictoriaMetrics to newer versions according to these instructions. The year 2022 should bring more new features and improvements. If you miss some features in VictoriaMetrics, then please file a feature request or vote for already existing features at GitHub project for VictoriaMetrics.