Learn about deprecated and EOL features and how to prevent potential problems.

VMware Aria Operations for Applications (formerly known as Tanzu Observability by Wavefront) product features and APIs move to end-of-life as part of the normal software development lifecycle, security improvements, and other factors. To support planning for upgrades, this document provides information on upcoming lifecycle changes. While every effort is made to provide sufficient notice of changes, security issues or other factors may occasionally lead to accelerated end-of-life dates.

Lifecycle Stages

To help you plan for end-of-life dates, this page uses the following terms:

  • Deprecated. Feature, component, platform, or functionality that may no longer be efficient or safe. Deprecated features are supported but no longer recommended. We eventually remove deprecated features. We usually do not fix a bug in a deprecated feature and request that you start using the replacement feature. Deprecated features are identified in the release notes for the release in which the feature is deprecated. For Wavefront proxy, the table below lists deprecated versions.
  • End-of-life. No longer supported. Feature, component, platform, or functionality is no longer supported and may be removed from the product at any time.

Wavefront Proxy

Upgrade to the latest GA release of the Wavefront proxy to get the latest bug fixes and performance enhancements.

The following proxy versions are deprecated or moved to end-of-life.

VersionCurrent StageEnd-of-Life Date
12.x 12.4 is deprecated since June 26, 2023

12.0, 12.1, 12.2, and 12.3 are end-of-life since May 1, 2023

TBD
11.x End-of-life Jun 26, 2023
10.x End-of-life Oct 19, 2022
9.x End-of-life Mar 18, 2022
8.x and earlier End-of-Life Jul 1, 2021 and earlier

REST API

VersionCurrent StageEnd-of-Life Date
2 Active TBD
1 End-of-Life Dec 31, 2017

Delta Counters

Delta counter behavior changed with Release 2020.26. The original delta counter implementation was Deprecated with Release 2020.26. We changed delta counter queries to use cs() in the Operations for Applications Usage integration and tracing RED metrics. The original delta counter implementation is End of Life March 31, 2021.

Automatic Updates and Required Changes

We update system dashboard and integration content to use the new version of delta counters. However, you might have to update custom delta counters.

  • Automatic Updates. Tracing RED metrics and in certain internal ~ metrics collected by the service, such as ~collector.points.reported, use delta counters. All out-of-the-box dashboards that use these data will be updated for you.
  • User Updates. If you have cloned any out-of-the-box dashboards that use delta counters or have created any custom dashboards, charts, or alerts, you are responsible for updating the queries in related charts and alerts yourself.

How to Find Queries that Might Need Modification

  1. Find delta counters from the UI or using Spy.
    • Log in to your product instance, click Browse > Delta Counters and examine your data.
    • From your Web browser, use Delta Counter Spy to view live delta counter ingestion.
  2. Search for those named counters in alerts and dashboards.
    • Search on the Alerts page to find alerts that use the counter metric.
    • Search on the All Dashboards page for dashboards. You might have to select Metrics to get the relevant result.

How to Modify the Queries

  1. Replace ts() with cs() if the query targets delta counter data. Filtering works as before, so nothing within the parentheses needs to change.
  2. Remove rate() or ratediff() functions from your delta counter queries.

    Any cs() query tracks the total increments per minute, so cs() data is already a 1-minute rate and doesn’t require the rate() function. If you do want to know the per-second rate of change, divide the result by 60.

    You do not need to do anything differently if you are using a timeWindow parameter in your rate() function. The purpose of that parameter is to account for cumulative counter resets, but delta counters do not have resets.

  3. Remove align() from your delta counter queries unless you picked an align() time window that’s larger than 1 minute.

    cs() data is always minutely aligned and raw or standard aggregations give the same results.

Examples

In the following examples, errors.count is a delta counter:

Original QueryNew QueryExplanation
ts(errors.count) cs(errors.count) In the simplest case, just change ts() to cs()
rate(ts(errors.count)) cs(errors.count) / 60 To produce per-second rate of change like the rate() function the cs() divide by 60.
ratediff(ts(errors.count)) cs(errors.count) For ratediff(), no per-second conversion is done. Remove the ratediff() function from the query.
align(1m, ts(errors.count)) cs(errors.count) Remove align() from your query unless you picked an align() time window that’s larger than 1 minute.

Background: Original and New Delta Counter Implementation

Delta counters allow you to measure the number of times something occurred over time without needing to keep track of the number of occurrences to date yourself.

At ingestion time, a delta counter must have a ∆ character at the beginning. Just like any other measurement data in a delta counter series is uniquely identified by its name, source, and any point tags.

Example Scenario

For example, imagine we are trying to track the total number of errors that occur across lambda functions running in a given AWS region. Each invocation of the function would measure how many errors occurred during that run and would emit that to the service.

If 5 errors were encountered during a given run, a Lambda running in the us-west-2 region would send: ∆errors.count 5 source=lambda region=us-west-2. We automatically aggregate any increments received for that same counter, allowing you to know the total number of errors that occurred over time, across any number of lambda invocations without any function needing to keep track of that overall state!

Original Implementation

Before release 2020.26, delta values were stored internally as regular metrics emitted every minutes.

For the above example if the data measured across 3 minutes had been a total of: 10 errors in minute 1, 15 errors in minute 2, and 5 errors in minute 3 then if you queried ts(errors.count) for that time range you would see a monotonically increasing count showing 10, 25, 30 across those 3 minutes.

New Implementation

Starting with release 2020.26, a new data type for storing delta counters is part of the product. Data ingestion of delta counters remains unchanged, and a delta (∆) is still required to indicate a delta counter, but the data is now queried via cs() instead of ts(). The original delta counters still report minutely, but instead of maintaining a monotonically increasing count they report the total number of increments that occurred within each minute. In our example, cs(errors.count) displays values of 10, 15, and 5. See Counters and Delta Counters for details and examples.

Replace all ~agent. metrics with ~proxy.

The ~agent. metrics were deprecated a few years ago. With release 2024-05.x, our service no longer supports the ~agent. metrics. You must replace all the ~agent. metrics with ~proxy. to ensure that your charts don’t break. For example:

# Deprecated metric: 
rawsum(align(1m, mean, ts(\"~agent.buffer.task-count\")))

# Replace with:
rawsum(align(1m, mean, ts(\"~proxy.buffer.task-count\")))

Operations for Applications Authentication and Authorization

Starting July 3, 2023, VMware Aria Operations for Applications is a service on the VMware Cloud services platform. VMware Cloud services provides centralized authentication and authorization to your entire VMware Cloud services portfolio across hybrid and native public clouds, including Operations for Applications. See Advantages of VMware Cloud Services Subscriptions Over Original Subscriptions.

Starting September 20, 2023, all new trial instances of Operations for Applications are onboarded to VMware Cloud services.

In October, 2023, we start to incrementally onboard all original subscriptions, which use Operations for Applications authentication and authorization, to VMware Cloud services.