import { metrics } from "@opentelemetry/api" const meter = metrics.getMeter("trpc.contentstack.destinationCityPage") export const getDestinationCityPageRefsCounter = meter.createCounter( "trpc.contentstack.destinationCityPage.get" ) export const getDestinationCityPageRefsFailCounter = meter.createCounter( "trpc.contentstack.destinationCityPage.get-fail" ) export const getDestinationCityPageRefsSuccessCounter = meter.createCounter( "trpc.contentstack.destinationCityPage.get-success" ) export const getDestinationCityPageCounter = meter.createCounter( "trpc.contentstack.destinationCityPage.get" ) export const getDestinationCityPageSuccessCounter = meter.createCounter( "trpc.contentstack.destinationCityPage.get-success" ) export const getDestinationCityPageFailCounter = meter.createCounter( "trpc.contentstack.destinationCityPage.get-fail" )