From 7478e610d99d1f2fb383ecbfa0b70d72eae27f81 Mon Sep 17 00:00:00 2001 From: server Date: Tue, 10 Dec 2019 18:12:37 -0500 Subject: solr changes --- .../webapp/partials/alias_overview.html | 46 +++ .../solr-webapp/webapp/partials/analysis.html | 128 ++++++ .../server/solr-webapp/webapp/partials/cloud.html | 302 ++++++++++++++ .../webapp/partials/cluster_suggestions.html | 49 +++ .../webapp/partials/collection_overview.html | 85 ++++ .../solr-webapp/webapp/partials/collections.html | 395 ++++++++++++++++++ .../solr-webapp/webapp/partials/core_overview.html | 206 ++++++++++ .../server/solr-webapp/webapp/partials/cores.html | 224 ++++++++++ .../solr-webapp/webapp/partials/dataimport.html | 209 ++++++++++ .../solr-webapp/webapp/partials/documents.html | 111 +++++ .../server/solr-webapp/webapp/partials/files.html | 47 +++ .../server/solr-webapp/webapp/partials/index.html | 261 ++++++++++++ .../webapp/partials/java-properties.html | 27 ++ .../webapp/partials/logging-levels.html | 56 +++ .../solr-webapp/webapp/partials/logging.html | 57 +++ .../server/solr-webapp/webapp/partials/login.html | 160 ++++++++ .../solr-webapp/webapp/partials/plugins.html | 72 ++++ .../server/solr-webapp/webapp/partials/query.html | 369 +++++++++++++++++ .../solr-webapp/webapp/partials/replication.html | 239 +++++++++++ .../server/solr-webapp/webapp/partials/schema.html | 455 +++++++++++++++++++++ .../solr-webapp/webapp/partials/segments.html | 99 +++++ .../server/solr-webapp/webapp/partials/stream.html | 64 +++ .../solr-webapp/webapp/partials/threads.html | 65 +++ .../solr-webapp/webapp/partials/unknown.html | 23 ++ 24 files changed, 3749 insertions(+) create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/alias_overview.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/analysis.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/cloud.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/cluster_suggestions.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/collection_overview.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/collections.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/core_overview.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/cores.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/dataimport.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/documents.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/files.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/index.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/java-properties.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/logging-levels.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/logging.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/login.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/plugins.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/query.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/replication.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/schema.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/segments.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/stream.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/threads.html create mode 100644 solr-8.3.1/server/solr-webapp/webapp/partials/unknown.html (limited to 'solr-8.3.1/server/solr-webapp/webapp/partials') diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/alias_overview.html b/solr-8.3.1/server/solr-webapp/webapp/partials/alias_overview.html new file mode 100644 index 000000000..0cf8124b5 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/alias_overview.html @@ -0,0 +1,46 @@ + +
+ +
+ +
+ +

Alias: {{selectedCollection.name}}

+ +
+ +
+ +
Collections:
+
+ + {{coll}}{{$last ? '' : ', '}} + +
+ + +
{{ key }}
+
{{ value }}
+
+
+ +
+
+
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/analysis.html b/solr-8.3.1/server/solr-webapp/webapp/partials/analysis.html new file mode 100644 index 000000000..23527f735 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/analysis.html @@ -0,0 +1,128 @@ + +
+ +
+
This Functionality requires the /analysis/field Handler to be registered and active!
+
+ +
+
{{analysisError}}
+
+ +
+ +
+ +
+ +
    + +
  • + + + + +
  • + +
  • + + + + +
  • + +
  • +
    + + + + Schema Browser  + +
    + + + + + +
    + +
    +
  • + +
+ +
+ +
+ +
+
+ + + + + + + + + +
+
+ {{component.short}} +
+
+
+ + + + +
+ + + + +
{{ caption }}
+
+
+
+
+ + + + + + +
+ + + + + + +
{{value.value}}
+
+
+
 
+
+
+
+
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/cloud.html b/solr-8.3.1/server/solr-webapp/webapp/partials/cloud.html new file mode 100644 index 000000000..c2a878ad0 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/cloud.html @@ -0,0 +1,302 @@ + +
+ +
+ +
+ + +
Status: {{zkState.status}}
+
+ Errors: +
    +
  • {{error}}
  • +
