UNPKG

dt-app

Version:

The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.

18 lines (17 loc) 461 B
/** * Possible errors with self monitoring url */ export declare enum SelfmonScript { Reachable = 0, Unreachable = 1, NotFound = 2, MisconfiguredURL = 3 } /** * Get the platform prefix from the agent script */ export declare function getPlatformPrefixFromAgentScript(agentScript: string): string; /** * Checks if a url is reachable from the given environment */ export declare function isUrlReachable(url: string): Promise<SelfmonScript>;