Hi
For me, executing a JqRequest fails for the amd64 on Windows:
java.lang.IllegalStateException: Unsupported architecture: windows 11:amd64
at com.arakelian.jq.NativeLib.getPath(NativeLib.java:154)
at com.arakelian.jq.ImmutableNativeLib.access$1001(ImmutableNativeLib.java:31)
at com.arakelian.jq.ImmutableNativeLib$InitShim.getPath(ImmutableNativeLib.java:144)
I'm using the library according to the documentation:
JqRequest request = ImmutableJqRequest.builder()
.lib(jq)
.input(payload)
.filter(".data.result[] | .metric.instance +\": \"+ .value[1]")
.build();
Judging from NativeLib.getPath() it seems like amd64 is not supported for Windows, only x86.
Any chance to get a native implementation for my system?
Hi
For me, executing a
JqRequestfails for theamd64on Windows:I'm using the library according to the documentation:
Judging from
NativeLib.getPath()it seems likeamd64is not supported for Windows, onlyx86.Any chance to get a native implementation for my system?