All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.arms20190808.models.GetTraceAppConfigRequest Maven / Gradle / Ivy

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 10.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class GetTraceAppConfigRequest extends TeaModel {
    /**
     * 

The process ID (PID) of the application.

*

You can use one of the following methods to obtain the PID:

*
    *
  • API: Call the ListTraceApps operation
  • *
  • Console: Log on to the Application Real-Time Monitoring Service (ARMS) console. In the left-side navigation pane, choose Application Monitoring > Application List. On the Application List page, click the name of your application. The URL in the address bar contains the PID of the application. The PID is indicated in the pid=xxx format. The PID is usually percent encoded as xxx%40xxx. You must modify this value to remove the percent encoding. For example, if the PID in the URL is xxx%4074xxx, you must replace %40 with an at sign (@) to obtain xxx@74xxx.
  • *
*
*
*
    *
  • To obtain the PID in the console, your application must be monitored by Application Monitoring rather than Managed Service for OpenTelemetry.

    *
  • *
  • The GetTraceAppConfig operation can query only the custom settings of applications that are monitored by Application Monitoring.

    *
  • *
*

This parameter is required.

* * example: *

a2n80plglh@745eddxxx

*/ @NameInMap("Pid") public String pid; public static GetTraceAppConfigRequest build(java.util.Map map) throws Exception { GetTraceAppConfigRequest self = new GetTraceAppConfigRequest(); return TeaModel.build(map, self); } public GetTraceAppConfigRequest setPid(String pid) { this.pid = pid; return this; } public String getPid() { return this.pid; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy