Implement Distributed Regional Monitoring Agent with add form, API details, one-click install, and bash script generation. Refactor: Rename API Documentation to Regional Monitoring
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
|
||||
export interface RegionalService {
|
||||
id: string;
|
||||
region_name: string;
|
||||
status: string;
|
||||
agent_id: string;
|
||||
agent_ip_address: string;
|
||||
token: string;
|
||||
connection: "online" | "offline";
|
||||
created: string;
|
||||
updated: string;
|
||||
}
|
||||
|
||||
export interface CreateRegionalServiceParams {
|
||||
region_name: string;
|
||||
agent_ip_address: string;
|
||||
}
|
||||
|
||||
export interface InstallCommand {
|
||||
token: string;
|
||||
agent_id: string;
|
||||
bash_script: string;
|
||||
api_endpoint: string;
|
||||
}
|
||||
Reference in New Issue
Block a user