+
+
ZK connection string: {{zkState.zkHost}}
+
Ensemble size: {{zkState.ensembleSize}}
+
Ensemble mode: {{zkState.mode}}
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{{host.host}}
{{key}} + {{key === 'zk_version' ? host[key].split("-")[0] : host[key]}} +
{{key}} + {{host[key]}} +
{{key}} + {{host[key]}} +
{{key}} + {{host[key]}} +
+
+ +
+ + +
+ + Metadata +
+
    +
  • +
    +
    {{ key }}
    +
    {{ prop }}
    +
    +
  • +
+
+ +
+ Node "{{znode.path }}" has no utf8 Content +
+          
+   +
+ + +
+ +
+ +
+ +
+
+ + No hosts found. + Hosts {{from+1}} - {{from + hostsToShow.length}} of {{filteredHosts.length}}.  + + Filter by:   + + +   + + +   + + Show hosts per page. + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
HostNodeCPUHeapDisk usageRequestsCollectionsReplicas
+
{{h.host}}
+ + {{h.system.system.name}} + {{h.memTotal}} + Java {{h.system.jvm.spec.version}} +
Load: {{h.loadAvg}} +
+
+ {{h.system.system.name}} {{h.system.system.version}}, {{h.system.system.availableProcessors}}cpu
+ Uptime: {{h.uptime}}
+ Memory: {{h.memTotal}}
+ File descriptors: {{h.openFileDescriptorCount}}/{{h.maxFileDescriptorCount}}
+ Disk: {{h.diskTotal}} used: {{h.diskUsedPct}}%
+ Load: {{h.loadAvg}} +
+ +
+
(DEAD)
+
+ Uptime: {{n.jvmUptime}}
+
+ Java {{n.system.jvm.jre.version}}
+ Solr {{n.system.lucene['solr-impl-version'].split(" ")[0]}}
+
+ +
+
+
+ {{n.cpuPct}}% +
+
+
+ {{n.heapUsedPct}}% +
+
+ Max: {{n.heapTotal}}
+ Used: {{n.heapUsed}} +
+
+
+
+ {{n.size}} +
+
+ Total #docs: {{n.numDocs}}
+ Avg size/doc: {{n.sizePerDoc}} +
+
+
+
+ RPM: {{n.req15minRate}}
p95: {{n.reqp95_ms}}ms
+
+
(none)
+
+ {{ c }} +
+ +
+
(none)
+
+
{{ core.label }} ({{core.numDocsHuman}} docs)
+
{{ core.label }}
+
    +
  • deleted: {{core.deletedDocsHuman}}
  • +
  • warmupTime: {{core.warmupTime}}
  • +
  • avg size/doc: {{core.avgSizePerDoc}}
  • +
+
+ +
+
+ +
+ +
+ +
+
    +
  • Leader
  • +
  • Active
  • +
  • Recovering
  • +
  • Down
  • +
  • Recovery Failed
  • +
  • Inactive
  • +
  • Gone
  • +
  • Replica Type:
    N(NRT),T(TLOG),
    P(PULL)
  • +
+
+
+
+ + No collections found. + Collections {{start}} - {{last}} of {{total}}.  + + Filter by:  T:{{filterType}} + + + + + +   + + Show per page. + +
+
+ +
+ +
+ + + +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/cluster_suggestions.html b/solr-8.3.1/server/solr-webapp/webapp/partials/cluster_suggestions.html new file mode 100644 index 000000000..892b0bbc9 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/cluster_suggestions.html @@ -0,0 +1,49 @@ + + +
+

Cluster Suggestions

+
+ + + + + + + + + + + + + + + + +
TypeReasonDetailsAction
NA
{{ x.type }}{{ x.violation.clause }}node: {{ x.violation.node }}, collection : {{ x.violation.collection }}, shard : {{ x.violation.shard }}   +
+ +
+
+
+
+
+ +
+ diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/collection_overview.html b/solr-8.3.1/server/solr-webapp/webapp/partials/collection_overview.html new file mode 100644 index 000000000..cf1c18c31 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/collection_overview.html @@ -0,0 +1,85 @@ + +
+ +
+ +
+ +

