中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當前位置: 首頁 > news >正文

wordpress標簽tag搜索引擎優(yōu)化好做嗎

wordpress標簽tag,搜索引擎優(yōu)化好做嗎,山西seo谷歌關(guān)鍵詞優(yōu)化工具,國際貿(mào)易平臺有哪些一、安裝 https://docs.influxdata.com/influxdb/v2/install/?tWindows 解壓后使用cmd運行 訪問 localhost:8086 配置 第一次登入會初始化 配置登入賬號 保存TOKEN 這個TOKEN用于后期代碼鏈接訪問數(shù)據(jù)庫,忘記了只能刪除重新生成 點擊QUCK START進入管理頁面 …

一、安裝

https://docs.influxdata.com/influxdb/v2/install/?t=Windows

image.png

解壓后使用cmd運行

image.png
訪問 localhost:8086

配置

第一次登入會初始化
image.png

配置登入賬號

image.png

保存TOKEN

這個TOKEN用于后期代碼鏈接訪問數(shù)據(jù)庫,忘記了只能刪除重新生成

image.png
點擊QUCK START進入管理頁面
image.png
image.png

默認配置文件

windows:在用戶文件夾下 C:\Users\Administrator.influxdbv2
linux: /etc/influxdb/influxdb.conf

二、C#調(diào)用

Load Data>Sources 選擇c# 查看配置示例

image.png

創(chuàng)建一個控制臺程序

安裝InfluxDB客戶端
image.png

創(chuàng)建鏈接
using System.Linq;
using System.Threading.Tasks;
using InfluxDB.Client;
using InfluxDB.Client.Api.Domain;
using InfluxDB.Client.Core;
using InfluxDB.Client.Writes;namespace Examples
{public class Examples{public static async Task Main(string[] args){// You can generate an API token from the "API Tokens Tab" in the UIvar token = Environment.GetEnvironmentVariable("INFLUX_TOKEN")!;const string bucket = "Test";const string org = "CC";using var client = new InfluxDBClient("http://127.0.0.1:8086", token);}}
}
寫入數(shù)據(jù)

image.png

//方式一、使用WriteRecord
const string data = "mem,host=host1 used_percent=23.43234543";
using (var writeApi = client.GetWriteApi())
{writeApi.WriteRecord(data,bucket, org, WritePrecision.Ns );
}//方式二、使用WritePoint
var point = PointData.Measurement("mem").Tag("host", "host1").Field("used_percent", 23.43234543).Timestamp(DateTime.UtcNow, WritePrecision.Ns);using (var writeApi = client.GetWriteApi())
{writeApi.WritePoint(point,bucket, org);
}//方式三、使用實體類
var mem = new Mem { Host = "host1", UsedPercent = 23.43234543, Time = DateTime.UtcNow };using (var writeApi = client.GetWriteApi())
{writeApi.WriteMeasurement( mem,bucket, org, WritePrecision.Ns);
}[Measurement("mem")]
private class Mem
{[Column("host", IsTag = true)] public string Host { get; set; }[Column("used_percent")] public double? UsedPercent { get; set; }[Column(IsTimestamp = true)] public DateTime Time { get; set; }
}
最終測試代碼
// See https://aka.ms/new-console-template for more information
using InfluxDB.Client;
using InfluxDB.Client.Api.Domain;
using InfluxDB.Client.Writes;Console.WriteLine("Hello, World!");
Environment.SetEnvironmentVariable("INFLUX_TOKEN", "O9I2Kpeg...kLPSrQLWhTiJCQPWy6HJFjN9hK33UoLnG34vfFdqZ5KmoDLS-kkw==");var token = Environment.GetEnvironmentVariable("INFLUX_TOKEN")!;
const string bucket = "Test";
const string org = "CC";using (var client = new InfluxDBClient("http://localhost", token))
{using (var writeApi = client.GetWriteApi()){while (true){var randon = new Random();var point = PointData.Measurement("mem").Tag("host", "host1").Field("used_percent", randon.Next(10, 100)) //可以添加多個字段.Field("memory_percent",randon.Next(0,10)).Timestamp(DateTime.UtcNow, WritePrecision.Ns);writeApi.WritePoint(point, bucket, org);Thread.Sleep(2000);}}
}
在管理頁面查看數(shù)據(jù)

image.png
image.png

http://www.risenshineclean.com/news/55713.html

相關(guān)文章:

  • 上海電子商務網(wǎng)站開發(fā)武漢百度推廣優(yōu)化
  • 網(wǎng)站建設技術(shù)進行開發(fā)鄭州seo代理商
  • 長春網(wǎng)站制作公司哪個好高端seo服務
  • 上海網(wǎng)站建設選緣魁百度搜索結(jié)果優(yōu)化
  • 比特幣交易網(wǎng)站可以做空嗎一站式網(wǎng)絡營銷
  • 昆明網(wǎng)站建設織夢谷歌play
  • 做模具的網(wǎng)站競價外包
  • 北京通州區(qū)網(wǎng)站制作簡述網(wǎng)絡營銷的含義
  • 做網(wǎng)站和app有什么區(qū)別seo工資水平
  • 手機制作網(wǎng)站軟件seo實戰(zhàn)密碼第三版
  • 3小時網(wǎng)站建設平臺滴滴友鏈
  • 網(wǎng)站建設流程共有幾個階段百度一下首頁極簡版
  • 輕蜂加速器網(wǎng)站優(yōu)化策略分析
  • 做網(wǎng)站外包大學生關(guān)于進一步優(yōu)化落實疫情防控措施
  • 施工企業(yè)包括哪些市場推廣seo職位描述
  • 國內(nèi)頂尖小程序開發(fā)公司廣州seo排名收費
  • 廈門建設工程信息網(wǎng)官網(wǎng)seo診斷分析報告
  • 怎么才能建立網(wǎng)站運營培訓班有用嗎
  • 兩學一做注冊網(wǎng)站百度首頁
  • 網(wǎng)站開發(fā)文檔撰寫模板鎮(zhèn)江seo
  • 阿里云做網(wǎng)站需要環(huán)境自己做一個網(wǎng)站要多少錢
  • 沈陽市建設工程質(zhì)量監(jiān)督局網(wǎng)站神馬推廣登錄
  • 職業(yè)生涯規(guī)劃用什么網(wǎng)站做測試微博搜索引擎優(yōu)化
  • 做網(wǎng)站最適合用多大的圖片手游代理加盟哪個平臺最強大
  • 網(wǎng)站和做游戲網(wǎng)站優(yōu)化排名服務
  • 專業(yè)官網(wǎng)設計周口seo公司
  • 備案網(wǎng)站名怎么寫uc信息流廣告投放
  • 游戲模型外包網(wǎng)站推廣公司品牌
  • 網(wǎng)站建設 銷售百度愛采購推廣怎么收費
  • 做導航網(wǎng)站有發(fā)展嗎東莞市網(wǎng)絡seo推廣企業(yè)