1
+ <!DOCTYPE html >
2
+ < html lang ="en ">
3
+ < head >
4
+ < title > Logscape Documentation </ title >
5
+ < script src ="js/kiss.js "> </ script >
6
+ < link href ="css/bootstrap.min.css " rel ="stylesheet "/>
7
+ < link href ="css/style.css " rel ="stylesheet "/>
8
+ <!--link(href="css/font-awesome-4.0.3/css/font-awesome.min.css",rel="stylesheet")-->
9
+ < link href ="css/style-app.css " rel ="stylesheet "/>
10
+ < link href ="css/app.css " rel ="stylesheet "/>
11
+ < link href ="//vjs.zencdn.net/4.9/video-js.css " rel ="stylesheet "/>
12
+ < script src ="//vjs.zencdn.net/4.9/video.js "> </ script >
13
+ < script src ="js/jquery-1.11.0.js "> </ script >
14
+ < script src ="js/bootstrap.min.js "> </ script >
15
+ < script src ="js/navigation.js "> </ script >
16
+ < script >
17
+ function googleTranslateElementInit ( ) {
18
+ new google . translate . TranslateElement ( { pageLanguage : 'en' , layout : google . translate . TranslateElement . InlineLayout . SIMPLE } , 'google_translate_element' ) ;
19
+ }
20
+ </ script >
21
+ < script src ="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit "> </ script >
22
+ < script >
23
+ var breadcrumbs = {
24
+ "gettingstarted" :"Getting Started"
25
+ , "searching" :"Search"
26
+ , "kv" :"Data Discovery"
27
+ , "offsets" :"Using Offsets"
28
+ , "geoip" :"Geo IP"
29
+ , "pattern" :"Using Search Patterns"
30
+ , "video" :"tutorials"
31
+ , "overlays" :"Overlaying Searches"
32
+ , "starthere" :""
33
+
34
+ , "ds" :"Data Sources"
35
+ , "add" :" Add a New Data Source"
36
+ , "multitags" :" Using Multi-Tags"
37
+ , "syslog" :" Connect Syslog Clients"
38
+ , "tags" : " Sources and Tags"
39
+ , "intelligent_field_discovery" :" Intelligent Field Discovery"
40
+ , "types" :"Data Types"
41
+ , "system_fields" :"System Fields"
42
+ , "deploy" :"Deployment"
43
+ , "app" :" Logscape Apps"
44
+ , "agents" : "Agents "
45
+ , "architectures_default" : " Default Deployment"
46
+ , "architectures_failover" : "Failover"
47
+ , "architectures_indexstores" : " Index Stores"
48
+ , "architectures_tenured" :"Tenured Data"
49
+ , "architectures_zones" :" Zones"
50
+ , "Backup" : "Backup"
51
+ , "home" :" The Home Workspace"
52
+ , "import" :" Restoring from Backup"
53
+ , "partial" : " Selective Import"
54
+
55
+ , "arch_zoning" :"Distributed Topology"
56
+ , "arch_clm" :"Centralized Monitoring Topology"
57
+ , "arch_indexstores" :"Multiple Index Store Topology"
58
+
59
+ , "rawtcpserver" : "Tcp Server"
60
+ , "syslogserer" :"Syslog Server"
61
+ , "centralconfigs" :"Centralized Configuration"
62
+ , "boot_properties" :"Boot Properties"
63
+
64
+ , "users" :"Users"
65
+ , "datagroups" : "Data Groups"
66
+ , "nested" : "Nested Groups"
67
+ , "faq" :"Frequently Asked Questions"
68
+ , "ldap" :"Active Directory"
69
+ } ;
70
+ $ ( window ) . load ( function ( ) {
71
+ function genLink ( arr , idx ) {
72
+ if ( idx < 0 ) { return "/" ; }
73
+ var l = "/"
74
+ for ( i = 0 ; i <= idx ; i ++ ) {
75
+ l = l + arr [ i ] + "-" ;
76
+ }
77
+ return l . substring ( 0 , l . length - 1 ) + ".html" ;
78
+ }
79
+
80
+ function upperFirst ( string ) {
81
+ return string . charAt ( 0 ) . toUpperCase ( ) + string . slice ( 1 ) ;
82
+ }
83
+
84
+ function renderCrumbs ( page ) {
85
+ //console.log("rendering breadcrumbs for page:" + page)
86
+ if ( page . indexOf ( "-" ) < 0 ) {
87
+ //console.log("<a href='/index.html'> Home </a> > <a href=" + page + ".html>" + page);
88
+ return ( "<a href='/index.html'> Home </a> > <a href=" + page + ".html>" + upperFirst ( page ) ) ;
89
+ }
90
+ var parts = page . split ( "-" ) ;
91
+ var idx = 0 ;
92
+ //console.log("rendering " + parts);
93
+ var html = "<a href='" + genLink ( parts , - 1 ) + "'> Home </a>" ;
94
+ for ( idx = 0 ; idx < parts . length ; idx ++ ) {
95
+ k = parts [ idx ] ;
96
+
97
+ html = html + "<a href=" + genLink ( parts , idx ) + ">" ;
98
+ if ( breadcrumbs . hasOwnProperty ( k ) ) {
99
+ html = html + " >> " + breadcrumbs [ k ] ;
100
+ } else {
101
+ //console.log("nathen - " + k[0]);
102
+ html = html + " >> " + upperFirst ( k . replace ( / _ / g, ' ' ) ) ;
103
+ }
104
+ //console.log(".");
105
+ }
106
+ //console.log("this far!!!");
107
+ return html
108
+ }
109
+
110
+ var elems = window . location . href . split ( '?' ) [ 0 ] . split ( '/' ) ;
111
+ var currentPage = elems [ elems . length - 1 ] . split ( '.' ) [ 0 ]
112
+ //console.log("crumb>" + renderCrumbs(currentPage));
113
+ $ ( '#widget-bc' ) . html ( renderCrumbs ( currentPage ) ) ;
114
+ } ) ;
115
+
116
+
117
+ </ script >
118
+ < script >
119
+ var blogFeed ;
120
+ function parseRSS ( url , callback ) {
121
+ $ . ajax ( {
122
+ url : document . location . protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent ( url ) ,
123
+ dataType : 'json' ,
124
+ success : function ( data ) {
125
+ callback ( data . responseData . feed ) ;
126
+ } } ) ;
127
+ }
128
+
129
+ $ ( window ) . load ( function ( ) {
130
+ parseRSS ( "http://blog.logscape.com/feed" , function ( feed ) {
131
+ var num = feed . entries . length ;
132
+ for ( i = 0 ; i < num ; i ++ ) {
133
+ var title = feed . entries [ i ] . title ;
134
+ //var link=feed.entries[i].
135
+ link = feed . entries [ i ] . link ;
136
+ $ ( ".resource-list ul" ) . append ( "<li><a href='" + link + "'>" + title + "</a> </li>" )
137
+ blogFeed = feed ;
138
+ }
139
+ } ) ;
140
+ } ) ;
141
+
142
+ </ script >
143
+ < script >
144
+ $ ( window ) . bind ( "pageshow" , function ( ) {
145
+ var $form = $ ( "form" ) [ 0 ] ;
146
+ $form . reset ( ) ;
147
+ } ) ;
148
+
149
+ </ script >
150
+ < script >
151
+ function submit_form ( ) {
152
+ var q = $ ( "#searchBox" ) . val ( )
153
+ q = encodeURIComponent ( q )
154
+ var query = "https://www.google.com/?gws_rd=cr&q=site:logscape.github.io+#q=site:logscape.github.io+" + q
155
+ var location = window . location . href ;
156
+ console . log ( "back:" + location ) ;
157
+ history . pushState ( { } , "" , location ) ;
158
+ window . location . replace ( query ) ;
159
+ }
160
+
161
+ </ script >
162
+ </ head >
163
+ < body >
164
+ < div style ="width:100%;height:85px;background-color:#2980B9; ">
165
+ <!--div
166
+ a(href="/") Documentation
167
+ a(href="") Forums |
168
+ a(href="") Getting Started |
169
+ a(href="") Logscape |
170
+
171
+
172
+ -->
173
+ < div style ="padding-left:100px;padding-top:25px "> < a href ="/index.html "> < img src ="images/logscapeSupport.png " style ="height:45px "/> </ a >
174
+ < div style ="float:right " class ="col-md-3 ">
175
+ < form id ="cse-search-box " action ="" style ="position:right;padding-top:5px;padding-bottom:5px " onSubmit ="submit_form() ">
176
+ < input type ="hidden " name ="cx " value ="015161349156186070243:ktxh8djpql8 "/>
177
+ < input type ="hidden " name ="ie " value ="UTF-8 "/>
178
+ < input id ="searchBox " type ="text " name ="q " size ="31 " style ="margin-left:15px "/>
179
+ < input id ="cseSubmit " type ="submit " value =" " class ="btn-search "/>
180
+ </ form >
181
+ </ div >
182
+ </ div >
183
+ </ div >
184
+ < div id ="navdiv " style ="width:100%;height:40px;background-color:#373737;box-shadow: 0 0 2px #999;color:white; ">
185
+ < div style ="padding-left:70px;padding-top:10px "> < a href ="/Cloud-Introduction.html "> Cloud | </ a > < a href ="http://blog.logscape.com/dwqa-questions/ "> Forums | </ a > < a href ="/apps.html "> Apps | </ a > < a href ="http://www.logscape.com "> Logscape.com </ a >
186
+ < div id ="google_translate_element " class ="float-right display-inline "> </ div > < img style ="height:0;width:0 " src ="http://logscape.com/images/track.png?version=support "/>
187
+ </ div >
188
+ </ div >
189
+ <!--.container-fluid.navbar(style="min-height:30px;margin-bottom:5px;")
190
+ .row(style="height:5px")
191
+ .row
192
+ .col-md-8
193
+ .col-md-1
194
+ -->
195
+ < div class ="container-fluid ">
196
+ <!--.row
197
+ .col-md-7
198
+ form#cse-search-box(action="",style="position:right;padding-top:5px;padding-bottom:5px",onSubmit="submit_form()")
199
+ a(href="/")
200
+ img(src="images/logo.png",style="padding-top:0px,padding-right:15px",width="150")
201
+ input(type="hidden",name="cx",value="partner-pub-2789521296837340:9402765321")
202
+ input(type="hidden",name="ie",value="UTF-8")
203
+ input#searchBox(type="text",name="q",size="31",style="margin-left:15px")
204
+ input.btn-search#cseSubmit(type="submit",value=" ")
205
+
206
+ a(href="http://apps.logscape.com") Apps |
207
+ a(href="http://support.liquidlabs.co.uk") Release 1.3 |
208
+ a(href="http://logscape.activeboard.com/") Forums |
209
+ a(href="gettingstarted.html") Getting Started
210
+
211
+ -->
212
+ < div class ="row ">
213
+ < div class ="col-md-2 "> </ div >
214
+ < div class ="col-md-5 ">
215
+ < div id ="widget-bc " padding-left:150px ="padding-left:150px " class ="breadcrumbs style "> </ div >
216
+ </ div >
217
+ </ div >
218
+ < div class ="row ">
219
+ < div class ="col-md-2 nav-padding ">
220
+ < ul class ="nav nav-tabs nav-stacked "> </ ul >
221
+ <!--ul.nav.nav-tabs.nav-stacked
222
+ li
223
+ a(href="searching.html")▶ Search
224
+
225
+ li
226
+ a(href="workspaces.html")▶ WorkSpaces
227
+ ul
228
+
229
+ li
230
+ a(href="ds.html")▶ Data Sources
231
+ li
232
+ a(href="types.html")▶ Data Types
233
+ li
234
+ a(href="deploy.html")▶ Deployment
235
+ li
236
+ a(href="users.html")▶ Users
237
+ li
238
+ a(href="alerts.html")▶ Alerts
239
+ li
240
+ a(href="technology.html")▶ Technology
241
+ li
242
+ a(href="release-notes.html") Release Notes
243
+
244
+ li
245
+ a.twitter-follow-button(href="https://twitter.com/logscape",data-show-count="false",data-size="large") Follow @logscape
246
+ script.
247
+ =!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
248
+ -->
249
+ < div style ="padding-left:50px ">
250
+ < h4 > Articles </ h4 >
251
+ </ div >
252
+ < hr />
253
+ < div class ="resource-list ">
254
+ < ul style ="list-style:none;padding-left:10px;background-color:#FFFEE7 "> </ ul >
255
+ </ div >
256
+ </ div >
257
+ < div class ="col-md-9 content-area ">
258
+ < div class ="container-fluid ">
259
+ < div class ="row ">
260
+ < div class ="col-md-11 ">
261
+ < h3 > Deployment issues on Solaris</ h3 >
262
+ < p > Logscape will experience issues when attempting to install on some releases of the Solaris operating system due to the lack of the libstdc++ library. If you are experiencing this issue, then your agent.log will display error messages that it was unable to connect to the destination IP due to an "Unsatisfied link error". Fortunately, rectifying this issue is a simple process.</ p >
263
+ < ol >
264
+ < li > Download and install libstdc++ from < a href =" https://www.opencsw.org/package/libstdc++6/ " target ="_blank "> </ a > </ li >
265
+ < li > Locate the newly installed library and add its location to your `LD_LIBRARY_PATH` environment variable
266
+ < ul > (You can locate the library by running `/usr/sbin/pkgchk -L CSWlibstdc++6`)</ ul >
267
+ </ li >
268
+ < li > Run Logscape again</ li >
269
+ </ ol >
270
+ < p > If you run into any further issues when running Logscape on Solaris, please contact support for assistance</ p >
271
+ </ div >
272
+ </ div >
273
+ < div class ="row ">
274
+ < div class ="col-md-11 "> < br /> < br /> < br />
275
+ < div id ="disqus_thread ">
276
+ < script >
277
+ /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
278
+ var disqus_shortname = 'logscape' ; // required: replace example with your forum shortname
279
+ /* * * DON'T EDIT BELOW THIS LINE * * */
280
+ ( function ( ) {
281
+ var dsq = document . createElement ( 'script' ) ; dsq . type = 'text/javascript' ; dsq . async = true ;
282
+ dsq . src = '//' + disqus_shortname + '.disqus.com/embed.js' ;
283
+ ( document . getElementsByTagName ( 'head' ) [ 0 ] || document . getElementsByTagName ( 'body' ) [ 0 ] ) . appendChild ( dsq ) ;
284
+ } ) ( ) ;
285
+ </ script >
286
+ </ div >
287
+ </ div >
288
+ </ div >
289
+ </ div >
290
+ </ div >
291
+ </ div >
292
+ <!--
293
+ hr.dark
294
+ .col-md-3
295
+ Logscape Copyright 2014(c) Registered Trademark
296
+
297
+ -->
298
+ </ div >
299
+ < script >
300
+ $ ( document ) . ready ( function ( ) {
301
+
302
+ $ ( "#cseSubmit" ) . on ( "click" , function ( e ) {
303
+ e . preventDefault ( ) ;
304
+ submit_form ( ) ;
305
+ } ) ;
306
+ $ ( "#searchBox" ) . on ( "keypress" , function ( e ) {
307
+ if ( e . keyCode == 13 ) {
308
+ e . preventDefault ( ) ;
309
+ submit_form ( )
310
+ }
311
+ } ) ;
312
+ } ) ;
313
+
314
+ </ script >
315
+ < script >
316
+ ( function ( g , i , a , n , t , s ) { g [ 'SeeYourVisitors' ] = n ; g [ n ] = g [ n ] || function ( ) {
317
+ ( g [ n ] . q = g [ n ] . q || [ ] ) . push ( arguments ) } , g [ n ] . l = 1 * new Date ( ) ; t = i . createElement ( a ) ,
318
+ s = i . getElementsByTagName ( a ) [ 0 ] ; t . async = 1 ; t . src = '//seeyourvisitors2.appspot.com/gg.js' ;
319
+ s . parentNode . insertBefore ( t , s ) } ) ( window , document , 'script' , 'gg' ) ;
320
+ gg ( 'create' , 'd1a8b082-8806-4793-936f-35f5e41b3592' ) ;
321
+ gg ( 'track' ) ;
322
+ </ script >
323
+ < script src ="js/ga.js "> </ script >
324
+ </ body >
325
+ </ html >
0 commit comments