6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
|
|
import { PROMETHEUS_AGENT } from "./constants"
|
||
|
|
|
||
|
|
export function isPrometheusAgent(agentName: string | undefined): boolean {
|
||
|
|
return agentName?.toLowerCase().includes(PROMETHEUS_AGENT) ?? false
|
||
|
|
}
|