@@ -76,6 +76,7 @@ def get_au_status(host, auth, auid):
76
76
- LastCompletedDeepCrawlDepth (numeric)
77
77
- LastPoll (numeric)
78
78
- LastPollResult (string)
79
+ - LastMetadataIndex (numeric)
79
80
- PluginName (string)
80
81
- Provider (string)
81
82
- Publisher (string)
@@ -271,6 +272,7 @@ def query_aus(host, auth, select, where=None):
271
272
- LastCompletedDeepCrawlDepth (numeric)
272
273
- LastPoll (numeric)
273
274
- LastPollResult (string)
275
+ - LastMetadataIndex (numeric)
274
276
- Name (string)
275
277
- NewContentCrawlUrls (list of strings)
276
278
- PeerAgreements, a list of records with these fields:
@@ -560,6 +562,7 @@ def _file_lines(fstr):
560
562
'lastCompletedDeepCrawlDepth' : ('Last completed deep crawl depth' , lambda r : r .LastCompletedDeepCrawlDepth ),
561
563
'lastPoll' : ('Last poll' , lambda r : datetimems (r .LastPoll )),
562
564
'lastPollResult' : ('Last poll result' , lambda r : r .LastPollResult ),
565
+ 'lastMetadataIndex' : ('Last metadata index' , lambda r : datetimems (r .LastMetadataIndex )),
563
566
'pluginName' : ('Plugin name' , lambda r : r .PluginName ),
564
567
'provider' : ('Provider' , lambda r : r .Provider ),
565
568
'publisher' : ('Publisher' , lambda r : r .Publisher ),
@@ -709,6 +712,7 @@ def _do_is_daemon_ready(options):
709
712
'lastCompletedDeepCrawlDepth' : ('Last completed deep crawl depth' , lambda r : r .LastCompletedDeepCrawlDepth ),
710
713
'lastPoll' : ('Last poll' , lambda r : datetimems (r .LastPoll )),
711
714
'lastPollResult' : ('Last poll result' , lambda r : r .LastPollResult ),
715
+ 'lastMetadataIndex' : ('Last metadata index' , lambda r : datetimems (r .LastMetadataIndex )),
712
716
'name' : ('Name' , lambda r : r .Name ),
713
717
'newContentCrawlUrls' : ('New content crawl URLs' , lambda r : '<NewContentCrawlUrls>' ),
714
718
'peerAgreements' : ('Peer agreements' , lambda r : '<PeerAgreements>' ),
0 commit comments