blob: e186c98b08c72eb76decf30ffb56450a51e7fd5b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export const dependencyServerPercentile = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
serverSidePercentile: getMultipleLinearIntValues(metric: {
name: "service_relation_server_percentile"
id: $id
}, numOfLinear: 5, duration: $duration) { values { value } }`,
};
export const dependencyServerResponseTimeTrend = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
serverSideResponseTimeTrend: getLinearIntValues(metric: {
name: "service_relation_server_resp_time"
id: $id
}, duration: $duration) {
values {
value
}
}
`,
};
export const dependencyServerThroughputTrend = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
serverSideThroughputTrend: getLinearIntValues(metric: {
name: "service_relation_server_cpm"
id: $id
}, duration: $duration) {
values {
value
}
}
`,
};
export const dependencyServerSLATrend = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
serverSideSLATrend: getLinearIntValues(metric: {
name: "service_relation_server_call_sla"
id: $id
}, duration: $duration) {
values {
value
}
}
`,
};
export const dependencyClientResponseTimeTrend = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
clientSideResponseTimeTrend: getLinearIntValues(metric: {
name: "service_relation_client_resp_time"
id: $id
}, duration: $duration) {
values {
value
}
}
`,
};
export const dependencyClientThroughputTrend = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
clientSideThroughputTrend: getLinearIntValues(metric: {
name: "service_relation_client_cpm"
id: $id
}, duration: $duration) {
values {
value
}
}
`,
};
export const dependencyClientSLATrend = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
clientSideSLATrend: getLinearIntValues(metric: {
name: "service_relation_client_call_sla"
id: $id
}, duration: $duration) {
values {
value
}
}
`,
};
export const dependencyClientPercentile = {
variable: '$duration: Duration!, $id: ID!',
fragment: `
clientSidePercentile: getMultipleLinearIntValues(metric: {
name: "service_relation_client_percentile"
id: $id
}, numOfLinear: 5, duration: $duration) { values { value } }`,
};