Collection: {{selectedCollection.name}}

+ +
+ +
+ +
Config name:
+
{{selectedCollection.configName}}
+ +
Max shards per node:
+
{{selectedCollection.maxShardsPerNode}}
+ +
Replication factor:
+
{{selectedCollection.replicationFactor}}
+ +
Auto-add replicas:
+
yes
+ +
Router name:
+
{{selectedCollection.router.name}}
+ +
+ +
+
+ +
+ +

Shards

+ +
+ +
+

{{name}}

+
+
Range:
+
{{ shard.range }}
+ +
Active:
+
yes
+ +
Replicas:
+
+
+

{{replica.core}}

+
+
Base URL:
{{replica.base_url}}
+
Core:
{{replica.core}}
+
Active:
+
yes
+
Leader:
+
yes
+
+
+ +
+
+
+
+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/collections.html b/solr-8.3.1/server/solr-webapp/webapp/partials/collections.html new file mode 100644 index 000000000..198030c74 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/collections.html @@ -0,0 +1,395 @@ + +
+ + + +
+
+ +
+ +

+

+ +

  + +

+ +

+

+ +

+

+ +

+ Show advanced

+
+ +

Advanced options:

+

+ +

+ +

+

+ +

+

+ +

+

+ +

+ +

+ +
+

+ {{addMessage}} +

+ +

+ + +

+ +
+ +
+
+ +
+ + + +

+

+ +

+

+ + +

+ {{renameMessage}} +

+ +

+ + +

+
+ +
+
+ +
+ +
+ + + + + +
+ +
+ +

Please type collection name to confirm deletion:

+

+

+ +

+ {{deleteMessage}} +

+ +

+ + +

+
+ +
+ +
+ +
+

Are you sure you want to delete alias {{ collection.name }}?

+ +

+ + +

+
+ +
+ +
+ + +
+

Please select a collection or alias

+
+ +
+ +
+ +

Alias: {{collection.name}}

+ +
+
+
+ +
+ +
    + +
  • +
    +
    Collections:
    +
    + + {{coll}}{{$last ? '' : ', '}} + +
    +
    +
    {{ key }}
    +
    {{ value }}
    +
    +
    +
  • +
+
+
+ +
+ +

Collection: {{collection.name}}

+ +
+
+
+ +
+ +
    + +
  • +
    +
    Shard count:
    +
    {{collection.shards.length}}
    +
    +
  • +
  • +
    configName:
    +
    {{collection.configName}}
    +
  • + +
  • +
    replicationFactor:
    +
    {{collection.replicationFactor}}
    +
  • + +
  • +
    maxShardsPerNode:
    +
    {{collection.maxShardsPerNode}}
    +
  • + +
  • +
    router:
    +
    {{collection.router.name}}
    +
  • + +
  • +
    autoAddReplicas:
    +
    {{collection.autoAddReplicas}}
    +
  • + +
  • +
    aliases:
    +
    + + {{coll}}{{$last ? '' : ', '}} + +
    +
  • +
+ +
+
+ +
+
+ +

+ Shard: {{shard.name}} +
+

+ +
    +
  • +
    +

    Are you sure you want to delete this shard?

    +

    + + +

    +
    +
  • +
+
    +
  • +
      +
    • +
      +
      state:
      +
      {{shard.state}}
      +
      +
    • +
    • +
      +
      range:
      +
      {{shard.range}}
      +
      +
      +
    • +
    • +
        +
      • +

        + + Replica: {{replica.name}} + +
        +

        +
      • +
      • +
          +
        • +
          + +

          Are you sure you want to delete this replica?

          + +

          + + +

          +
          +
        • +
        +
          +
        • +
          +
          core:
          +
          {{replica.core}}
          +
          +
        • + +
        • +
          +
          base URL:
          +
          {{replica.base_url}}
          +
          +
        • + +
        • +
          +
          node name:
          +
          {{replica.node_name}}
          +
          +
        • + +
        • +
          +
          state:
          +
          {{replica.state}}
          +
          +
        • + +
        • +
          +
          leader:
          +
          +
          +
        • +
        +
      • + +
      +
    • +
    • + + + +
    • +
    +
    + +
    + +

    + + node: {{shard.replicaNodeName}} +

    + +

    + {{createReplicaMessage}} +

    + +

    + + +

    +

     

    +
    + +
    +
  • +
