The Noc
service
Method |
Noc.QueryGatewaysConnected
|
---|---|
Request type |
TimeBucketQuery
|
Response type |
ConnectedTimeBuckets
|
HTTP bindings |
|
Method |
Noc.QueryGatewaysConnectivityTimes
|
---|---|
Request type |
TimeWindowQuery
|
Response type |
GatewaysConnectivityTimes
|
HTTP bindings |
|
Method |
Noc.QueryGatewayConnectionEvents
|
---|---|
Request type |
GatewayConnectionEventsQuery
|
Response type |
GatewayConnectionEvents
|
HTTP bindings |
|
Method |
Noc.QueryGatewayChannelsUtilization
|
---|---|
Request type |
GatewayTimeBucketQuery
|
Response type |
ChannelsUtilization
|
HTTP bindings |
|
Method |
Noc.QueryGatewayChannelsLoRaPerformance
|
---|---|
Request type |
GatewayTimeBucketQuery
|
Response type |
ChannelsLoRaPerformance
|
HTTP bindings |
|
Method |
Noc.QueryGatewayChannelsPacketCount
|
---|---|
Request type |
GatewayTimeBucketQuery
|
Response type |
ChannelsPacketCount
|
HTTP bindings |
|
Method |
Noc.QueryGatewayTrafficRates
|
---|---|
Request type |
GatewayTimeBucketQuery
|
Response type |
TrafficRatesTimeBuckets
|
HTTP bindings |
|
Method |
Noc.QueryGatewayUptime
|
---|---|
Request type |
GatewayTimeWindowQuery
|
Response type |
google.protobuf.FloatValue
|
HTTP bindings |
|
Method |
Noc.QueryGatewayTopNetworksSeen
|
---|---|
Request type |
GatewayTopNetworksSeenQuery
|
Response type |
GatewayTopNetworksSeen
|
HTTP bindings |
|
Method |
Noc.CheckHealth
|
---|---|
Request type |
google.protobuf.Empty
|
Response type |
google.protobuf.Empty
|
HTTP bindings |
|
Messages
Message GatewayConnectionEventTypeValue
Show object example
{
"value": "GATEWAY_CONNECTION_EVENT_TYPE_CONNECT",
}
Fields:
Field |
value
|
---|---|
Type |
GatewayConnectionEventType
|
Description |
|
Message TimeBucketQuery
Request for data using aggregates by time buckets with a specified interval.
Show object example
{
"from": "0001-01-01T00:00:00Z",
"to": "0001-01-01T00:00:00Z",
"bucket_interval": "0s",
}
Fields:
Field |
from
|
---|---|
Type |
google.protobuf.
Timestamp
|
Description |
|
Field |
to
|
---|---|
Type |
google.protobuf.
Timestamp
|
Description |
|
Field |
bucket_interval
|
---|---|
Type |
google.protobuf.
Duration
|
Description |
|
Message TimeWindowQuery
Request for data in a specific time window.
Show object example
{
"from": "0001-01-01T00:00:00Z",
"to": "0001-01-01T00:00:00Z",
}
Fields:
Field |
from
|
---|---|
Type |
google.protobuf.
Timestamp
|
Description |
|
Field |
to
|
---|---|
Type |
google.protobuf.
Timestamp
|
Description |
|
Message GatewayConnectionEventsQuery
Request for gateway connection events in a specific time window.
Show object example
{
"gateway_time_window": {},
"event_type": {},
}
Fields:
Field |
gateway_time_window
|
---|---|
Type |
GatewayTimeWindowQuery
|
Description |
|
Field |
event_type
|
---|---|
Type |
GatewayConnectionEventTypeValue
|
Description |
The event type to query. If unset, query all event types. |
Message GatewayTimeBucketQuery
Request for gateway data using aggregates by time buckets with a specified interval.
Show object example
{
"gateway_ids": {},
"time_bucket": {},
}
Fields:
Field |
gateway_ids
|
---|---|
Type |
ttn.lorawan.v3.
GatewayIdentifiers
|
Description |
|
Field |
time_bucket
|
---|---|
Type |
TimeBucketQuery
|
Description |
|
Message GatewayTimeWindowQuery
Request for gateway data in a specific time window.
Show object example
{
"gateway_ids": {},
"time_window": {},
}
Fields:
Field |
gateway_ids
|
---|---|
Type |
ttn.lorawan.v3.
GatewayIdentifiers
|
Description |
|
Field |
time_window
|
---|---|
Type |
TimeWindowQuery
|
Description |
|
Message GatewayTopNetworksSeenQuery
Request for top network seen by a gateway.
Show object example
{
"gateway_time_window": {},
"top": 0,
}
Fields:
Field |
gateway_time_window
|
---|---|
Type |
GatewayTimeWindowQuery
|
Description |
|
Field |
top
|
---|---|
Type |
uint32
|
Description |
Top number of networks to include.
|
Enums
Enum GatewayConnectionEventType
Gateway connection event type.
Name | Value | Description |
---|---|---|
GATEWAY_CONNECTION_EVENT_TYPE_CONNECT |
0 |
The gateway connects. |
GATEWAY_CONNECTION_EVENT_TYPE_DISCONNECT |
1 |
The gateway disconnects. |
GATEWAY_CONNECTION_EVENT_TYPE_STATS |
2 |
The gateway connection statistics are updated. |