0

我对powershell很陌生,还不习惯。我正在尝试实时远程控制我的一些服务器。为此,我使用 RestAPI 向我发送 JSON 格式的数据(Powershell 会自动转换为 PSCustomObject)。

问题是我的 JSON/数据 API 中没有字段时间戳,所以我不得不添加它。不幸的是,powershell 中的 JSON 工具似乎有限,我无法直接添加它。我必须创建一个名为 timestamp 的新 PSCustomObject 并将它与来自 API 的数据结合起来。

不幸的是,数据没有被正确解析。我遍历一个字符串,一个字符串数组,一个哈希表。这是最糟糕的。最后我下载了一个我现在正在尝试使用的 JSON.NET 框架......

所以这里是主要的代码部分:

Function Combine-Objects { 
    Param (
        [Parameter(mandatory=$true)]$Object1, 
        [Parameter(mandatory=$true)]$Object2
    )

    $arguments = [Pscustomobject]@() 
    foreach ( $Property in $Object1.psobject.Properties){
        $arguments += @{$Property.Name = $Property.value}  
    }

    foreach ( $Property in $Object2.psobject.Properties){
        $arguments += @{ $Property.Name= $Property.value}         
    }

    $Object3 = [Pscustomobject]$arguments

    return $Object3
    }

while (1) 
{
    $startpoint = "REST API URL"
    $endpoint = "POWER BI API URL"
    $response = Invoke-RestMethod -Method Get -Uri $startpoint 
    $timestamp=get-date -format yyyy-MM-ddTHH:mm:ss.fffZ 
    $response2 = [PsCustomObject]@{"timestamp"=$timestamp}
    $response3 = Combine-Objects -Object1 $response -Object2 $response2
    Invoke-RestMethod -Method Post -Uri "$endpoint" -Body (ConvertTo-Json @($response3))
}

在组合 PSCustomObject 之前,我有:

    total     : 8589463552
    available : 5146566656
    percent   : 40,1
    used      : 3442896896
    free      : 5146566656

转换后给了我一个正确的JSON

    [
        {
            "total":  8589463552,
            "available":  5146566656,
            "percent":  40.1,
            "used":  3442896896,
            "free":  5146566656
        }
    ]

在组合并添加时间戳后,我有:

    Name                           Value                                                                                                                                                           
    ----                           -----                                                                                                                                                           
    total                          8589463552                                                                                                                                                      
    available                      5146566656                                                                                                                                                      
    percent                        40,1                                                                                                                                                            
    used                           3442896896                                                                                                                                                      
    free                           5146566656                                                                                                                                                      
    timestamp                      2019-10-09T22:17:18.734Z    

转换后给了我:

    [
        {
            "total":  8589463552
        },
        {
            "available":  5146566656
        },
        {
            "percent":  40.1
        },
        {
            "used":  3442896896
        },
        {
            "free":  5146566656
        },
        {
            "timestamp":  "2019-10-09T22:17:18.734Z"
        }
    ]

虽然我想要的只是:

    [
     {
      "total" :98.6,
      "available" :98.6,
      "percent" :98.6,
      "used" :98.6,
      "free" :98.6,
      "timestamp" :"2019-10-11T09:21:04.981Z"
     }
    ]
4

1 回答 1

3

我认为您以错误的方式看待这个问题。为什么不简单地将NoteProperty包含的添加DateTime stringPSCustomObject然后将其转换回json格式?

这样的事情就足够了:

$json = @"
 [
    {
         "total":  8589463552,
         "available":  5146566656,
         "percent":  40.1,
         "used":  3442896896,
         "free":  5146566656
     }
  ]
"@
$jsonConverted = $json | ConvertFrom-Json
    
$params = @{
   NotePropertyName  = 'timestamp'
   NotePropertyValue = (Get-Date).ToString('yyyy-MM-ddTHH:mm:ss.fff')
}
$jsonConverted | Add-Member @params
    
$newJson = $jsonConverted | ConvertTo-Json  
$newJson

这将导致json您正在寻找的对象:

{
    "total":  8589463552,
    "available":  5146566656,
    "percent":  40.1,
    "used":  3442896896,
    "free":  5146566656,
    "timestamp":  "2019-10-11T13:33:05.673"
}
于 2019-10-11T11:28:23.600 回答