Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
e1ff48a262 | |||
be629e3d00 | |||
f2fd297218 | |||
ac000112c3 | |||
21a4165489 | |||
15dd74d6ab | |||
82ae3e4ba4 | |||
f0bda0a3bd | |||
1ee231fe30 | |||
3279c6fd38 | |||
268bc7d8a2 | |||
2f83edc426 | |||
80f9c00615 | |||
53c22ab8c7 | |||
35374ab6e0 | |||
dcb60e6898 | |||
e2c464b34e | |||
8a4f360a45 | |||
7a6ad00f7f | |||
d847c36715 |
1
TODO.md
1
TODO.md
@ -2,6 +2,7 @@
|
|||||||
- [x] Redis recorder panic
|
- [x] Redis recorder panic
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
|
- [ ] Make lightning distance unit configurable (kph|mph)
|
||||||
- [ ] Set TTL on redis key
|
- [ ] Set TTL on redis key
|
||||||
- [ ] Add json schema to CI and README
|
- [ ] Add json schema to CI and README
|
||||||
- [ ] Update README
|
- [ ] Update README
|
||||||
|
@ -22,6 +22,94 @@ const (
|
|||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type CountWeatherUpdatesRequest struct {
|
||||||
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
|
Opts *GetWeatherOpts `protobuf:"bytes,1,opt,name=opts,proto3" json:"opts,omitempty"`
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesRequest) Reset() {
|
||||||
|
*x = CountWeatherUpdatesRequest{}
|
||||||
|
mi := &file_weather_weather_proto_msgTypes[0]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*CountWeatherUpdatesRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_weather_weather_proto_msgTypes[0]
|
||||||
|
if x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use CountWeatherUpdatesRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*CountWeatherUpdatesRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_weather_weather_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesRequest) GetOpts() *GetWeatherOpts {
|
||||||
|
if x != nil {
|
||||||
|
return x.Opts
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type CountWeatherUpdatesResponse struct {
|
||||||
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
|
Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesResponse) Reset() {
|
||||||
|
*x = CountWeatherUpdatesResponse{}
|
||||||
|
mi := &file_weather_weather_proto_msgTypes[1]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*CountWeatherUpdatesResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_weather_weather_proto_msgTypes[1]
|
||||||
|
if x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use CountWeatherUpdatesResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*CountWeatherUpdatesResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_weather_weather_proto_rawDescGZIP(), []int{1}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CountWeatherUpdatesResponse) GetCount() int32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.Count
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
type GetWeatherRequest struct {
|
type GetWeatherRequest struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
Opts *GetWeatherOpts `protobuf:"bytes,1,opt,name=opts,proto3" json:"opts,omitempty"`
|
Opts *GetWeatherOpts `protobuf:"bytes,1,opt,name=opts,proto3" json:"opts,omitempty"`
|
||||||
@ -32,7 +120,7 @@ type GetWeatherRequest struct {
|
|||||||
|
|
||||||
func (x *GetWeatherRequest) Reset() {
|
func (x *GetWeatherRequest) Reset() {
|
||||||
*x = GetWeatherRequest{}
|
*x = GetWeatherRequest{}
|
||||||
mi := &file_weather_weather_proto_msgTypes[0]
|
mi := &file_weather_weather_proto_msgTypes[2]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -44,7 +132,7 @@ func (x *GetWeatherRequest) String() string {
|
|||||||
func (*GetWeatherRequest) ProtoMessage() {}
|
func (*GetWeatherRequest) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *GetWeatherRequest) ProtoReflect() protoreflect.Message {
|
func (x *GetWeatherRequest) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_weather_weather_proto_msgTypes[0]
|
mi := &file_weather_weather_proto_msgTypes[2]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -57,7 +145,7 @@ func (x *GetWeatherRequest) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use GetWeatherRequest.ProtoReflect.Descriptor instead.
|
// Deprecated: Use GetWeatherRequest.ProtoReflect.Descriptor instead.
|
||||||
func (*GetWeatherRequest) Descriptor() ([]byte, []int) {
|
func (*GetWeatherRequest) Descriptor() ([]byte, []int) {
|
||||||
return file_weather_weather_proto_rawDescGZIP(), []int{0}
|
return file_weather_weather_proto_rawDescGZIP(), []int{2}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *GetWeatherRequest) GetOpts() *GetWeatherOpts {
|
func (x *GetWeatherRequest) GetOpts() *GetWeatherOpts {
|
||||||
@ -84,7 +172,7 @@ type GetWeatherResponse struct {
|
|||||||
|
|
||||||
func (x *GetWeatherResponse) Reset() {
|
func (x *GetWeatherResponse) Reset() {
|
||||||
*x = GetWeatherResponse{}
|
*x = GetWeatherResponse{}
|
||||||
mi := &file_weather_weather_proto_msgTypes[1]
|
mi := &file_weather_weather_proto_msgTypes[3]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -96,7 +184,7 @@ func (x *GetWeatherResponse) String() string {
|
|||||||
func (*GetWeatherResponse) ProtoMessage() {}
|
func (*GetWeatherResponse) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *GetWeatherResponse) ProtoReflect() protoreflect.Message {
|
func (x *GetWeatherResponse) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_weather_weather_proto_msgTypes[1]
|
mi := &file_weather_weather_proto_msgTypes[3]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -109,7 +197,7 @@ func (x *GetWeatherResponse) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use GetWeatherResponse.ProtoReflect.Descriptor instead.
|
// Deprecated: Use GetWeatherResponse.ProtoReflect.Descriptor instead.
|
||||||
func (*GetWeatherResponse) Descriptor() ([]byte, []int) {
|
func (*GetWeatherResponse) Descriptor() ([]byte, []int) {
|
||||||
return file_weather_weather_proto_rawDescGZIP(), []int{1}
|
return file_weather_weather_proto_rawDescGZIP(), []int{3}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *GetWeatherResponse) GetLastUpdated() *timestamppb.Timestamp {
|
func (x *GetWeatherResponse) GetLastUpdated() *timestamppb.Timestamp {
|
||||||
@ -136,7 +224,7 @@ type GetWeatherOpts struct {
|
|||||||
|
|
||||||
func (x *GetWeatherOpts) Reset() {
|
func (x *GetWeatherOpts) Reset() {
|
||||||
*x = GetWeatherOpts{}
|
*x = GetWeatherOpts{}
|
||||||
mi := &file_weather_weather_proto_msgTypes[2]
|
mi := &file_weather_weather_proto_msgTypes[4]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -148,7 +236,7 @@ func (x *GetWeatherOpts) String() string {
|
|||||||
func (*GetWeatherOpts) ProtoMessage() {}
|
func (*GetWeatherOpts) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *GetWeatherOpts) ProtoReflect() protoreflect.Message {
|
func (x *GetWeatherOpts) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_weather_weather_proto_msgTypes[2]
|
mi := &file_weather_weather_proto_msgTypes[4]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -161,7 +249,7 @@ func (x *GetWeatherOpts) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use GetWeatherOpts.ProtoReflect.Descriptor instead.
|
// Deprecated: Use GetWeatherOpts.ProtoReflect.Descriptor instead.
|
||||||
func (*GetWeatherOpts) Descriptor() ([]byte, []int) {
|
func (*GetWeatherOpts) Descriptor() ([]byte, []int) {
|
||||||
return file_weather_weather_proto_rawDescGZIP(), []int{2}
|
return file_weather_weather_proto_rawDescGZIP(), []int{4}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *GetWeatherOpts) GetStationName() string {
|
func (x *GetWeatherOpts) GetStationName() string {
|
||||||
@ -208,13 +296,16 @@ type WeatherUpdate struct {
|
|||||||
WindChillF *float64 `protobuf:"fixed64,26,opt,name=wind_chill_f,json=windChillF,proto3,oneof" json:"wind_chill_f,omitempty"`
|
WindChillF *float64 `protobuf:"fixed64,26,opt,name=wind_chill_f,json=windChillF,proto3,oneof" json:"wind_chill_f,omitempty"`
|
||||||
TempHumiditySensors []*TempHumiditySensor `protobuf:"bytes,27,rep,name=temp_humidity_sensors,json=tempHumiditySensors,proto3" json:"temp_humidity_sensors,omitempty"`
|
TempHumiditySensors []*TempHumiditySensor `protobuf:"bytes,27,rep,name=temp_humidity_sensors,json=tempHumiditySensors,proto3" json:"temp_humidity_sensors,omitempty"`
|
||||||
UpdateTimestamp *timestamppb.Timestamp `protobuf:"bytes,28,opt,name=update_timestamp,json=updateTimestamp,proto3" json:"update_timestamp,omitempty"`
|
UpdateTimestamp *timestamppb.Timestamp `protobuf:"bytes,28,opt,name=update_timestamp,json=updateTimestamp,proto3" json:"update_timestamp,omitempty"`
|
||||||
|
LightningDay *int32 `protobuf:"varint,29,opt,name=lightning_day,json=lightningDay,proto3,oneof" json:"lightning_day,omitempty"`
|
||||||
|
LightningDistance *int32 `protobuf:"varint,30,opt,name=lightning_distance,json=lightningDistance,proto3,oneof" json:"lightning_distance,omitempty"`
|
||||||
|
LightningLastTime *timestamppb.Timestamp `protobuf:"bytes,31,opt,name=lightning_last_time,json=lightningLastTime,proto3,oneof" json:"lightning_last_time,omitempty"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *WeatherUpdate) Reset() {
|
func (x *WeatherUpdate) Reset() {
|
||||||
*x = WeatherUpdate{}
|
*x = WeatherUpdate{}
|
||||||
mi := &file_weather_weather_proto_msgTypes[3]
|
mi := &file_weather_weather_proto_msgTypes[5]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -226,7 +317,7 @@ func (x *WeatherUpdate) String() string {
|
|||||||
func (*WeatherUpdate) ProtoMessage() {}
|
func (*WeatherUpdate) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *WeatherUpdate) ProtoReflect() protoreflect.Message {
|
func (x *WeatherUpdate) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_weather_weather_proto_msgTypes[3]
|
mi := &file_weather_weather_proto_msgTypes[5]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -239,7 +330,7 @@ func (x *WeatherUpdate) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use WeatherUpdate.ProtoReflect.Descriptor instead.
|
// Deprecated: Use WeatherUpdate.ProtoReflect.Descriptor instead.
|
||||||
func (*WeatherUpdate) Descriptor() ([]byte, []int) {
|
func (*WeatherUpdate) Descriptor() ([]byte, []int) {
|
||||||
return file_weather_weather_proto_rawDescGZIP(), []int{3}
|
return file_weather_weather_proto_rawDescGZIP(), []int{5}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *WeatherUpdate) GetStationName() string {
|
func (x *WeatherUpdate) GetStationName() string {
|
||||||
@ -438,6 +529,27 @@ func (x *WeatherUpdate) GetUpdateTimestamp() *timestamppb.Timestamp {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *WeatherUpdate) GetLightningDay() int32 {
|
||||||
|
if x != nil && x.LightningDay != nil {
|
||||||
|
return *x.LightningDay
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *WeatherUpdate) GetLightningDistance() int32 {
|
||||||
|
if x != nil && x.LightningDistance != nil {
|
||||||
|
return *x.LightningDistance
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *WeatherUpdate) GetLightningLastTime() *timestamppb.Timestamp {
|
||||||
|
if x != nil {
|
||||||
|
return x.LightningLastTime
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Represents a temperature and humidity sensor
|
// Represents a temperature and humidity sensor
|
||||||
type TempHumiditySensor struct {
|
type TempHumiditySensor struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
@ -450,7 +562,7 @@ type TempHumiditySensor struct {
|
|||||||
|
|
||||||
func (x *TempHumiditySensor) Reset() {
|
func (x *TempHumiditySensor) Reset() {
|
||||||
*x = TempHumiditySensor{}
|
*x = TempHumiditySensor{}
|
||||||
mi := &file_weather_weather_proto_msgTypes[4]
|
mi := &file_weather_weather_proto_msgTypes[6]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -462,7 +574,7 @@ func (x *TempHumiditySensor) String() string {
|
|||||||
func (*TempHumiditySensor) ProtoMessage() {}
|
func (*TempHumiditySensor) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *TempHumiditySensor) ProtoReflect() protoreflect.Message {
|
func (x *TempHumiditySensor) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_weather_weather_proto_msgTypes[4]
|
mi := &file_weather_weather_proto_msgTypes[6]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -475,7 +587,7 @@ func (x *TempHumiditySensor) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use TempHumiditySensor.ProtoReflect.Descriptor instead.
|
// Deprecated: Use TempHumiditySensor.ProtoReflect.Descriptor instead.
|
||||||
func (*TempHumiditySensor) Descriptor() ([]byte, []int) {
|
func (*TempHumiditySensor) Descriptor() ([]byte, []int) {
|
||||||
return file_weather_weather_proto_rawDescGZIP(), []int{4}
|
return file_weather_weather_proto_rawDescGZIP(), []int{6}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *TempHumiditySensor) GetName() string {
|
func (x *TempHumiditySensor) GetName() string {
|
||||||
@ -510,7 +622,7 @@ type BatteryStatus struct {
|
|||||||
|
|
||||||
func (x *BatteryStatus) Reset() {
|
func (x *BatteryStatus) Reset() {
|
||||||
*x = BatteryStatus{}
|
*x = BatteryStatus{}
|
||||||
mi := &file_weather_weather_proto_msgTypes[5]
|
mi := &file_weather_weather_proto_msgTypes[7]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -522,7 +634,7 @@ func (x *BatteryStatus) String() string {
|
|||||||
func (*BatteryStatus) ProtoMessage() {}
|
func (*BatteryStatus) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *BatteryStatus) ProtoReflect() protoreflect.Message {
|
func (x *BatteryStatus) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_weather_weather_proto_msgTypes[5]
|
mi := &file_weather_weather_proto_msgTypes[7]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -535,7 +647,7 @@ func (x *BatteryStatus) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use BatteryStatus.ProtoReflect.Descriptor instead.
|
// Deprecated: Use BatteryStatus.ProtoReflect.Descriptor instead.
|
||||||
func (*BatteryStatus) Descriptor() ([]byte, []int) {
|
func (*BatteryStatus) Descriptor() ([]byte, []int) {
|
||||||
return file_weather_weather_proto_rawDescGZIP(), []int{5}
|
return file_weather_weather_proto_rawDescGZIP(), []int{7}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *BatteryStatus) GetComponent() string {
|
func (x *BatteryStatus) GetComponent() string {
|
||||||
@ -556,7 +668,11 @@ var File_weather_weather_proto protoreflect.FileDescriptor
|
|||||||
|
|
||||||
const file_weather_weather_proto_rawDesc = "" +
|
const file_weather_weather_proto_rawDesc = "" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"\x15weather/weather.proto\x12\x0fambient.weather\x1a\x1fgoogle/protobuf/timestamp.proto\"m\n" +
|
"\x15weather/weather.proto\x12\x0fambient.weather\x1a\x1fgoogle/protobuf/timestamp.proto\"Q\n" +
|
||||||
|
"\x1aCountWeatherUpdatesRequest\x123\n" +
|
||||||
|
"\x04opts\x18\x01 \x01(\v2\x1f.ambient.weather.GetWeatherOptsR\x04opts\"3\n" +
|
||||||
|
"\x1bCountWeatherUpdatesResponse\x12\x14\n" +
|
||||||
|
"\x05count\x18\x01 \x01(\x05R\x05count\"m\n" +
|
||||||
"\x11GetWeatherRequest\x123\n" +
|
"\x11GetWeatherRequest\x123\n" +
|
||||||
"\x04opts\x18\x01 \x01(\v2\x1f.ambient.weather.GetWeatherOptsR\x04opts\x12\x19\n" +
|
"\x04opts\x18\x01 \x01(\v2\x1f.ambient.weather.GetWeatherOptsR\x04opts\x12\x19\n" +
|
||||||
"\x05limit\x18\x02 \x01(\x05H\x00R\x05limit\x88\x01\x01B\b\n" +
|
"\x05limit\x18\x02 \x01(\x05H\x00R\x05limit\x88\x01\x01B\b\n" +
|
||||||
@ -568,7 +684,7 @@ const file_weather_weather_proto_rawDesc = "" +
|
|||||||
"\fstation_name\x18\x01 \x01(\tH\x00R\vstationName\x88\x01\x01\x12&\n" +
|
"\fstation_name\x18\x01 \x01(\tH\x00R\vstationName\x88\x01\x01\x12&\n" +
|
||||||
"\fstation_type\x18\x02 \x01(\tH\x01R\vstationType\x88\x01\x01B\x0f\n" +
|
"\fstation_type\x18\x02 \x01(\tH\x01R\vstationType\x88\x01\x01B\x0f\n" +
|
||||||
"\r_station_nameB\x0f\n" +
|
"\r_station_nameB\x0f\n" +
|
||||||
"\r_station_type\"\xfe\f\n" +
|
"\r_station_type\"\xee\x0e\n" +
|
||||||
"\rWeatherUpdate\x12!\n" +
|
"\rWeatherUpdate\x12!\n" +
|
||||||
"\fstation_name\x18\x01 \x01(\tR\vstationName\x12!\n" +
|
"\fstation_name\x18\x01 \x01(\tR\vstationName\x12!\n" +
|
||||||
"\fstation_type\x18\x02 \x01(\tR\vstationType\x12\x1d\n" +
|
"\fstation_type\x18\x02 \x01(\tR\vstationType\x12\x1d\n" +
|
||||||
@ -601,7 +717,10 @@ const file_weather_weather_proto_rawDesc = "" +
|
|||||||
"\fwind_chill_f\x18\x1a \x01(\x01H\x15R\n" +
|
"\fwind_chill_f\x18\x1a \x01(\x01H\x15R\n" +
|
||||||
"windChillF\x88\x01\x01\x12W\n" +
|
"windChillF\x88\x01\x01\x12W\n" +
|
||||||
"\x15temp_humidity_sensors\x18\x1b \x03(\v2#.ambient.weather.TempHumiditySensorR\x13tempHumiditySensors\x12E\n" +
|
"\x15temp_humidity_sensors\x18\x1b \x03(\v2#.ambient.weather.TempHumiditySensorR\x13tempHumiditySensors\x12E\n" +
|
||||||
"\x10update_timestamp\x18\x1c \x01(\v2\x1a.google.protobuf.TimestampR\x0fupdateTimestampB\x11\n" +
|
"\x10update_timestamp\x18\x1c \x01(\v2\x1a.google.protobuf.TimestampR\x0fupdateTimestamp\x12(\n" +
|
||||||
|
"\rlightning_day\x18\x1d \x01(\x05H\x16R\flightningDay\x88\x01\x01\x122\n" +
|
||||||
|
"\x12lightning_distance\x18\x1e \x01(\x05H\x17R\x11lightningDistance\x88\x01\x01\x12O\n" +
|
||||||
|
"\x13lightning_last_time\x18\x1f \x01(\v2\x1a.google.protobuf.TimestampH\x18R\x11lightningLastTime\x88\x01\x01B\x11\n" +
|
||||||
"\x0f_temp_outdoor_fB\x10\n" +
|
"\x0f_temp_outdoor_fB\x10\n" +
|
||||||
"\x0e_temp_indoor_fB\x13\n" +
|
"\x0e_temp_indoor_fB\x13\n" +
|
||||||
"\x11_humidity_outdoorB\x12\n" +
|
"\x11_humidity_outdoorB\x12\n" +
|
||||||
@ -623,7 +742,10 @@ const file_weather_weather_proto_rawDesc = "" +
|
|||||||
"\x12_barom_relative_inB\x14\n" +
|
"\x12_barom_relative_inB\x14\n" +
|
||||||
"\x12_barom_absolute_inB\x0e\n" +
|
"\x12_barom_absolute_inB\x0e\n" +
|
||||||
"\f_dew_point_fB\x0f\n" +
|
"\f_dew_point_fB\x0f\n" +
|
||||||
"\r_wind_chill_f\"}\n" +
|
"\r_wind_chill_fB\x10\n" +
|
||||||
|
"\x0e_lightning_dayB\x15\n" +
|
||||||
|
"\x13_lightning_distanceB\x16\n" +
|
||||||
|
"\x14_lightning_last_time\"}\n" +
|
||||||
"\x12TempHumiditySensor\x12\x12\n" +
|
"\x12TempHumiditySensor\x12\x12\n" +
|
||||||
"\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
|
"\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
|
||||||
"\x06temp_f\x18\x02 \x01(\x01H\x00R\x05tempF\x88\x01\x01\x12\x1f\n" +
|
"\x06temp_f\x18\x02 \x01(\x01H\x00R\x05tempF\x88\x01\x01\x12\x1f\n" +
|
||||||
@ -647,28 +769,32 @@ func file_weather_weather_proto_rawDescGZIP() []byte {
|
|||||||
return file_weather_weather_proto_rawDescData
|
return file_weather_weather_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_weather_weather_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
var file_weather_weather_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
||||||
var file_weather_weather_proto_goTypes = []any{
|
var file_weather_weather_proto_goTypes = []any{
|
||||||
(*GetWeatherRequest)(nil), // 0: ambient.weather.GetWeatherRequest
|
(*CountWeatherUpdatesRequest)(nil), // 0: ambient.weather.CountWeatherUpdatesRequest
|
||||||
(*GetWeatherResponse)(nil), // 1: ambient.weather.GetWeatherResponse
|
(*CountWeatherUpdatesResponse)(nil), // 1: ambient.weather.CountWeatherUpdatesResponse
|
||||||
(*GetWeatherOpts)(nil), // 2: ambient.weather.GetWeatherOpts
|
(*GetWeatherRequest)(nil), // 2: ambient.weather.GetWeatherRequest
|
||||||
(*WeatherUpdate)(nil), // 3: ambient.weather.WeatherUpdate
|
(*GetWeatherResponse)(nil), // 3: ambient.weather.GetWeatherResponse
|
||||||
(*TempHumiditySensor)(nil), // 4: ambient.weather.TempHumiditySensor
|
(*GetWeatherOpts)(nil), // 4: ambient.weather.GetWeatherOpts
|
||||||
(*BatteryStatus)(nil), // 5: ambient.weather.BatteryStatus
|
(*WeatherUpdate)(nil), // 5: ambient.weather.WeatherUpdate
|
||||||
(*timestamppb.Timestamp)(nil), // 6: google.protobuf.Timestamp
|
(*TempHumiditySensor)(nil), // 6: ambient.weather.TempHumiditySensor
|
||||||
|
(*BatteryStatus)(nil), // 7: ambient.weather.BatteryStatus
|
||||||
|
(*timestamppb.Timestamp)(nil), // 8: google.protobuf.Timestamp
|
||||||
}
|
}
|
||||||
var file_weather_weather_proto_depIdxs = []int32{
|
var file_weather_weather_proto_depIdxs = []int32{
|
||||||
2, // 0: ambient.weather.GetWeatherRequest.opts:type_name -> ambient.weather.GetWeatherOpts
|
4, // 0: ambient.weather.CountWeatherUpdatesRequest.opts:type_name -> ambient.weather.GetWeatherOpts
|
||||||
6, // 1: ambient.weather.GetWeatherResponse.last_updated:type_name -> google.protobuf.Timestamp
|
4, // 1: ambient.weather.GetWeatherRequest.opts:type_name -> ambient.weather.GetWeatherOpts
|
||||||
3, // 2: ambient.weather.GetWeatherResponse.weather_updates:type_name -> ambient.weather.WeatherUpdate
|
8, // 2: ambient.weather.GetWeatherResponse.last_updated:type_name -> google.protobuf.Timestamp
|
||||||
5, // 3: ambient.weather.WeatherUpdate.batteries:type_name -> ambient.weather.BatteryStatus
|
5, // 3: ambient.weather.GetWeatherResponse.weather_updates:type_name -> ambient.weather.WeatherUpdate
|
||||||
4, // 4: ambient.weather.WeatherUpdate.temp_humidity_sensors:type_name -> ambient.weather.TempHumiditySensor
|
7, // 4: ambient.weather.WeatherUpdate.batteries:type_name -> ambient.weather.BatteryStatus
|
||||||
6, // 5: ambient.weather.WeatherUpdate.update_timestamp:type_name -> google.protobuf.Timestamp
|
6, // 5: ambient.weather.WeatherUpdate.temp_humidity_sensors:type_name -> ambient.weather.TempHumiditySensor
|
||||||
6, // [6:6] is the sub-list for method output_type
|
8, // 6: ambient.weather.WeatherUpdate.update_timestamp:type_name -> google.protobuf.Timestamp
|
||||||
6, // [6:6] is the sub-list for method input_type
|
8, // 7: ambient.weather.WeatherUpdate.lightning_last_time:type_name -> google.protobuf.Timestamp
|
||||||
6, // [6:6] is the sub-list for extension type_name
|
8, // [8:8] is the sub-list for method output_type
|
||||||
6, // [6:6] is the sub-list for extension extendee
|
8, // [8:8] is the sub-list for method input_type
|
||||||
0, // [0:6] is the sub-list for field type_name
|
8, // [8:8] is the sub-list for extension type_name
|
||||||
|
8, // [8:8] is the sub-list for extension extendee
|
||||||
|
0, // [0:8] is the sub-list for field type_name
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { file_weather_weather_proto_init() }
|
func init() { file_weather_weather_proto_init() }
|
||||||
@ -676,18 +802,18 @@ func file_weather_weather_proto_init() {
|
|||||||
if File_weather_weather_proto != nil {
|
if File_weather_weather_proto != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
file_weather_weather_proto_msgTypes[0].OneofWrappers = []any{}
|
|
||||||
file_weather_weather_proto_msgTypes[2].OneofWrappers = []any{}
|
file_weather_weather_proto_msgTypes[2].OneofWrappers = []any{}
|
||||||
file_weather_weather_proto_msgTypes[3].OneofWrappers = []any{}
|
|
||||||
file_weather_weather_proto_msgTypes[4].OneofWrappers = []any{}
|
file_weather_weather_proto_msgTypes[4].OneofWrappers = []any{}
|
||||||
file_weather_weather_proto_msgTypes[5].OneofWrappers = []any{}
|
file_weather_weather_proto_msgTypes[5].OneofWrappers = []any{}
|
||||||
|
file_weather_weather_proto_msgTypes[6].OneofWrappers = []any{}
|
||||||
|
file_weather_weather_proto_msgTypes[7].OneofWrappers = []any{}
|
||||||
type x struct{}
|
type x struct{}
|
||||||
out := protoimpl.TypeBuilder{
|
out := protoimpl.TypeBuilder{
|
||||||
File: protoimpl.DescBuilder{
|
File: protoimpl.DescBuilder{
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_weather_weather_proto_rawDesc), len(file_weather_weather_proto_rawDesc)),
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_weather_weather_proto_rawDesc), len(file_weather_weather_proto_rawDesc)),
|
||||||
NumEnums: 0,
|
NumEnums: 0,
|
||||||
NumMessages: 6,
|
NumMessages: 8,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 0,
|
NumServices: 0,
|
||||||
},
|
},
|
||||||
|
@ -25,20 +25,25 @@ var File_weather_weather_service_proto protoreflect.FileDescriptor
|
|||||||
|
|
||||||
const file_weather_weather_service_proto_rawDesc = "" +
|
const file_weather_weather_service_proto_rawDesc = "" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"\x1dweather/weather_service.proto\x12\x0fambient.weather\x1a\x1cgoogle/api/annotations.proto\x1a\x15weather/weather.proto2\x88\x01\n" +
|
"\x1dweather/weather_service.proto\x12\x0fambient.weather\x1a\x1cgoogle/api/annotations.proto\x1a\x15weather/weather.proto2\x8e\x02\n" +
|
||||||
"\x1aAmbientLocalWeatherService\x12j\n" +
|
"\x1aAmbientLocalWeatherService\x12j\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"GetWeather\x12\".ambient.weather.GetWeatherRequest\x1a#.ambient.weather.GetWeatherResponse\"\x13\x82\xd3\xe4\x93\x02\r\x12\v/v1/weatherBTZRgitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weatherb\x06proto3"
|
"GetWeather\x12\".ambient.weather.GetWeatherRequest\x1a#.ambient.weather.GetWeatherResponse\"\x13\x82\xd3\xe4\x93\x02\r\x12\v/v1/weather\x12\x83\x01\n" +
|
||||||
|
"\x13CountWeatherUpdates\x12+.ambient.weather.CountWeatherUpdatesRequest\x1a,.ambient.weather.CountWeatherUpdatesResponse\"\x11\x82\xd3\xe4\x93\x02\v\x12\t/v1/countBTZRgitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weatherb\x06proto3"
|
||||||
|
|
||||||
var file_weather_weather_service_proto_goTypes = []any{
|
var file_weather_weather_service_proto_goTypes = []any{
|
||||||
(*GetWeatherRequest)(nil), // 0: ambient.weather.GetWeatherRequest
|
(*GetWeatherRequest)(nil), // 0: ambient.weather.GetWeatherRequest
|
||||||
(*GetWeatherResponse)(nil), // 1: ambient.weather.GetWeatherResponse
|
(*CountWeatherUpdatesRequest)(nil), // 1: ambient.weather.CountWeatherUpdatesRequest
|
||||||
|
(*GetWeatherResponse)(nil), // 2: ambient.weather.GetWeatherResponse
|
||||||
|
(*CountWeatherUpdatesResponse)(nil), // 3: ambient.weather.CountWeatherUpdatesResponse
|
||||||
}
|
}
|
||||||
var file_weather_weather_service_proto_depIdxs = []int32{
|
var file_weather_weather_service_proto_depIdxs = []int32{
|
||||||
0, // 0: ambient.weather.AmbientLocalWeatherService.GetWeather:input_type -> ambient.weather.GetWeatherRequest
|
0, // 0: ambient.weather.AmbientLocalWeatherService.GetWeather:input_type -> ambient.weather.GetWeatherRequest
|
||||||
1, // 1: ambient.weather.AmbientLocalWeatherService.GetWeather:output_type -> ambient.weather.GetWeatherResponse
|
1, // 1: ambient.weather.AmbientLocalWeatherService.CountWeatherUpdates:input_type -> ambient.weather.CountWeatherUpdatesRequest
|
||||||
1, // [1:2] is the sub-list for method output_type
|
2, // 2: ambient.weather.AmbientLocalWeatherService.GetWeather:output_type -> ambient.weather.GetWeatherResponse
|
||||||
0, // [0:1] is the sub-list for method input_type
|
3, // 3: ambient.weather.AmbientLocalWeatherService.CountWeatherUpdates:output_type -> ambient.weather.CountWeatherUpdatesResponse
|
||||||
|
2, // [2:4] is the sub-list for method output_type
|
||||||
|
0, // [0:2] is the sub-list for method input_type
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
0, // [0:0] is the sub-list for extension type_name
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
0, // [0:0] is the sub-list for extension extendee
|
||||||
0, // [0:0] is the sub-list for field type_name
|
0, // [0:0] is the sub-list for field type_name
|
||||||
|
@ -68,6 +68,39 @@ func local_request_AmbientLocalWeatherService_GetWeather_0(ctx context.Context,
|
|||||||
return msg, metadata, err
|
return msg, metadata, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var filter_AmbientLocalWeatherService_CountWeatherUpdates_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
|
||||||
|
|
||||||
|
func request_AmbientLocalWeatherService_CountWeatherUpdates_0(ctx context.Context, marshaler runtime.Marshaler, client AmbientLocalWeatherServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
|
var (
|
||||||
|
protoReq CountWeatherUpdatesRequest
|
||||||
|
metadata runtime.ServerMetadata
|
||||||
|
)
|
||||||
|
io.Copy(io.Discard, req.Body)
|
||||||
|
if err := req.ParseForm(); err != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_AmbientLocalWeatherService_CountWeatherUpdates_0); err != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
msg, err := client.CountWeatherUpdates(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||||||
|
return msg, metadata, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func local_request_AmbientLocalWeatherService_CountWeatherUpdates_0(ctx context.Context, marshaler runtime.Marshaler, server AmbientLocalWeatherServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||||
|
var (
|
||||||
|
protoReq CountWeatherUpdatesRequest
|
||||||
|
metadata runtime.ServerMetadata
|
||||||
|
)
|
||||||
|
if err := req.ParseForm(); err != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_AmbientLocalWeatherService_CountWeatherUpdates_0); err != nil {
|
||||||
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||||
|
}
|
||||||
|
msg, err := server.CountWeatherUpdates(ctx, &protoReq)
|
||||||
|
return msg, metadata, err
|
||||||
|
}
|
||||||
|
|
||||||
// RegisterAmbientLocalWeatherServiceHandlerServer registers the http handlers for service AmbientLocalWeatherService to "mux".
|
// RegisterAmbientLocalWeatherServiceHandlerServer registers the http handlers for service AmbientLocalWeatherService to "mux".
|
||||||
// UnaryRPC :call AmbientLocalWeatherServiceServer directly.
|
// UnaryRPC :call AmbientLocalWeatherServiceServer directly.
|
||||||
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
|
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
|
||||||
@ -94,6 +127,26 @@ func RegisterAmbientLocalWeatherServiceHandlerServer(ctx context.Context, mux *r
|
|||||||
}
|
}
|
||||||
forward_AmbientLocalWeatherService_GetWeather_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
forward_AmbientLocalWeatherService_GetWeather_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
})
|
})
|
||||||
|
mux.Handle(http.MethodGet, pattern_AmbientLocalWeatherService_CountWeatherUpdates_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
|
defer cancel()
|
||||||
|
var stream runtime.ServerTransportStream
|
||||||
|
ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
|
||||||
|
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||||
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/ambient.weather.AmbientLocalWeatherService/CountWeatherUpdates", runtime.WithHTTPPathPattern("/v1/count"))
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, md, err := local_request_AmbientLocalWeatherService_CountWeatherUpdates_0(annotatedContext, inboundMarshaler, server, req, pathParams)
|
||||||
|
md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
|
||||||
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
forward_AmbientLocalWeatherService_CountWeatherUpdates_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
|
})
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -151,13 +204,32 @@ func RegisterAmbientLocalWeatherServiceHandlerClient(ctx context.Context, mux *r
|
|||||||
}
|
}
|
||||||
forward_AmbientLocalWeatherService_GetWeather_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
forward_AmbientLocalWeatherService_GetWeather_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
})
|
})
|
||||||
|
mux.Handle(http.MethodGet, pattern_AmbientLocalWeatherService_CountWeatherUpdates_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||||
|
ctx, cancel := context.WithCancel(req.Context())
|
||||||
|
defer cancel()
|
||||||
|
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||||
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/ambient.weather.AmbientLocalWeatherService/CountWeatherUpdates", runtime.WithHTTPPathPattern("/v1/count"))
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, md, err := request_AmbientLocalWeatherService_CountWeatherUpdates_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||||||
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||||||
|
if err != nil {
|
||||||
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
forward_AmbientLocalWeatherService_CountWeatherUpdates_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||||
|
})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
pattern_AmbientLocalWeatherService_GetWeather_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "weather"}, ""))
|
pattern_AmbientLocalWeatherService_GetWeather_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "weather"}, ""))
|
||||||
|
pattern_AmbientLocalWeatherService_CountWeatherUpdates_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "count"}, ""))
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
forward_AmbientLocalWeatherService_GetWeather_0 = runtime.ForwardResponseMessage
|
forward_AmbientLocalWeatherService_GetWeather_0 = runtime.ForwardResponseMessage
|
||||||
|
forward_AmbientLocalWeatherService_CountWeatherUpdates_0 = runtime.ForwardResponseMessage
|
||||||
)
|
)
|
||||||
|
@ -16,6 +16,42 @@
|
|||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"paths": {
|
"paths": {
|
||||||
|
"/v1/count": {
|
||||||
|
"get": {
|
||||||
|
"operationId": "AmbientLocalWeatherService_CountWeatherUpdates",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "A successful response.",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/weatherCountWeatherUpdatesResponse"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"default": {
|
||||||
|
"description": "An unexpected error response.",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/rpcStatus"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "opts.stationName",
|
||||||
|
"in": "query",
|
||||||
|
"required": false,
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "opts.stationType",
|
||||||
|
"in": "query",
|
||||||
|
"required": false,
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"AmbientLocalWeatherService"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"/v1/weather": {
|
"/v1/weather": {
|
||||||
"get": {
|
"get": {
|
||||||
"operationId": "AmbientLocalWeatherService_GetWeather",
|
"operationId": "AmbientLocalWeatherService_GetWeather",
|
||||||
@ -102,6 +138,15 @@
|
|||||||
},
|
},
|
||||||
"title": "Represents battery status for different components"
|
"title": "Represents battery status for different components"
|
||||||
},
|
},
|
||||||
|
"weatherCountWeatherUpdatesResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"count": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"weatherGetWeatherOpts": {
|
"weatherGetWeatherOpts": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -263,6 +308,18 @@
|
|||||||
"updateTimestamp": {
|
"updateTimestamp": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "date-time"
|
"format": "date-time"
|
||||||
|
},
|
||||||
|
"lightningDay": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"lightningDistance": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"lightningLastTime": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "date-time"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@ const _ = grpc.SupportPackageIsVersion9
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
AmbientLocalWeatherService_GetWeather_FullMethodName = "/ambient.weather.AmbientLocalWeatherService/GetWeather"
|
AmbientLocalWeatherService_GetWeather_FullMethodName = "/ambient.weather.AmbientLocalWeatherService/GetWeather"
|
||||||
|
AmbientLocalWeatherService_CountWeatherUpdates_FullMethodName = "/ambient.weather.AmbientLocalWeatherService/CountWeatherUpdates"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AmbientLocalWeatherServiceClient is the client API for AmbientLocalWeatherService service.
|
// AmbientLocalWeatherServiceClient is the client API for AmbientLocalWeatherService service.
|
||||||
@ -27,6 +28,7 @@ const (
|
|||||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
||||||
type AmbientLocalWeatherServiceClient interface {
|
type AmbientLocalWeatherServiceClient interface {
|
||||||
GetWeather(ctx context.Context, in *GetWeatherRequest, opts ...grpc.CallOption) (*GetWeatherResponse, error)
|
GetWeather(ctx context.Context, in *GetWeatherRequest, opts ...grpc.CallOption) (*GetWeatherResponse, error)
|
||||||
|
CountWeatherUpdates(ctx context.Context, in *CountWeatherUpdatesRequest, opts ...grpc.CallOption) (*CountWeatherUpdatesResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type ambientLocalWeatherServiceClient struct {
|
type ambientLocalWeatherServiceClient struct {
|
||||||
@ -47,11 +49,22 @@ func (c *ambientLocalWeatherServiceClient) GetWeather(ctx context.Context, in *G
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *ambientLocalWeatherServiceClient) CountWeatherUpdates(ctx context.Context, in *CountWeatherUpdatesRequest, opts ...grpc.CallOption) (*CountWeatherUpdatesResponse, error) {
|
||||||
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||||
|
out := new(CountWeatherUpdatesResponse)
|
||||||
|
err := c.cc.Invoke(ctx, AmbientLocalWeatherService_CountWeatherUpdates_FullMethodName, in, out, cOpts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
// AmbientLocalWeatherServiceServer is the server API for AmbientLocalWeatherService service.
|
// AmbientLocalWeatherServiceServer is the server API for AmbientLocalWeatherService service.
|
||||||
// All implementations must embed UnimplementedAmbientLocalWeatherServiceServer
|
// All implementations must embed UnimplementedAmbientLocalWeatherServiceServer
|
||||||
// for forward compatibility.
|
// for forward compatibility.
|
||||||
type AmbientLocalWeatherServiceServer interface {
|
type AmbientLocalWeatherServiceServer interface {
|
||||||
GetWeather(context.Context, *GetWeatherRequest) (*GetWeatherResponse, error)
|
GetWeather(context.Context, *GetWeatherRequest) (*GetWeatherResponse, error)
|
||||||
|
CountWeatherUpdates(context.Context, *CountWeatherUpdatesRequest) (*CountWeatherUpdatesResponse, error)
|
||||||
mustEmbedUnimplementedAmbientLocalWeatherServiceServer()
|
mustEmbedUnimplementedAmbientLocalWeatherServiceServer()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -65,6 +78,9 @@ type UnimplementedAmbientLocalWeatherServiceServer struct{}
|
|||||||
func (UnimplementedAmbientLocalWeatherServiceServer) GetWeather(context.Context, *GetWeatherRequest) (*GetWeatherResponse, error) {
|
func (UnimplementedAmbientLocalWeatherServiceServer) GetWeather(context.Context, *GetWeatherRequest) (*GetWeatherResponse, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method GetWeather not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method GetWeather not implemented")
|
||||||
}
|
}
|
||||||
|
func (UnimplementedAmbientLocalWeatherServiceServer) CountWeatherUpdates(context.Context, *CountWeatherUpdatesRequest) (*CountWeatherUpdatesResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method CountWeatherUpdates not implemented")
|
||||||
|
}
|
||||||
func (UnimplementedAmbientLocalWeatherServiceServer) mustEmbedUnimplementedAmbientLocalWeatherServiceServer() {
|
func (UnimplementedAmbientLocalWeatherServiceServer) mustEmbedUnimplementedAmbientLocalWeatherServiceServer() {
|
||||||
}
|
}
|
||||||
func (UnimplementedAmbientLocalWeatherServiceServer) testEmbeddedByValue() {}
|
func (UnimplementedAmbientLocalWeatherServiceServer) testEmbeddedByValue() {}
|
||||||
@ -105,6 +121,24 @@ func _AmbientLocalWeatherService_GetWeather_Handler(srv interface{}, ctx context
|
|||||||
return interceptor(ctx, in, info, handler)
|
return interceptor(ctx, in, info, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func _AmbientLocalWeatherService_CountWeatherUpdates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(CountWeatherUpdatesRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(AmbientLocalWeatherServiceServer).CountWeatherUpdates(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: AmbientLocalWeatherService_CountWeatherUpdates_FullMethodName,
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(AmbientLocalWeatherServiceServer).CountWeatherUpdates(ctx, req.(*CountWeatherUpdatesRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
// AmbientLocalWeatherService_ServiceDesc is the grpc.ServiceDesc for AmbientLocalWeatherService service.
|
// AmbientLocalWeatherService_ServiceDesc is the grpc.ServiceDesc for AmbientLocalWeatherService service.
|
||||||
// It's only intended for direct use with grpc.RegisterService,
|
// It's only intended for direct use with grpc.RegisterService,
|
||||||
// and not to be introspected or modified (even as a copy)
|
// and not to be introspected or modified (even as a copy)
|
||||||
@ -116,6 +150,10 @@ var AmbientLocalWeatherService_ServiceDesc = grpc.ServiceDesc{
|
|||||||
MethodName: "GetWeather",
|
MethodName: "GetWeather",
|
||||||
Handler: _AmbientLocalWeatherService_GetWeather_Handler,
|
Handler: _AmbientLocalWeatherService_GetWeather_Handler,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
MethodName: "CountWeatherUpdates",
|
||||||
|
Handler: _AmbientLocalWeatherService_CountWeatherUpdates_Handler,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "weather/weather_service.proto",
|
Metadata: "weather/weather_service.proto",
|
||||||
|
@ -121,6 +121,10 @@
|
|||||||
"default": "127.0.0.1",
|
"default": "127.0.0.1",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"redisKeyTTL": {
|
||||||
|
"default": "24h",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"redisPassword": {
|
"redisPassword": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
@ -15,13 +15,13 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.1.7
|
version: 0.1.12
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
appVersion: "v0.13.0"
|
appVersion: "v0.18.1"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: hull
|
- name: hull
|
||||||
|
@ -9,6 +9,7 @@ import (
|
|||||||
"google.golang.org/grpc/codes"
|
"google.golang.org/grpc/codes"
|
||||||
"google.golang.org/grpc/status"
|
"google.golang.org/grpc/status"
|
||||||
"google.golang.org/protobuf/types/known/timestamppb"
|
"google.golang.org/protobuf/types/known/timestamppb"
|
||||||
|
"k8s.io/utils/ptr"
|
||||||
|
|
||||||
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/otel"
|
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/otel"
|
||||||
|
|
||||||
@ -31,6 +32,27 @@ func NewGRPCWeather(ctx context.Context, recorder *recorder.WeatherRecorder) *GR
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (w *GRPCWeather) CountWeatherUpdates(ctx context.Context, req *pb.CountWeatherUpdatesRequest) (
|
||||||
|
*pb.CountWeatherUpdatesResponse, error,
|
||||||
|
) {
|
||||||
|
if req.Opts == nil {
|
||||||
|
count := w.recorder.Count(ctx)
|
||||||
|
return &pb.CountWeatherUpdatesResponse{Count: int32(count)}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := w.GetWeather(ctx, &pb.GetWeatherRequest{
|
||||||
|
Opts: req.Opts,
|
||||||
|
Limit: ptr.To(int32(-1)),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return nil, status.Error(codes.Internal, err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
return &pb.CountWeatherUpdatesResponse{
|
||||||
|
Count: int32(len(resp.WeatherUpdates)),
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (w *GRPCWeather) GetWeather(ctx context.Context, req *pb.GetWeatherRequest) (
|
func (w *GRPCWeather) GetWeather(ctx context.Context, req *pb.GetWeatherRequest) (
|
||||||
*pb.GetWeatherResponse, error,
|
*pb.GetWeatherResponse, error,
|
||||||
) {
|
) {
|
||||||
|
@ -59,6 +59,9 @@ func UpdateToPbUpdate(u *weather.WeatherUpdate) *pb.WeatherUpdate {
|
|||||||
WindChillF: u.WindChillF,
|
WindChillF: u.WindChillF,
|
||||||
TempHumiditySensors: thSensorsToPbSensors(u.TempHumiditySensors),
|
TempHumiditySensors: thSensorsToPbSensors(u.TempHumiditySensors),
|
||||||
UpdateTimestamp: timestamppb.New(*u.DateUTC),
|
UpdateTimestamp: timestamppb.New(*u.DateUTC),
|
||||||
|
LightningDay: util.Int32ptr(u.LightningDay),
|
||||||
|
LightningDistance: util.Int32ptr(u.LightningDistance),
|
||||||
|
LightningLastTime: util.TimestampFromIntPtr(u.LightningLastTime),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +52,8 @@ var mockUpdate = &weather.WeatherUpdate{
|
|||||||
TempHumiditySensors: []*weather.TempHumiditySensor{
|
TempHumiditySensors: []*weather.TempHumiditySensor{
|
||||||
{Name: "sensor1", TempF: ptr.To(99.999), Humidity: nil},
|
{Name: "sensor1", TempF: ptr.To(99.999), Humidity: nil},
|
||||||
},
|
},
|
||||||
|
LightningDay: ptr.To(1),
|
||||||
|
LightningDistance: ptr.To(20),
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUpdateToPbUpdate(t *testing.T) {
|
func TestUpdateToPbUpdate(t *testing.T) {
|
||||||
@ -104,6 +106,8 @@ func TestUpdateToPbUpdate(t *testing.T) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
UpdateTimestamp: timestamppb.New(now),
|
UpdateTimestamp: timestamppb.New(now),
|
||||||
|
LightningDay: ptr.To(int32(1)),
|
||||||
|
LightningDistance: ptr.To(int32(20)),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -22,4 +22,5 @@ type RedisConfig struct {
|
|||||||
RedisDB int `yaml:"redisDB" env:"REDIS_DB" default:"0" json:"redisDB,omitempty"`
|
RedisDB int `yaml:"redisDB" env:"REDIS_DB" default:"0" json:"redisDB,omitempty"`
|
||||||
RedisTLS bool `yaml:"redisTLS" env:"REDIS_TLS" default:"false" json:"redisTLS,omitempty"`
|
RedisTLS bool `yaml:"redisTLS" env:"REDIS_TLS" default:"false" json:"redisTLS,omitempty"`
|
||||||
RedisTLSInsecure bool `yaml:"redisTLSInsecure" env:"REDIS_TLS_INSECURE" default:"false" json:"redisTLSInsecure,omitempty"`
|
RedisTLSInsecure bool `yaml:"redisTLSInsecure" env:"REDIS_TLS_INSECURE" default:"false" json:"redisTLSInsecure,omitempty"`
|
||||||
|
RedisKeyTTL string `yaml:"redisKeyTTL" env:"REDIS_KEY_TTL" default:"24h" json:"redisKeyTTL,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,7 @@ const (
|
|||||||
BattIndoorSensor = "IndoorSensor"
|
BattIndoorSensor = "IndoorSensor"
|
||||||
BattRainSensor = "RainSensor"
|
BattRainSensor = "RainSensor"
|
||||||
BattCO2Sensor = "CO2Sensor"
|
BattCO2Sensor = "CO2Sensor"
|
||||||
|
BattLightningSensor = "LightningSensor"
|
||||||
THSensor = "TempHumiditySensor"
|
THSensor = "TempHumiditySensor"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -74,6 +75,10 @@ func MapAwnUpdate(awnUpdate *AmbientWeatherUpdate) *weather.WeatherUpdate {
|
|||||||
YearlyRainIn: awnUpdate.YearlyRainIn,
|
YearlyRainIn: awnUpdate.YearlyRainIn,
|
||||||
TotalRainIn: awnUpdate.TotalRainIn,
|
TotalRainIn: awnUpdate.TotalRainIn,
|
||||||
Batteries: []weather.BatteryStatus{
|
Batteries: []weather.BatteryStatus{
|
||||||
|
{
|
||||||
|
Component: BattLightningSensor,
|
||||||
|
Status: awnUpdate.BattLightning,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Component: BattOutdoorSensor,
|
Component: BattOutdoorSensor,
|
||||||
Status: awnUpdate.BattOut,
|
Status: awnUpdate.BattOut,
|
||||||
@ -138,6 +143,9 @@ func MapAwnUpdate(awnUpdate *AmbientWeatherUpdate) *weather.WeatherUpdate {
|
|||||||
{Name: THSensor + "7", TempF: awnUpdate.Temp7F, Humidity: awnUpdate.Humidity7},
|
{Name: THSensor + "7", TempF: awnUpdate.Temp7F, Humidity: awnUpdate.Humidity7},
|
||||||
{Name: THSensor + "8", TempF: awnUpdate.Temp8F, Humidity: awnUpdate.Humidity8},
|
{Name: THSensor + "8", TempF: awnUpdate.Temp8F, Humidity: awnUpdate.Humidity8},
|
||||||
},
|
},
|
||||||
|
LightningDay: awnUpdate.LightningDay,
|
||||||
|
LightningDistance: awnUpdate.LightningDistance,
|
||||||
|
LightningLastTime: awnUpdate.LightningLastTime,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -145,6 +153,8 @@ func UnmarshalQueryParams(query url.Values) (*AmbientWeatherUpdate, error) {
|
|||||||
update := new(AmbientWeatherUpdate)
|
update := new(AmbientWeatherUpdate)
|
||||||
|
|
||||||
decoder := schema.NewDecoder()
|
decoder := schema.NewDecoder()
|
||||||
|
decoder.IgnoreUnknownKeys(true)
|
||||||
|
|
||||||
if err := decoder.Decode(update, query); err != nil {
|
if err := decoder.Decode(update, query); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,14 @@ type AmbientWeatherUpdate struct {
|
|||||||
BattIn *int `json:"battin,omitempty" schema:"battin"`
|
BattIn *int `json:"battin,omitempty" schema:"battin"`
|
||||||
BattCO2 *int `json:"batt_co2,omitempty" schema:"batt_co2"`
|
BattCO2 *int `json:"batt_co2,omitempty" schema:"batt_co2"`
|
||||||
*AmbientTempHumiditySensors
|
*AmbientTempHumiditySensors
|
||||||
|
*AmbientLightningData
|
||||||
|
}
|
||||||
|
|
||||||
|
type AmbientLightningData struct {
|
||||||
|
BattLightning *int `json:"batt_lightning,omitempty" schema:"batt_lightning"`
|
||||||
|
LightningDay *int `json:"lightning_day,omitempty" schema:"lightning_day" description:"count of lightning detections"`
|
||||||
|
LightningDistance *int `json:"lightning_distance,omitempty" schema:"lightning_distance" description:"distance in kilometers"`
|
||||||
|
LightningLastTime *int `json:"lightning_time,omitempty" schema:"lightning_time" description:"last lightning detection time"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type AmbientTempHumiditySensors struct {
|
type AmbientTempHumiditySensors struct {
|
||||||
|
@ -5,8 +5,10 @@ import (
|
|||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"fmt"
|
"fmt"
|
||||||
"slices"
|
"slices"
|
||||||
|
"time"
|
||||||
|
|
||||||
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/config"
|
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/config"
|
||||||
|
"google.golang.org/protobuf/types/known/timestamppb"
|
||||||
"k8s.io/utils/ptr"
|
"k8s.io/utils/ptr"
|
||||||
|
|
||||||
pb "gitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weather"
|
pb "gitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weather"
|
||||||
@ -29,6 +31,13 @@ func Int32ptr(i *int) *int32 {
|
|||||||
return ptr.To(int32(*i))
|
return ptr.To(int32(*i))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TimestampFromIntPtr(i *int) *timestamppb.Timestamp {
|
||||||
|
if i == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return timestamppb.New(time.Unix(int64(*i), 0))
|
||||||
|
}
|
||||||
|
|
||||||
// Generates a hash that will be consistent
|
// Generates a hash that will be consistent
|
||||||
// across all running replicas
|
// across all running replicas
|
||||||
func GetAppHash(conf *config.AppConfig) string {
|
func GetAppHash(conf *config.AppConfig) string {
|
||||||
@ -75,7 +84,12 @@ func ApplyOptsToUpdates(updates []*weather.WeatherUpdate, limit int, opts *pb.Ge
|
|||||||
return updates
|
return updates
|
||||||
}
|
}
|
||||||
|
|
||||||
filtered := make([]*weather.WeatherUpdate, 0, limit)
|
capacity := len(updates)
|
||||||
|
if limit > 0 {
|
||||||
|
capacity = limit
|
||||||
|
}
|
||||||
|
|
||||||
|
filtered := make([]*weather.WeatherUpdate, 0, capacity)
|
||||||
|
|
||||||
for i := len(updates) - 1; i >= 0; i-- {
|
for i := len(updates) - 1; i >= 0; i-- {
|
||||||
update := updates[i]
|
update := updates[i]
|
||||||
|
@ -37,6 +37,11 @@ type WeatherMetrics struct {
|
|||||||
DewPointF metric.Float64Gauge
|
DewPointF metric.Float64Gauge
|
||||||
WindChillF metric.Float64Gauge
|
WindChillF metric.Float64Gauge
|
||||||
|
|
||||||
|
// Lightning Sensor
|
||||||
|
LightningCountDay metric.Int64Gauge
|
||||||
|
LightningLastDistance metric.Int64Gauge
|
||||||
|
LightningLastTime metric.Int64Gauge
|
||||||
|
|
||||||
// Temp and Humidity Sensors
|
// Temp and Humidity Sensors
|
||||||
SensorTempF metric.Float64Gauge
|
SensorTempF metric.Float64Gauge
|
||||||
SensorHumidity metric.Int64Gauge
|
SensorHumidity metric.Int64Gauge
|
||||||
@ -75,6 +80,10 @@ func (wm *WeatherMetrics) Update(u *WeatherUpdate) {
|
|||||||
wm.recorder.Record(&RecordOpts{Float64Gauge: wm.DewPointF, FloatVal: u.DewPointF, Field: FieldDewPointF, Attributes: attributes, Station: u.StationConfig})
|
wm.recorder.Record(&RecordOpts{Float64Gauge: wm.DewPointF, FloatVal: u.DewPointF, Field: FieldDewPointF, Attributes: attributes, Station: u.StationConfig})
|
||||||
wm.recorder.Record(&RecordOpts{Float64Gauge: wm.WindChillF, FloatVal: u.WindChillF, Field: FieldWindChillF, Attributes: attributes, Station: u.StationConfig})
|
wm.recorder.Record(&RecordOpts{Float64Gauge: wm.WindChillF, FloatVal: u.WindChillF, Field: FieldWindChillF, Attributes: attributes, Station: u.StationConfig})
|
||||||
|
|
||||||
|
wm.recorder.Record(&RecordOpts{Int64Gauge: wm.LightningLastDistance, IntVal: u.LightningDistance, Field: FieldLightningDistance, Attributes: attributes, Station: u.StationConfig})
|
||||||
|
wm.recorder.Record(&RecordOpts{Int64Gauge: wm.LightningCountDay, IntVal: u.LightningDay, Field: FieldLightningDay, Attributes: attributes, Station: u.StationConfig})
|
||||||
|
wm.recorder.Record(&RecordOpts{Int64Gauge: wm.LightningLastTime, IntVal: u.LightningLastTime, Field: FieldLightningLastTime, Attributes: attributes, Station: u.StationConfig})
|
||||||
|
|
||||||
wm.RecordBatteries(u, attributes)
|
wm.RecordBatteries(u, attributes)
|
||||||
wm.RecordTempHumiditySensors(u, attributes)
|
wm.RecordTempHumiditySensors(u, attributes)
|
||||||
|
|
||||||
|
@ -66,6 +66,16 @@ func MustInitMetrics(appCtx context.Context) *WeatherMetrics {
|
|||||||
wm.WindChillF, _ = wm.meter.Float64Gauge(MetricPrefix+"_wind_chill_f",
|
wm.WindChillF, _ = wm.meter.Float64Gauge(MetricPrefix+"_wind_chill_f",
|
||||||
metric.WithDescription("Wind Chill in Faherenheit"))
|
metric.WithDescription("Wind Chill in Faherenheit"))
|
||||||
|
|
||||||
|
// Lightning Sensor
|
||||||
|
wm.LightningCountDay, _ = wm.meter.Int64Gauge(MetricPrefix+"_lightning_day",
|
||||||
|
metric.WithDescription("Count of lightning strikes for current day"))
|
||||||
|
wm.LightningLastDistance, _ = wm.meter.Int64Gauge(MetricPrefix+"_lightning_last_distance",
|
||||||
|
metric.WithDescription("Last measured lightning distance"),
|
||||||
|
metric.WithUnit("km"))
|
||||||
|
wm.LightningLastTime, _ = wm.meter.Int64Gauge(MetricPrefix+"_lightning_last_time",
|
||||||
|
metric.WithDescription("Last lightning time (epoch)"),
|
||||||
|
metric.WithUnit("s"))
|
||||||
|
|
||||||
// Temp and Humidity Sensors
|
// Temp and Humidity Sensors
|
||||||
wm.SensorTempF, _ = wm.meter.Float64Gauge(MetricPrefix+"_sensor_temp_f",
|
wm.SensorTempF, _ = wm.meter.Float64Gauge(MetricPrefix+"_sensor_temp_f",
|
||||||
metric.WithDescription("Temperature Sensor in Faherenheit"))
|
metric.WithDescription("Temperature Sensor in Faherenheit"))
|
||||||
|
@ -3,6 +3,7 @@ package weather
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"slices"
|
||||||
|
|
||||||
"github.com/rs/zerolog"
|
"github.com/rs/zerolog"
|
||||||
"go.opentelemetry.io/otel/attribute"
|
"go.opentelemetry.io/otel/attribute"
|
||||||
@ -19,6 +20,7 @@ type MetricRecorder struct {
|
|||||||
type RecordOpts struct {
|
type RecordOpts struct {
|
||||||
Float64Gauge metric.Float64Gauge
|
Float64Gauge metric.Float64Gauge
|
||||||
Int64Gauge metric.Int64Gauge
|
Int64Gauge metric.Int64Gauge
|
||||||
|
Int64Counter metric.Int64Counter
|
||||||
IntVal *int
|
IntVal *int
|
||||||
FloatVal *float64
|
FloatVal *float64
|
||||||
Attributes []attribute.KeyValue
|
Attributes []attribute.KeyValue
|
||||||
@ -58,26 +60,39 @@ func (r *MetricRecorder) Record(opts *RecordOpts) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
r.recordFloat(opts.Float64Gauge, *opts.FloatVal, opts.Attributes...)
|
r.recordFloat(opts.Float64Gauge, *opts.FloatVal, opts.Attributes...)
|
||||||
|
} else if opts.Int64Counter != nil {
|
||||||
|
if opts.IntVal == nil {
|
||||||
|
log := r.l.Trace().Str("field", string(opts.Field))
|
||||||
|
if opts.Station != nil {
|
||||||
|
log = log.Str("station", opts.Station.Name)
|
||||||
|
}
|
||||||
|
log.Msg("Dropping nil float metric")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
r.recordCounter(opts.Int64Counter, *opts.IntVal, opts.Attributes...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *RecordOpts) keep() bool {
|
func (o *RecordOpts) keep() bool {
|
||||||
// If keep fields are given, only check keep fields
|
// If keep fields are given, only check keep fields
|
||||||
if len(o.Station.KeepMetrics) > 0 {
|
if len(o.Station.KeepMetrics) > 0 {
|
||||||
for _, f := range o.Station.KeepMetrics {
|
return slices.Contains(o.Station.KeepMetrics, o.Field)
|
||||||
if f == o.Field {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, f := range o.Station.DropMetrics {
|
return !slices.Contains(o.Station.DropMetrics, o.Field)
|
||||||
if f == o.Field {
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *MetricRecorder) recordCounter(
|
||||||
|
m metric.Int64Counter, value int, attributes ...attribute.KeyValue,
|
||||||
|
) {
|
||||||
|
// Prepare metric attributes
|
||||||
|
options := make([]metric.AddOption, 0, len(attributes))
|
||||||
|
if len(attributes) > 0 {
|
||||||
|
options = append(options, metric.WithAttributes(attributes...))
|
||||||
}
|
}
|
||||||
return true
|
|
||||||
|
val := int64(value)
|
||||||
|
m.Add(r.ctx, val, options...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *MetricRecorder) recordInt(
|
func (r *MetricRecorder) recordInt(
|
||||||
|
@ -5,6 +5,7 @@ import (
|
|||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"fmt"
|
"fmt"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/otel"
|
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/otel"
|
||||||
"go.opentelemetry.io/otel/attribute"
|
"go.opentelemetry.io/otel/attribute"
|
||||||
@ -20,6 +21,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
DEF_TTL = "24h"
|
||||||
DEF_RETAIN = 120
|
DEF_RETAIN = 120
|
||||||
UPDATES_KEY = "weatherUpdates"
|
UPDATES_KEY = "weatherUpdates"
|
||||||
NAME = "redis recorder"
|
NAME = "redis recorder"
|
||||||
@ -27,6 +29,7 @@ const (
|
|||||||
|
|
||||||
type RedisRecorder struct {
|
type RedisRecorder struct {
|
||||||
baseCtx context.Context
|
baseCtx context.Context
|
||||||
|
keyTTL time.Duration
|
||||||
tracer trace.Tracer
|
tracer trace.Tracer
|
||||||
redis *redis.Client
|
redis *redis.Client
|
||||||
config *config.AmbientLocalExporterConfig
|
config *config.AmbientLocalExporterConfig
|
||||||
@ -42,8 +45,11 @@ func (r *RedisRecorder) Ping(ctx context.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *RedisRecorder) Init(ctx context.Context, opts *recorders.RecorderOpts) {
|
func (r *RedisRecorder) Init(ctx context.Context, opts *recorders.RecorderOpts) {
|
||||||
|
r.baseCtx = opts.BaseCtx
|
||||||
|
r.log = zerolog.Ctx(r.baseCtx)
|
||||||
|
|
||||||
if opts.AppConfig.RecorderConfig.RedisConfig == nil {
|
if opts.AppConfig.RecorderConfig.RedisConfig == nil {
|
||||||
panic("refusing to init redis recorder with no redisConfig")
|
r.log.Panic().Msg("refusing to init redis recorder with no redisConfig")
|
||||||
}
|
}
|
||||||
|
|
||||||
if opts.RetainLast < 1 {
|
if opts.RetainLast < 1 {
|
||||||
@ -53,8 +59,18 @@ func (r *RedisRecorder) Init(ctx context.Context, opts *recorders.RecorderOpts)
|
|||||||
r.config = opts.AppConfig
|
r.config = opts.AppConfig
|
||||||
r.keep = opts.RetainLast
|
r.keep = opts.RetainLast
|
||||||
r.RWMutex = &sync.RWMutex{}
|
r.RWMutex = &sync.RWMutex{}
|
||||||
r.baseCtx = opts.BaseCtx
|
|
||||||
r.log = zerolog.Ctx(r.baseCtx)
|
keyTTL := opts.AppConfig.RecorderConfig.RedisConfig.RedisKeyTTL
|
||||||
|
if keyTTL == "" {
|
||||||
|
keyTTL = DEF_TTL
|
||||||
|
}
|
||||||
|
|
||||||
|
var err error
|
||||||
|
r.keyTTL, err = time.ParseDuration(keyTTL)
|
||||||
|
if err != nil {
|
||||||
|
r.log.Panic().Str("redisKeyTTL", keyTTL).Err(err).
|
||||||
|
Msg("invalid redis key ttl provided")
|
||||||
|
}
|
||||||
|
|
||||||
r.tracer = otel.GetTracer(r.baseCtx, "redisRecorder")
|
r.tracer = otel.GetTracer(r.baseCtx, "redisRecorder")
|
||||||
ctx, span := r.tracer.Start(ctx, "redisRecorder.init", trace.WithAttributes(
|
ctx, span := r.tracer.Start(ctx, "redisRecorder.init", trace.WithAttributes(
|
||||||
@ -62,6 +78,7 @@ func (r *RedisRecorder) Init(ctx context.Context, opts *recorders.RecorderOpts)
|
|||||||
attribute.Int("retainLast", opts.RetainLast),
|
attribute.Int("retainLast", opts.RetainLast),
|
||||||
attribute.Int("redisPort", opts.AppConfig.RecorderConfig.RedisConfig.RedisPort),
|
attribute.Int("redisPort", opts.AppConfig.RecorderConfig.RedisConfig.RedisPort),
|
||||||
attribute.Bool("tls", opts.AppConfig.RecorderConfig.RedisConfig.RedisTLS),
|
attribute.Bool("tls", opts.AppConfig.RecorderConfig.RedisConfig.RedisTLS),
|
||||||
|
attribute.String("keyTTL", r.keyTTL.String()),
|
||||||
))
|
))
|
||||||
defer span.End()
|
defer span.End()
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ func (r *RedisRecorder) set(ctx context.Context, data []byte) error {
|
|||||||
pipe.LPush(ctx, r.Key(), data)
|
pipe.LPush(ctx, r.Key(), data)
|
||||||
pipe.LTrim(ctx, r.Key(), 0, int64(r.keep)-1)
|
pipe.LTrim(ctx, r.Key(), 0, int64(r.keep)-1)
|
||||||
count = pipe.LLen(ctx, r.Key())
|
count = pipe.LLen(ctx, r.Key())
|
||||||
|
pipe.Expire(ctx, r.Key(), r.keyTTL)
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -9,48 +9,52 @@ import (
|
|||||||
// Stable intermediate struct containing superset of fields
|
// Stable intermediate struct containing superset of fields
|
||||||
// between AWN and Wunderground style updates from Ambient devices
|
// between AWN and Wunderground style updates from Ambient devices
|
||||||
type WeatherUpdate struct {
|
type WeatherUpdate struct {
|
||||||
DateUTC *time.Time
|
DateUTC *time.Time `json:"dateUTC,omitempty"`
|
||||||
StationConfig *config.WeatherStation
|
StationConfig *config.WeatherStation `json:"stationConfig,omitempty"`
|
||||||
StationID *string
|
StationID *string `json:"stationID,omitempty"`
|
||||||
StationType *string
|
StationType *string `json:"stationType,omitempty"`
|
||||||
TempOutdoorF *float64
|
TempOutdoorF *float64 `json:"tempOutdoorF,omitempty"`
|
||||||
TempIndoorF *float64
|
TempIndoorF *float64 `json:"tempIndoorF,omitempty"`
|
||||||
HumidityOudoor *int
|
HumidityOudoor *int `json:"humidityOudoor,omitempty"`
|
||||||
HumidityIndoor *int
|
HumidityIndoor *int `json:"humidityIndoor,omitempty"`
|
||||||
WindSpeedMPH *float64
|
WindSpeedMPH *float64 `json:"windSpeedMPH,omitempty"`
|
||||||
WindGustMPH *float64
|
WindGustMPH *float64 `json:"windGustMPH,omitempty"`
|
||||||
MaxDailyGust *float64
|
MaxDailyGust *float64 `json:"maxDailyGust,omitempty"`
|
||||||
WindDir *int
|
WindDir *int `json:"windDir,omitempty"`
|
||||||
WindDirAvg10m *int
|
WindDirAvg10m *int `json:"windDirAvg10M,omitempty"`
|
||||||
UV *int
|
UV *int `json:"uv,omitempty"`
|
||||||
SolarRadiation *float64
|
SolarRadiation *float64 `json:"solarRadiation,omitempty"`
|
||||||
HourlyRainIn *float64
|
HourlyRainIn *float64 `json:"hourlyRainIn,omitempty"`
|
||||||
EventRainIn *float64
|
EventRainIn *float64 `json:"eventRainIn,omitempty"`
|
||||||
DailyRainIn *float64
|
DailyRainIn *float64 `json:"dailyRainIn,omitempty"`
|
||||||
WeeklyRainIn *float64
|
WeeklyRainIn *float64 `json:"weeklyRainIn,omitempty"`
|
||||||
MonthlyRainIn *float64
|
MonthlyRainIn *float64 `json:"monthlyRainIn,omitempty"`
|
||||||
YearlyRainIn *float64
|
YearlyRainIn *float64 `json:"yearlyRainIn,omitempty"`
|
||||||
TotalRainIn *float64
|
TotalRainIn *float64 `json:"totalRainIn,omitempty"`
|
||||||
Batteries []BatteryStatus
|
Batteries []BatteryStatus `json:"batteries,omitempty"`
|
||||||
BaromRelativeIn *float64
|
BaromRelativeIn *float64 `json:"baromRelativeIn,omitempty"`
|
||||||
BaromAbsoluteIn *float64
|
BaromAbsoluteIn *float64 `json:"baromAbsoluteIn,omitempty"`
|
||||||
// These fields may be calculated
|
// These fields may be calculated
|
||||||
// if not otherwise set
|
// if not otherwise set
|
||||||
DewPointF *float64
|
DewPointF *float64 `json:"dewPointF,omitempty"`
|
||||||
WindChillF *float64
|
WindChillF *float64 `json:"windChillF,omitempty"`
|
||||||
// Extra Temp+Humidity Sensors
|
// Extra Temp+Humidity Sensors
|
||||||
TempHumiditySensors []*TempHumiditySensor
|
TempHumiditySensors []*TempHumiditySensor `json:"tempHumiditySensors,omitempty"`
|
||||||
|
// Lightning Data
|
||||||
|
LightningDay *int `json:"lightningDay,omitempty"` // Count of detections
|
||||||
|
LightningDistance *int `json:"lightningDistance,omitempty"` // Last detection distance [kilometers]
|
||||||
|
LightningLastTime *int `json:"lightningLastTime,omitempty"` // Last detection time
|
||||||
}
|
}
|
||||||
|
|
||||||
type TempHumiditySensor struct {
|
type TempHumiditySensor struct {
|
||||||
Name string
|
Name string `json:"name,omitempty"`
|
||||||
TempF *float64
|
TempF *float64 `json:"tempF,omitempty"`
|
||||||
Humidity *int
|
Humidity *int `json:"humidity,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type BatteryStatus struct {
|
type BatteryStatus struct {
|
||||||
Component string
|
Component string `json:"component,omitempty"`
|
||||||
Status *int
|
Status *int `json:"status,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CHORE: Maintain this, used to check against
|
// CHORE: Maintain this, used to check against
|
||||||
@ -84,6 +88,9 @@ const (
|
|||||||
FieldWindChillF = "WindChillF"
|
FieldWindChillF = "WindChillF"
|
||||||
FieldSensorTempF = "SensorTempF"
|
FieldSensorTempF = "SensorTempF"
|
||||||
FieldSensorHumidity = "SensorHumidity"
|
FieldSensorHumidity = "SensorHumidity"
|
||||||
|
FieldLightningDay = "LightningDay"
|
||||||
|
FieldLightningDistance = "LightningDistance"
|
||||||
|
FieldLightningLastTime = "LightningLastTime"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (u *WeatherUpdate) GetStationName() string {
|
func (u *WeatherUpdate) GetStationName() string {
|
||||||
|
@ -5,6 +5,14 @@ import "google/protobuf/timestamp.proto";
|
|||||||
|
|
||||||
option go_package = "gitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weather";
|
option go_package = "gitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weather";
|
||||||
|
|
||||||
|
message CountWeatherUpdatesRequest {
|
||||||
|
GetWeatherOpts opts = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message CountWeatherUpdatesResponse {
|
||||||
|
int32 count = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message GetWeatherRequest {
|
message GetWeatherRequest {
|
||||||
GetWeatherOpts opts = 1;
|
GetWeatherOpts opts = 1;
|
||||||
optional int32 limit = 2;
|
optional int32 limit = 2;
|
||||||
@ -49,6 +57,9 @@ message WeatherUpdate {
|
|||||||
optional double wind_chill_f = 26;
|
optional double wind_chill_f = 26;
|
||||||
repeated TempHumiditySensor temp_humidity_sensors = 27;
|
repeated TempHumiditySensor temp_humidity_sensors = 27;
|
||||||
google.protobuf.Timestamp update_timestamp = 28;
|
google.protobuf.Timestamp update_timestamp = 28;
|
||||||
|
optional int32 lightning_day = 29;
|
||||||
|
optional int32 lightning_distance = 30;
|
||||||
|
optional google.protobuf.Timestamp lightning_last_time = 31;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Represents a temperature and humidity sensor
|
// Represents a temperature and humidity sensor
|
||||||
|
@ -10,4 +10,7 @@ service AmbientLocalWeatherService {
|
|||||||
rpc GetWeather(GetWeatherRequest) returns (GetWeatherResponse) {
|
rpc GetWeather(GetWeatherRequest) returns (GetWeatherResponse) {
|
||||||
option (google.api.http) = {get: "/v1/weather"};
|
option (google.api.http) = {get: "/v1/weather"};
|
||||||
}
|
}
|
||||||
|
rpc CountWeatherUpdates(CountWeatherUpdatesRequest) returns (CountWeatherUpdatesResponse) {
|
||||||
|
option (google.api.http) = {get: "/v1/count"};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user