Hi,
I had issue running the script nsx-edge-graphite.pl on version 6.4.5 of NSX. It was returning the error parserError Get HTTP Status 406 - Not Acceptable
I resolved by changing the script line as below:
From:
my $headers = {
"Accept" => "application/*+xml;version=1.5",
"Authorization" => 'Basic ' . encode_base64($nsxUsername . ':' . $nsxPassword),
};
To:
my $headers = {
"Accept" => "application/xml;version=1.5",
"Authorization" => 'Basic ' . encode_base64($nsxUsername . ':' . $nsxPassword),
};