Skip to content

Commit a53e894

Browse files
authored
fix spelling errors (apache#55)
Co-authored-by: MiracleDx <dongxiang886@gmail.com>
1 parent 42d6783 commit a53e894

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

metadata.graphqls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ type TimeInfo {
6868
}
6969

7070
extend type Query {
71-
# Normal service related metainfo
71+
# Normal service related meta info
7272
getAllServices(duration: Duration!, group: String): [Service!]!
7373
searchServices(duration: Duration!, keyword: String!): [Service!]!
7474
searchService(serviceCode: String!): Service
7575

7676
# Fetch all services of Browser type
7777
getAllBrowserServices(duration: Duration!): [Service!]!
7878

79-
# Service intance query
79+
# Service instance query
8080
getServiceInstances(duration: Duration!, serviceId: ID!): [ServiceInstance!]!
8181

8282
# Endpoint query

metric.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ extend type Query {
7575
# Query the type of metrics including multiple values, and format them as multiple linears.
7676
# The seq of these multiple lines base on the calculation func in OAL
7777
# Such as, should us this to query the result of func percentile(50,75,90,95,99) in OAL,
78-
# then five lines will be responsed, p50 is the first element of return value.
78+
# then five lines will be responded, p50 is the first element of return value.
7979
getMultipleLinearIntValues(metric: MetricCondition!, numOfLinear: Int!, duration: Duration!): [IntValues!]!
8080
getSubsetOfMultipleLinearIntValues(metric: MetricCondition!, linearIndex: [Int!]!, duration: Duration!): [IntValues!]!
8181
getThermodynamic(metric: MetricCondition!, duration: Duration!): Thermodynamic

metrics-v2.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ enum MetricsType {
3535

3636
input Entity {
3737
# 1. scope=All, no name is required.
38-
# 2. scope=Service, ServiceInstance and Endpoint, set neccessary serviceName/serviceInstanceName/endpointName
38+
# 2. scope=Service, ServiceInstance and Endpoint, set necessary serviceName/serviceInstanceName/endpointName
3939
# 3. Scope=ServiceRelation, ServiceInstanceRelation and EndpointRelation
4040
# serviceName/serviceInstanceName/endpointName is/are the source(s)
4141
# destServiceName/destServiceInstanceName/destEndpointName is/are destination(s)

profile.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ type ProfileTask {
8484
logs: [ProfileTaskLog!]!
8585
}
8686

87-
# Profile thread stack anayze tree element
87+
# Profile thread stack analyze tree element
8888
type ProfileStackElement {
8989
# work for tree building, id matches multiple parentId
9090
id: ID!

topology.graphqls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type Node {
4444
# 1. The service provider/middleware tech, such as: Tomcat, SpringMVC
4545
# 2. Conjectural Service, e.g. MySQL, Redis, Kafka
4646
type: String
47-
# It is a conjuecture node or real node, to represent a service or endpoint.
47+
# It is a conjecture node or real node, to represent a service or endpoint.
4848
isReal: Boolean!
4949
}
5050

@@ -62,7 +62,7 @@ type ServiceInstanceNode {
6262
# 1. The service provider/middleware tech, such as: Tomcat, SpringMVC
6363
# 2. Conjectural Service, e.g. MySQL, Redis, Kafka
6464
type: String
65-
# It is a conjuecture node or real node, to represent an instance.
65+
# It is a conjecture node or real node, to represent an instance.
6666
isReal: Boolean!
6767
}
6868

trace.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ input TraceQueryCondition {
4040
endpointName: String
4141
# The time range of traces started
4242
queryDuration: Duration
43-
# The mix time of trace
43+
# The min time of trace
4444
minTraceDuration: Int
4545
# The max time of trace
4646
maxTraceDuration: Int

0 commit comments

Comments
 (0)