阶段性提交

This commit is contained in:
GoEdgeLab
2021-06-27 22:00:02 +08:00
parent 14ae8dbaa1
commit 792ee549b8
20 changed files with 3344 additions and 398 deletions

View File

@@ -16,10 +16,10 @@ message ACMETask {
int64 createdAt = 5;
bool autoRenew = 6;
string authType = 7;
string authURL = 8;
ACMEUser acmeUser = 30;
DNSProvider dnsProvider = 31;
SSLCert sslCert = 32;
ACMETaskLog latestACMETaskLog = 33;
}

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 指标定义
message MetricItem {
int64 id = 1;
bool isOn = 2;
string code = 3;
string category = 4;
string name = 5;
repeated string keys = 6;
int32 period = 7;
string periodUnit = 8;
string value = 10;
}