We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03038bd commit ad04339Copy full SHA for ad04339
tools/install-interceptors.sh
@@ -81,10 +81,18 @@ elif [[ $pkgtype == deb ]]; then
81
apt-get update
82
apt-get install -y confluent-librdkafka-plugins
83
84
+ ldd /usr/lib/monitoring-interceptor.so.1
85
+
86
elif [[ $pkgtype == osx ]]; then
87
88
wget -O monitoring.zip http://packages.confluent.io/archive/${CPVER}/confluent-librdkafka-plugins-0.11.0.zip
89
unzip monitoring.zip monitoring-interceptor.dylib
90
+ echo "Before change:"
91
+ otool -L monitoring-interceptor.dylib
92
+ install_name_tool -change /usr/local/lib/librdkafka.1.dylib librdkafka.1.dylib monitoring-interceptor.dylib
93
+ echo "After change:"
94
95
cp monitoring-interceptor.dylib /usr/local/lib
96
97
98
fi
0 commit comments