+
+
+ +
+ +
+ + + +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/core_overview.html b/solr-8.3.1/server/solr-webapp/webapp/partials/core_overview.html new file mode 100644 index 000000000..f1826f65c --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/core_overview.html @@ -0,0 +1,206 @@ + +
+ +
+ +
+ +

Statistics

+ +
+
{{statsMessage}}
+
+ +
+ +
+ +
Last Modified:
+
{{index.lastModified | timeago}}
+ +
Num Docs:
+
{{index.numDocs}}
+ +
Max Doc:
+
{{index.maxDoc}}
+ +
Heap Memory Usage:
+
{{index.indexHeapUsageBytes}}
+ +
Deleted Docs:
+
{{index.deletedDocs}}
+ +
Version:
+
{{index.version}}
+ +
Segment Count:
+
{{index.segmentCount}}
+ +
Current:
+
+ +
+ +
+
+ +
+ +

Instance

+ +
+
{{indexMessage}}
+
+ +
+ +
+ +
CWD:
+
{{ core.directory.cwd }}
+ +
Instance:
+
{{ core.directory.instance }}
+ +
Data:
+
{{ core.directory.data }}
+ +
Index:
+
{{ core.directory.index }}
+ +
Impl:
+
{{ core.directory.dirimpl }}
+ +
+ +
+
+ +
+
+ +
+ +

+ + Replication + (Slave) + (Master) + +

+ +
+
{{replicationMessage}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
IndexVersionGenSize
Master (Searching)
{{replication.indexVersion}}
{{replication.generation}}
{{replication.indexSize || '-'}}
Master (Replicable)
{{replication.master.replicableVersion || '-'}}
{{replication.master.replicableGeneration || '-'}}
-
Master (Replicable)
{{replication.master.replicableVersion || '-'}}
{{replication.master.replicableGeneration || '-'}}
-
Master (Searching)
{{replication.slave.masterDetails.indexVersion}}
{{replication.slave.masterDetails.generation}}
{{replication.slave.masterDetails.indexSize || '-'}}
Slave (Searching)
{{replication.indexVersion}}
{{replication.generation}}
{{replication.indexSize || '-'}}
+ +
+
+ +
+ +

Healthcheck

+ +
+
{{healthcheckMessage}}
+
+ +
+
+ +
Status:
+
+ +
+
+ +
+
+
+ +
+ +
+ + +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/cores.html b/solr-8.3.1/server/solr-webapp/webapp/partials/cores.html new file mode 100644 index 000000000..161576956 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/cores.html @@ -0,0 +1,224 @@ + +
+ + + +
+ +
+ + + + + + + + +
+ +
+ +

+

+ +

+

+ +

+

+ +

+

+ +

+

+ +
+ +

+

+ +

+

+ +
+ +

+ + instanceDir and dataDir need to exist before you can create the core + +

+ +

+ {{addMessage}} +

+ +

+ + +

+ +
+ +
+ +
+ +
+ + + +

+

+ +

+ {{renameMessage}} +

+ +

+ + +

+
+ +
+ +
+ +
+ +

+

+ +

+

+ +

+ {{swapMessage}} +

+ +

+ + +

+ +
+ +
+ +
+ +
+ +
+ +

Core

+ +
+
+
+ +
+ +
    + +
  • +
    startTime:
    +
    {{core.startTime | timeago}}
    +
  • + +
  • +
    instanceDir:
    +
    {{core.instanceDir}}
    +
  • + +
  • +
    dataDir:
    +
    {{core.dataDir}}
    +
  • + +
+ +
+
+ +
+ +

Index

+ +
+
{{core.message}}
+
+ +
+ +
    + +
  • +
    lastModified:
    +
    {{core.index.lastModified | timeago}}
    +
  • + +
  • +
    version:
    +
    {{core.index.version}}
    +
  • + +
  • +
    numDocs:
    +
    {{core.index.numDocs}}
    +
  • + +
  • +
    maxDoc:
    +
    {{core.index.maxDoc}}
    +
  • + +
  • +
    deletedDocs:
    +
    {{core.index.deletedDocs}}
    +
  • + +
  • +
    current:
    +
    +
  • + +
  • +
    directory:
    +
    {{core.index.directory}}
    +
  • + +
+ +
+
+ +
+ +
+ + + +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/dataimport.html b/solr-8.3.1/server/solr-webapp/webapp/partials/dataimport.html new file mode 100644 index 000000000..dd11f5471 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/dataimport.html @@ -0,0 +1,209 @@ + +
+ +
The solrconfig.xml file for this index does not have an operational DataImportHandler defined!
+
+ +
+ +
+ +

Last Update: {{lastUpdate}}

+
+ + {{info.text}} (Duration: {{info.timeTaken | readableSeconds }}) + +
+
+ + {{ doc.name }}: {{doc.value | number}} {{ doc.speed | number}}/s, + +
+
+ + {{ date.name }}: + {{ date.value | timeago }} + +
+
+ + + +
+ +
+ +
+ +

+ Raw Status-Output +

+ +
+
+
+ +
+ +
+ +
+ +
+ +
+ +

+ Configuration + Reload + Debug-Mode +

+ +
+
+
+ +
+
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +

+ Raw Debug-Response +

+ +
+
+
+ +
+ + No Request executed + + +
+
+
+ +
+ +
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + +
+ + + +
+ + + +

Auto-Refresh Status

+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/documents.html b/solr-8.3.1/server/solr-webapp/webapp/partials/documents.html new file mode 100644 index 000000000..2bf3f1298 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/documents.html @@ -0,0 +1,111 @@ + + +
+
+
+ + + + +
+
+
+
+
+
Field: +
+
Field Data: + +
+
+ +
+ + + +
+ +
+
+ +
+ +
+ +
+ + + + +
+
+
+ + +
+
+
+
+
+ Status: {{ responseStatus }} +
+
+ Response: +
+
+
+ +
+
+ + diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/files.html b/solr-8.3.1/server/solr-webapp/webapp/partials/files.html new file mode 100644 index 000000000..6a31096f0 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/files.html @@ -0,0 +1,47 @@ + +
+ +
+ +
+ + + +
+
+ + + +
+ +
+
+
+ + +
+ +
+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/index.html b/solr-8.3.1/server/solr-webapp/webapp/partials/index.html new file mode 100644 index 000000000..b9e6a90f4 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/index.html @@ -0,0 +1,261 @@ + +
+ +
+ +
+ +
+ +

Instance

+ +
+ +
    + +
  • +
    Start
    +
    {{system.jvm.jmx.startTime | timeago}}
    +
  • + + +
+ +
+ +
+ +
+ +

Versions

+ +
+ +
    + +
  • +
    solr-spec
    +
    {{system.lucene["solr-spec-version"]}}
    +
  • + +
  • +
    solr-impl
    +
    {{system.lucene["solr-impl-version"]}}
    +
  • + +
  • +
    lucene-spec
    +
    {{system.lucene["lucene-spec-version"]}}
    +
  • + +
  • +
    lucene-impl
    +
    {{system.lucene["lucene-impl-version"]}}
    +
  • + +
+ +
+ +
+ +
+ +
+ +
+ +

System + {{load_average[0]}} {{load_average[1]}} {{load_average[2]}} +

+ reload + +
+ +
+ +

Physical Memory + {{memoryPercentage}} +

+
+ +
+ {{memoryMax}} + +
+ {{memoryTotalDisplay}} + +
+ +
+ +
+ +
+ +
+ +

Swap Space + {{swapPercentage}} +

+
+ +
+ {{swapMax}} + +
+ {{swapTotalDisplay}} + +
+ +
+ +
+ +
+ +
+ +

File Descriptor Count + {{fileDescriptorPercentage}} +

+
+ +
+ {{system.system.maxFileDescriptorCount}} + +
+ {{system.system.openFileDescriptorCount}} + +
+ +
+ +
+ +
+ +

Sorry, no information available

+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +

JVM

+ +
+ +
    + +
  • +
    Runtime
    +
    {{system.jvm.name}} {{system.jvm.version}}
    +
  • + +
  • +
    Processors
    +
    {{system.jvm.processors}}
    +
  • + +
  • +
    Args
    +
    {{arg}}
    +
  • + +
+ +
+ +
+ +
+
+ +
+ +

JVM-Memory + {{javaMemoryPercentage}} +

+ +
+ +
+
+ +
+ {{javaMemoryMax}} + +
+ {{javaMemoryTotalDisplay}} + +
+ {{javaMemoryUsedDisplay}} + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/java-properties.html b/solr-8.3.1/server/solr-webapp/webapp/partials/java-properties.html new file mode 100644 index 000000000..047de48d5 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/java-properties.html @@ -0,0 +1,27 @@ + +
+
    +
  • +
    +
    +
    {{value.value}}
    +
    +
  • +
+
+ diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/logging-levels.html b/solr-8.3.1/server/solr-webapp/webapp/partials/logging-levels.html new file mode 100644 index 000000000..5a4a2d681 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/logging-levels.html @@ -0,0 +1,56 @@ + +
+ + +
+ +
+

{{watcher}}

+
    +
  • +
+
+
+
+ + diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/logging.html b/solr-8.3.1/server/solr-webapp/webapp/partials/logging.html new file mode 100644 index 000000000..9952360b3 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/logging.html @@ -0,0 +1,57 @@ + +
+ +
+
+

{{watcher}}

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Time ({{timezone}})LevelCoreLoggerMessage
{{ timezone == "UTC" ? event.utc_time : event.local_time }}{{ event.level }} {{event.showTrace}}{{ event.core }}{{event.loggerBase}}{{ event.message }}
{{event.trace}}
No Events available
+ +
+
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/login.html b/solr-8.3.1/server/solr-webapp/webapp/partials/login.html new file mode 100644 index 000000000..29c8c7150 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/login.html @@ -0,0 +1,160 @@ + +
+ +
+

Basic Authentication

+ +
+

+ Solr requires authentication for resource {{authLocation === '/' ? 'Dashboard' : authLocation}}.
+ Please log in with your username and password for realm {{authRealm}}. +

+
+
{{error}}
+
+
+ + + Username is required +
+
+ + + Password is required +
+
+
+ +
+
+
+ +
+

+ Logged in as user {{authLoggedinUser}}. Realm={{authRealm}}.
+

+
+
+
+ +
+
+
+ +
+ +
+

Kerberos Authentication

+

Your browser did not provide the required information to authenticate using Kerberos. + Please check that your computer has a valid ticket for communicating with Solr, + and that your browser is properly configured to provide that ticket when required. + For more information, consult + + Solr's Kerberos documentation + . +

+ The response from the server was: +
+
HTTP 401 {{statusText}}
+WWW-Authenticate: {{wwwAuthHeader}}
+
+
+ +
+

OpenID Connect (JWT) authentication

+ +
+ Callback from ID Provider received. +

+ There were errors during login with ID Provider. Please try again.
+

+
+
+

+ Solr requires authentication for resource {{authLocation === '/' ? 'Dashboard' : authLocation}}. +

+
+

+ Please log in with your Identity Provider (IdP) for realm {{authRealm}}. +

+

+ Clicking the button below, you will be redirected to the authorization endpoint of the ID provider:
+ {{authData['authorizationEndpoint']}} +

+
+
{{error}}
+
+
+ +
+
+
+
+

+ In order to log in to the identity provider, you need to load this page from the Solr node registered as callback node:
+ {{jwtFindLoginNode()}}
+ After successful login you will be able to navigate to other nodes. +

+

+

+
+ +
+
+

+
+ +
+ +
+

+ Logged in as user {{authLoggedinUser}}. Realm={{authRealm}}.
+

+
+
+
+ +
+
+
+ +
+ +
+

Authentication scheme not supported

+ + + +

Some or all Solr operations are protected by an authentication scheme that is not yet supported by this Admin UI ({{authScheme}}).

+

Solr returned an error response: +


+
HTTP 401 {{statusText}}
+WWW-Authenticate: {{wwwAuthHeader}}
+
+

+

A possible workaround may be to use another client that supports this scheme.

+
+
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/plugins.html b/solr-8.3.1/server/solr-webapp/webapp/partials/plugins.html new file mode 100644 index 000000000..aaa424d3b --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/plugins.html @@ -0,0 +1,72 @@ + +
+ +
+
    +
  • + + {{ plugin.name }} + +
      +
    • +
      +
      {{ key }}:
      + +
      {{value}}
      +
      +
    • +
    • + stats: +
        +
      • +
        +
        {{key}}:
        +
        {{value}}
        +
        +
      • +
      +
    • +
    +
+
+ + + +
+
+ +

Watching for Changes

+ + +
+
+
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/query.html b/solr-8.3.1/server/solr-webapp/webapp/partials/query.html new file mode 100644 index 000000000..3d329ea77 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/query.html @@ -0,0 +1,369 @@ + +
+ +
+
+ + + +
+ common +
+ + + + + +
+
+ +
+ + +
+
+
+ + + + + +
+ + +
+ + + + + + + + + + + + + + + +
+
+ +
+ + + +
+ + + +
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + +
+
+ +
+ + + +
+ + + + + + + + + + +
+
+ +
+ + + +
+ + + + + + + + + + +
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+ +
+ + {{hostPortContext}}{{url}} + +
+
+
+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/replication.html b/solr-8.3.1/server/solr-webapp/webapp/partials/replication.html new file mode 100644 index 000000000..b3d668422 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/replication.html @@ -0,0 +1,239 @@ + +
+ +
+ +
{{ progress.ERROR }}
+ +
+ +
+ +
+ + {{progress.replicationStartTime}} + +
+ +
+ + 5.1 MB/s + +
+ +
+ +
+ +
{{progress.numFilesToDownload}} Files
+
{{progress.bytesToDownload}}
+ +
+ +
+ + ETA: {{progress.timeRemaining | readableSeconds }} + +
+ +
+ +
+ + {{progress.totalPercent}}% + +
+ +
+ +
{{progress.numFilesDownloaded}} Files
+
{{progress.bytesDownloaded}}
+ +
+ +
+ +
+ +
+ +
+ +
Current File:
+
{{progress.currentFile}}
+
+ {{progress.currentFileSizeDownloaded}} / {{progress.currentFileSize}} [{{progress.currentFileSizePercent}}%] +
+ +
+ +
+ +
+ +
Iterations:
+
+
    +
  • {{iteration.date}}
  • +
+ + Show all Iterations + Hide past Iterations + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
IndexVersionGenSize
Master (Searching) +
{{versions.masterSearch.version}}
+
+
{{versions.masterSearch.generation}}
+
+
{{versions.masterSearch.size}}
+
Master (Replicable) +
{{versions.master.version}}
+
+
{{versions.master.generation}}
+
+
{{versions.master.size}}
+
Slave (Searching) +
{{versions.slave.version}}
+
+
{{versions.slave.generation}}
+
+
{{versions.slave.size}}
+
+ +
+ +
+ +
Settings:
+
    +
  • +
    +
    master url:
    +
    {{settings.masterUrl}}
    +
    +
  • +
  • +
    polling enable:
    +
    + (interval: {{settings.pollInterval}})  +
    +
  • +
+ +
+ +
+ +
Settings (Master):
+
    +
  • +
    replication enable:
    +
     
    +
  • +
  • +
    replicateAfter:
    +
    {{master.replicateAfter}}
    +
  • +
  • +
    confFiles:
    +
    {{file.name}}{{ $last ? '' :', '}}
    +
  • +
+ +
+ +
+ + + +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/schema.html b/solr-8.3.1/server/solr-webapp/webapp/partials/schema.html new file mode 100644 index 000000000..e94b6dab4 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/schema.html @@ -0,0 +1,455 @@ + +
+ +
+ +
+
+ + + + +
+ +

+

+ +

+ +

+ +

+

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ + Show omit options + Hide omit options + +

+ +
+ +

+ +

+ +

+ +

+ +

+ +

+
+ +

+ + Show term vector options + Hide term vector options + +

+
+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +

+ +
+ +

+ + Show sort options + Show sort options + +

+
+

+ +

+ +

+ +

+ +
+ +
+ {{error}}
+ +

+ + + +

+ + + +
+ +
+ +
+ +

+

+ +

+

+ +
+ {{error}}
+ +

+ + +

+ +
+ +
+
+ +
+ +
+ +
+ +
+

+ {{selectedType}}: + {{name}} +

+
+ +
+ +

Because your Index is empty, we do not have enough Information about this Field

+ +
+ +
+ +
Field-Type:
+
{{analysis.data.className}}
+ +
Similarity:
+
{{ display.similarity.details }}
+ +
PI Gap:
+
{{ display.positionIncrementGap }}
+ +
Docs:
+
{{display.docs | number}}
+ +
Distinct:
+
{{display.distinct}}
+ +
+ + + + + + + + + + + + + + + + + + + + + +
Flags:{{key.name}}
{{row.name}}{{row.comment}} + +   +
+ + + +
+ +
+ +
+ + +
+ N.B. Loaded from a single core - not from the whole collection. + + Autoload + +
+ +

Sorry, no Term Info available :(

+ +
+ +
+

+ + /{{termInfo.maxTerms | number}} Top-Terms: + Query  +

+
+ +
    +
  • +

    {{countGroup.count}}

    + +
  • + +
+ +
+ +
+ +

Histogram:

+
    +
  • +
    +
    {{ row.key | number}}
    +
    {{ row.value | number }}
    +
    +
  • + +
+ +
+ +
+ +
+ +
+ + +
+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/segments.html b/solr-8.3.1/server/solr-webapp/webapp/partials/segments.html new file mode 100644 index 000000000..e1174aba5 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/segments.html @@ -0,0 +1,99 @@ + +
+
+ +
+ +

Segments

+

Auto-Refresh

+ reload + +
+
+
+ +
+ +
+ +
+ +
+ +
    +
  • +
    +
    +
    Size
    +
    +
    +
    0
    +
    + {{x.value}} +   +
    +
    {{segmentMB | number}} MB
    +
    +
    +
  • +
  • +
    +
    +
    {{ segment.name }}
    +
    +
    +
     
    +
    +
    Segment {{segment.name}}:
    +
    #docs:
    +
    {{ segment.size | number }}
    +
    #dels:
    +
    {{ segment.delCount | number }}
    +
    size:
    +
    {{ segment.sizeInBytes | number }} bytes
    +
    age:
    +
    {{ segment.age }}
    +
    source:
    +
    {{ segment.source }}
    +
    +
    +  
    +
    +
    +
  • +
  • +
    +
    +
    Deletions: {{ deletionsPercentage }}%
    +
    +
  • +
+ +
+ +
+ +
+
+
+ +
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/stream.html b/solr-8.3.1/server/solr-webapp/webapp/partials/stream.html new file mode 100644 index 000000000..683cf76d9 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/stream.html @@ -0,0 +1,64 @@ + +
+ +
+
+ + + + + + + +
+
+ +
+ + {{hostPortContext}}{{url}} + +
+
+
+
+ + + Stream Decorator + + Stream Source + + Graph Source + + Datastore + +
+
+
+
+
+ +
+
+
+
+ +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/threads.html b/solr-8.3.1/server/solr-webapp/webapp/partials/threads.html new file mode 100644 index 000000000..f1e6fdeb2 --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/threads.html @@ -0,0 +1,65 @@ + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + +
namecpuTime / userTime
+ {{thread.name}} ({{thread.id}}) +

{{thread.lock}}

+
+
    +
  • {{trace.trace}}
  • +
+
+
{{thread.cpuTime}}
{{thread.userTime}}
+ +
+ + + +
diff --git a/solr-8.3.1/server/solr-webapp/webapp/partials/unknown.html b/solr-8.3.1/server/solr-webapp/webapp/partials/unknown.html new file mode 100644 index 000000000..51895ab8b --- /dev/null +++ b/solr-8.3.1/server/solr-webapp/webapp/partials/unknown.html @@ -0,0 +1,23 @@ + +
+ +
+ Oops, this URL is unknown to us, redirecting you back to Dashboard +
+ +
-- cgit v1.2.3-70-g09d2